From owner-cvs-all Sun Mar 15 02:22:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA00543 for cvs-all-outgoing; Sun, 15 Mar 1998 02:22:08 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from helios.dnttm.ru (root@dnttm-gw.rssi.ru [193.232.0.205]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA00477 for ; Sun, 15 Mar 1998 02:21:54 -0800 (PST) (envelope-from dima@tejblum.dnttm.rssi.ru) Received: (from uucp@localhost) by helios.dnttm.ru (8.8.5/8.8.5/IP-3) with UUCP id MAA20245; Sun, 15 Mar 1998 12:51:45 +0300 Received: from tejblum.dnttm.rssi.ru (localhost [127.0.0.1]) by tejblum.dnttm.rssi.ru (8.8.8/8.8.7) with ESMTP id NAA02259; Sun, 15 Mar 1998 13:01:26 +0300 (MSK) (envelope-from dima@tejblum.dnttm.rssi.ru) Message-Id: <199803151001.NAA02259@tejblum.dnttm.rssi.ru> X-Mailer: exmh version 2.0gamma 1/27/96 To: Mike Smith cc: committers@FreeBSD.ORG Subject: Re: dumb question about fstab and 226 beta In-reply-to: Your message of "Sat, 14 Mar 1998 02:12:34 PST." <199803141012.CAA04125@dingo.cdrom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 15 Mar 1998 13:01:25 +0300 From: Dmitrij Tejblum Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Mike Smith wrote: > > If anyone is seeing the "root filesystem always needs fscking" problem, > I'd really like any input you can offer - I'm at a total loss to work > out what's going on there. More significantly, I just can't reproduce > it. 8( Let my kernel want root be on /dev/wd1s1a, and my /etc/fstab say that root on /dev/wd1a. Then after a crash fsck will clean /dev/wd1a. But, while wd1s1a and wd1a cover exactly same disk space, they are different decives with different caches. So when system look into wd1s1a, it still see old unclean state. It happened with me a week ago with old mount. New mount "print" *lot* messages 'filesystem not clean --- run fsck'. Dima To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 04:00:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA10873 for cvs-all-outgoing; Sun, 15 Mar 1998 04:00:15 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA10866 for ; Sun, 15 Mar 1998 04:00:11 -0800 (PST) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id WAA05923; Sun, 15 Mar 1998 22:58:30 +1100 Date: Sun, 15 Mar 1998 22:58:30 +1100 From: Bruce Evans Message-Id: <199803151158.WAA05923@godzilla.zeta.org.au> To: dima@tejblum.dnttm.rssi.ru, mike@smith.net.au Subject: Re: dumb question about fstab and 226 beta Cc: committers@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >> If anyone is seeing the "root filesystem always needs fscking" problem, >> I'd really like any input you can offer - I'm at a total loss to work >> out what's going on there. More significantly, I just can't reproduce >> it. 8( > >Let my kernel want root be on /dev/wd1s1a, and my /etc/fstab say that root >on /dev/wd1a. Then after a crash fsck will clean /dev/wd1a. But, while >wd1s1a and wd1a cover exactly same disk space, they are different >decives with different caches. So when system look into wd1s1a, it >still see old unclean state. fsck should never be used on bdevs. Devices specified in fstab are always bdevs, but fsck attempts to convert them to cdevs (see blockcheck() and rawname()). If there is no cdev, then fsck attempts to use the bdev. This normally fails for the root device, because opening of an open bdev is not permitted. This is probably not the problem here. The problem here is probably that the slice alias breaks fsck's `hotroot' calculation in blockcheck(). After fsck finishes writing to the cdev alias for a mounted bdev, the buffer cache is inconsistent. fsck fixes this by remounting with flag MNT_RELOAD, but only if `hotroot' is set correctly. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 04:53:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA13797 for cvs-all-outgoing; Sun, 15 Mar 1998 04:53:35 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from dingo.cdrom.com (dingo.cdrom.com [204.216.28.145]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA13790 for ; Sun, 15 Mar 1998 04:53:33 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost [127.0.0.1]) by dingo.cdrom.com (8.8.8/8.8.5) with ESMTP id EAA10700; Sun, 15 Mar 1998 04:50:35 -0800 (PST) Message-Id: <199803151250.EAA10700@dingo.cdrom.com> X-Mailer: exmh version 2.0zeta 7/24/97 To: Bruce Evans cc: dima@tejblum.dnttm.rssi.ru, mike@smith.net.au, committers@FreeBSD.ORG Subject: Re: dumb question about fstab and 226 beta In-reply-to: Your message of "Sun, 15 Mar 1998 22:58:30 +1100." <199803151158.WAA05923@godzilla.zeta.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 15 Mar 1998 04:50:33 -0800 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > The problem here is probably that the slice alias breaks fsck's `hotroot' > calculation in blockcheck(). After fsck finishes writing to the cdev > alias for a mounted bdev, the buffer cache is inconsistent. fsck fixes > this by remounting with flag MNT_RELOAD, but only if `hotroot' is set > correctly. I had more or less already concluded that the compatability hack from mount needed to be added to fsck as well. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 05:35:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA16673 for cvs-all-outgoing; Sun, 15 Mar 1998 05:35:45 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA16668; Sun, 15 Mar 1998 05:35:43 -0800 (PST) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA00412; Sun, 15 Mar 1998 05:35:43 -0800 (PST) Date: Sun, 15 Mar 1998 05:35:43 -0800 (PST) Message-Id: <199803151335.FAA00412@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 clock.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/03/15 05:35:43 PST Modified files: sys/pc98/pc98 clock.c Log: Sync with sys/i386/isa/clock.c revision 1.116. Revision Changes Path 1.49 +96 -38 src/sys/pc98/pc98/clock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 06:56:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA22468 for cvs-all-outgoing; Sun, 15 Mar 1998 06:56:54 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA22463; Sun, 15 Mar 1998 06:56:53 -0800 (PST) (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA00592; Sun, 15 Mar 1998 06:56:52 -0800 (PST) Date: Sun, 15 Mar 1998 06:56:52 -0800 (PST) Message-Id: <199803151456.GAA00592@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/sysutils/xperfmon Makefile ports/sysutils/xperfmon/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/03/15 06:56:51 PST Modified files: sysutils/xperfmon Makefile sysutils/xperfmon/pkg DESCR Log: changed maintainers e-mail address as requested in Makefile and DESCR shortened DESCR file as suggested by portlint removed invalid (and already commented out) master site Revision Changes Path 1.16 +2 -4 ports/sysutils/xperfmon/Makefile 1.5 +1 -23 ports/sysutils/xperfmon/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 Mar 15 07:03:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA22853 for cvs-all-outgoing; Sun, 15 Mar 1998 07:03:50 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA22848; Sun, 15 Mar 1998 07:03:49 -0800 (PST) (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA00694; Sun, 15 Mar 1998 07:03:48 -0800 (PST) Date: Sun, 15 Mar 1998 07:03:48 -0800 (PST) Message-Id: <199803151503.HAA00694@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/mail/faces Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/03/15 07:03:48 PST Modified files: mail/faces Makefile Log: removed bogus ftp site (no anonymous ftp login anymore) Revision Changes Path 1.6 +2 -3 ports/mail/faces/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 07:10:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA23697 for cvs-all-outgoing; Sun, 15 Mar 1998 07:10:29 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA23692; Sun, 15 Mar 1998 07:10:28 -0800 (PST) (envelope-from nik@FreeBSD.org) From: Nik Clayton Received: (from nik@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA00774; Sun, 15 Mar 1998 07:10:26 -0800 (PST) Date: Sun, 15 Mar 1998 07:10:26 -0800 (PST) Message-Id: <199803151510.HAA00774@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook makeworld.sgml Makefile current.sgml handbook.sgml hw.sgml sections.sgml stable.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nik 1998/03/15 07:10:25 PST Modified files: handbook Makefile current.sgml handbook.sgml hw.sgml sections.sgml stable.sgml Added files: handbook makeworld.sgml Log: Add a new (small) section to the handbook, which links to my 'make world' tutorial. Update various places in the handbook that say 'make world' to link to this new section. PR: docs/5853 Reviewed by: jkh (sort of) Revision Changes Path 1.30 +2 -2 doc/handbook/Makefile 1.24 +5 -5 doc/handbook/current.sgml 1.82 +2 -1 doc/handbook/handbook.sgml 1.80 +6 -6 doc/handbook/hw.sgml 1.28 +2 -1 doc/handbook/sections.sgml 1.17 +7 -7 doc/handbook/stable.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 07:10:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA23876 for cvs-all-outgoing; Sun, 15 Mar 1998 07:10:52 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA23871; Sun, 15 Mar 1998 07:10:51 -0800 (PST) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA00846; Sun, 15 Mar 1998 07:10:50 -0800 (PST) Date: Sun, 15 Mar 1998 07:10:50 -0800 (PST) Message-Id: <199803151510.HAA00846@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/netscape3 Makefile ports/www/netscape3/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/03/15 07:10:49 PST Modified files: www/netscape3 Makefile www/netscape3/files md5 Log: Using Fortify and setting USE_128BIT, this port can now do 128 bit encryption legally. Revision Changes Path 1.20 +21 -12 ports/www/netscape3/Makefile 1.15 +2 -0 ports/www/netscape3/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 07:14:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA24069 for cvs-all-outgoing; Sun, 15 Mar 1998 07:14:02 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA24036; Sun, 15 Mar 1998 07:13:59 -0800 (PST) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA00941; Sun, 15 Mar 1998 07:13:58 -0800 (PST) Date: Sun, 15 Mar 1998 07:13:58 -0800 (PST) Message-Id: <199803151513.HAA00941@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/netscape4-communicator Makefile ports/www/netscape4-communicator/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/03/15 07:13:58 PST Modified files: www/netscape4-communicator Makefile www/netscape4-communicator/files md5 Log: Using Fortify, and setting USE_128BIT, Communicator can now use 128 bit crypto legally. Revision Changes Path 1.15 +17 -1 ports/www/netscape4-communicator/Makefile 1.12 +1 -0 ports/www/netscape4-communicator/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 07:15:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA24141 for cvs-all-outgoing; Sun, 15 Mar 1998 07:15:29 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA24136; Sun, 15 Mar 1998 07:15:28 -0800 (PST) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA00997; Sun, 15 Mar 1998 07:15:27 -0800 (PST) Date: Sun, 15 Mar 1998 07:15:27 -0800 (PST) Message-Id: <199803151515.HAA00997@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/netscape4-navigator Makefile ports/www/netscape4-navigator/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/03/15 07:15:27 PST Modified files: www/netscape4-navigator Makefile www/netscape4-navigator/files md5 Log: Update for Fortify-1.2.1. Revision Changes Path 1.16 +9 -4 ports/www/netscape4-navigator/Makefile 1.12 +1 -1 ports/www/netscape4-navigator/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 07:19:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA24387 for cvs-all-outgoing; Sun, 15 Mar 1998 07:19:27 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA24382; Sun, 15 Mar 1998 07:19:25 -0800 (PST) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA01039; Sun, 15 Mar 1998 07:19:24 -0800 (PST) Date: Sun, 15 Mar 1998 07:19:24 -0800 (PST) Message-Id: <199803151519.HAA01039@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/i386 machdep.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/03/15 07:19:24 PST Modified files: (Branch: RELENG_2_2) sys/pc98/i386 machdep.c Log: Sync with sys/i386/i386/machdep.c revision 1.209.2.21. Submitted by: NOKUBI Hirotaka Revision Changes Path 1.11.2.23 +5 -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 Sun Mar 15 07:20:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA24491 for cvs-all-outgoing; Sun, 15 Mar 1998 07:20:25 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA24484; Sun, 15 Mar 1998 07:20:23 -0800 (PST) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA01074; Sun, 15 Mar 1998 07:20:22 -0800 (PST) Date: Sun, 15 Mar 1998 07:20:22 -0800 (PST) Message-Id: <199803151520.HAA01074@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/i386 userconfig.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/03/15 07:20:22 PST Modified files: (Branch: RELENG_2_2) sys/pc98/i386 userconfig.c Log: Sync with sys/i386/i386/userconfig.c revision 1.63.2.25. Submitted by: NOKUBI Hirotaka Revision Changes Path 1.10.2.18 +9 -6 src/sys/pc98/i386/userconfig.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 07:21:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA24562 for cvs-all-outgoing; Sun, 15 Mar 1998 07:21:21 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA24557; Sun, 15 Mar 1998 07:21:20 -0800 (PST) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA01108; Sun, 15 Mar 1998 07:21:19 -0800 (PST) Date: Sun, 15 Mar 1998 07:21:19 -0800 (PST) Message-Id: <199803151521.HAA01108@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf files.pc98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/03/15 07:21:19 PST Modified files: (Branch: RELENG_2_2) sys/pc98/conf files.pc98 Log: Sync with sys/i386/conf/files.i386 revision 1.141.2.19. Submitted by: NOKUBI Hirotaka Revision Changes Path 1.9.2.21 +2 -1 src/sys/pc98/conf/files.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 07:22:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA24657 for cvs-all-outgoing; Sun, 15 Mar 1998 07:22:14 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA24645; Sun, 15 Mar 1998 07:22:11 -0800 (PST) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA01141; Sun, 15 Mar 1998 07:22:09 -0800 (PST) Date: Sun, 15 Mar 1998 07:22:09 -0800 (PST) Message-Id: <199803151522.HAA01141@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf GENERIC98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/03/15 07:22:09 PST Modified files: (Branch: RELENG_2_2) sys/pc98/conf GENERIC98 Log: Sync with sys/i386/confi/GENRIC revision 1.77.2.19. Submitted by: NOKUBI Hirotaka Revision Changes Path 1.8.2.19 +2 -1 src/sys/pc98/conf/GENERIC98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 07:22:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA24697 for cvs-all-outgoing; Sun, 15 Mar 1998 07:22:26 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA24692; Sun, 15 Mar 1998 07:22:24 -0800 (PST) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA01170; Sun, 15 Mar 1998 07:22:23 -0800 (PST) Date: Sun, 15 Mar 1998 07:22:23 -0800 (PST) Message-Id: <199803151522.HAA01170@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-kerberosIV@FreeBSD.ORG Subject: cvs commit: src/kerberosIV/usr.bin/kadmin Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/03/15 07:22:23 PST Modified files: kerberosIV/usr.bin/kadmin Makefile Log: Fix more linkage problems. libtermcap needs to be linked for routines in librealdline. Revision Changes Path 1.4 +4 -3 src/kerberosIV/usr.bin/kadmin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 07:23:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA24788 for cvs-all-outgoing; Sun, 15 Mar 1998 07:23:16 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA24781; Sun, 15 Mar 1998 07:23:13 -0800 (PST) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA01201; Sun, 15 Mar 1998 07:23:10 -0800 (PST) Date: Sun, 15 Mar 1998 07:23:10 -0800 (PST) Message-Id: <199803151523.HAA01201@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 npx.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/03/15 07:23:10 PST Modified files: (Branch: RELENG_2_2) sys/pc98/pc98 npx.c Log: Sync with sys/i386/isa/npx.c revision 1.31.2.7. Submitted by: NOKUBI Hirotaka Revision Changes Path 1.8.2.5 +1 -2 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 Sun Mar 15 07:57:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA27382 for cvs-all-outgoing; Sun, 15 Mar 1998 07:57:36 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from news1.gtn.com (news1.gtn.com [194.77.0.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA27065; Sun, 15 Mar 1998 07:56:36 -0800 (PST) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by news1.gtn.com (8.8.6/8.8.6) with UUCP id QAA05515; Sun, 15 Mar 1998 16:45:09 +0100 (MET) Received: (from andreas@localhost) by klemm.gtn.com (8.8.8/8.8.7) id QAA12575; Sun, 15 Mar 1998 16:41:46 +0100 (CET) (envelope-from andreas) Message-ID: <19980315164145.11392@klemm.gtn.com> Date: Sun, 15 Mar 1998 16:41:45 +0100 From: Andreas Klemm To: asami@FreeBSD.ORG, peter@FreeBSD.ORG Cc: committers@FreeBSD.ORG Subject: cvs server: failed to create lock directory in repository.... Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Hi Satoshi and Peter or someone who gets this earlier... ! What's happening ? I added the patches and script directory using cvs add patches cvs add script I scheduled two files for being added to the repository using cd patches cvs add patch-aa cd scripts cvs add post-patch When committing my changes, this happens and nothing is being committed: /tmp/cvsV12555: 22 Zeilen, 933 Zeichen ? README cvs server: failed to create lock directory in repository `/home/ncvs/ports/www/mapedit/scripts': No such file or directory cvs server: lock failed - giving up cvs [server aborted]: lock failed - giving up cvs commit: saving log message in /tmp/cvsx12555 Please help ! ;-) Andreas /// -- Andreas Klemm powered by ,,symmetric multiprocessor FreeBSD'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 08:02:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA28515 for cvs-all-outgoing; Sun, 15 Mar 1998 08:02:32 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA28414; Sun, 15 Mar 1998 08:01:32 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id IAA04882; Sun, 15 Mar 1998 08:00:14 -0800 (PST) (envelope-from jkh@time.cdrom.com) To: Andreas Klemm cc: asami@FreeBSD.ORG, peter@FreeBSD.ORG, committers@FreeBSD.ORG Subject: Re: cvs server: failed to create lock directory in repository.... In-reply-to: Your message of "Sun, 15 Mar 1998 16:41:45 +0100." <19980315164145.11392@klemm.gtn.com> Date: Sun, 15 Mar 1998 08:00:13 -0800 Message-ID: <4878.889977613@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Hi Satoshi and Peter or someone who gets this earlier... ! Who's repository? Ours? Yours? You need to be just a *bit* more precise. :) If the answer is "ours" then you probably could have figured it out with a ping - freefall was obviously down and the repo unavailable. ;) Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 08:15:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA29939 for cvs-all-outgoing; Sun, 15 Mar 1998 08:15:56 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA29934; Sun, 15 Mar 1998 08:15:53 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA24145; Sun, 15 Mar 1998 08:15:52 -0800 (PST) Date: Sun, 15 Mar 1998 08:15:52 -0800 (PST) Message-Id: <199803151615.IAA24145@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall devices.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/15 08:15:51 PST Modified files: release/sysinstall devices.c Log: When doing "make unders", also remember to make entries for any slices that exist. Revision Changes Path 1.71 +27 -9 src/release/sysinstall/devices.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 08:16:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA00269 for cvs-all-outgoing; Sun, 15 Mar 1998 08:16:37 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA00260; Sun, 15 Mar 1998 08:16:35 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA24185; Sun, 15 Mar 1998 08:16:34 -0800 (PST) Date: Sun, 15 Mar 1998 08:16:34 -0800 (PST) Message-Id: <199803151616.IAA24185@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall devices.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/15 08:16:34 PST Modified files: (Branch: RELENG_2_2) release/sysinstall devices.c Log: MFC: make slice entries. Revision Changes Path 1.49.2.16 +27 -9 src/release/sysinstall/devices.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 08:22:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA00869 for cvs-all-outgoing; Sun, 15 Mar 1998 08:22:08 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA00864; Sun, 15 Mar 1998 08:22:03 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA24300; Sun, 15 Mar 1998 08:22:02 -0800 (PST) Date: Sun, 15 Mar 1998 08:22:02 -0800 (PST) Message-Id: <199803151622.IAA24300@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/korean/hanterm-autofont Makefile ports/korean/hanterm-autofont/files md5 ports/korean/hanterm-autofont/patches patch-aa ports/korean/hanterm-autofont/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/03/15 08:22:01 PST Removed files: korean/hanterm-autofont Makefile korean/hanterm-autofont/files md5 korean/hanterm-autofont/patches patch-aa korean/hanterm-autofont/pkg COMMENT DESCR PLIST Log: Nuke ports/korean/hanterm-autofont. According to the MAINTAINER: korean/hanterm already have the functionality of hanterm-autofont, so it can be deleted from FreeBSD ports tree safely. hanterm-autofont is no longer supported by the author. Submitted by: junker@jazz.snu.ac.kr PR: 6014 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 08:39:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA02696 for cvs-all-outgoing; Sun, 15 Mar 1998 08:39:47 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA02691; Sun, 15 Mar 1998 08:39:45 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA24434; Sun, 15 Mar 1998 08:39:44 -0800 (PST) Date: Sun, 15 Mar 1998 08:39:44 -0800 (PST) Message-Id: <199803151639.IAA24434@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc rc.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/15 08:39:44 PST Modified files: (Branch: RELENG_2_2) etc rc.conf Log: Fix minor typo. Revision Changes Path 1.1.2.40 +2 -2 src/etc/rc.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 09:09:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA04529 for cvs-all-outgoing; Sun, 15 Mar 1998 09:09:17 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA04524; Sun, 15 Mar 1998 09:09:15 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA24549; Sun, 15 Mar 1998 09:09:13 -0800 (PST) Date: Sun, 15 Mar 1998 09:09:13 -0800 (PST) Message-Id: <199803151709.JAA24549@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/03/15 09:09:12 PST Modified files: . modules Log: xtruco --> ports/games/xtruco Revision Changes Path 1.1867 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 09:10:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA04667 for cvs-all-outgoing; Sun, 15 Mar 1998 09:10:25 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA04661; Sun, 15 Mar 1998 09:10:24 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA24596; Sun, 15 Mar 1998 09:10:22 -0800 (PST) Date: Sun, 15 Mar 1998 09:10:22 -0800 (PST) Message-Id: <199803151710.JAA24596@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall menus.c variable.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/15 09:10:22 PST Modified files: release/sysinstall menus.c variable.c Log: Reformatting, more sanity checks. Revision Changes Path 1.161 +26 -48 src/release/sysinstall/menus.c 1.23 +9 -6 src/release/sysinstall/variable.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 09:11:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA04734 for cvs-all-outgoing; Sun, 15 Mar 1998 09:11:09 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA04729; Sun, 15 Mar 1998 09:11:08 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA24632; Sun, 15 Mar 1998 09:11:06 -0800 (PST) Date: Sun, 15 Mar 1998 09:11:06 -0800 (PST) Message-Id: <199803151711.JAA24632@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall menus.c variable.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/15 09:11:06 PST Modified files: (Branch: RELENG_2_2) release/sysinstall menus.c variable.c Log: MFC: cleanup / frobbing. Revision Changes Path 1.89.2.68 +26 -48 src/release/sysinstall/menus.c 1.11.2.9 +9 -6 src/release/sysinstall/variable.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 09:11:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA04785 for cvs-all-outgoing; Sun, 15 Mar 1998 09:11:28 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA04780; Sun, 15 Mar 1998 09:11:27 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA24643; Sun, 15 Mar 1998 09:11:25 -0800 (PST) Date: Sun, 15 Mar 1998 09:11:25 -0800 (PST) Message-Id: <199803151711.JAA24643@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/xtruco - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/03/15 09:11:25 PST ports/games/xtruco - Imported sources Update of /home/ncvs/ports/games/xtruco In directory freefall.freebsd.org:/c/users/jseger/xtruco Log Message: Import of xtruco-1.0. This is XTruco - simple version for X Windows of the famous card game named Super Truco. PR: 6007 Submitted by: andy@icc.surw.chel.su Status: Vendor Tag: ANDY Release Tags: v1_0 N ports/games/xtruco/Makefile I ports/games/xtruco/CVS N ports/games/xtruco/files/md5 N ports/games/xtruco/patches/patch-aa N ports/games/xtruco/pkg/PLIST N ports/games/xtruco/pkg/COMMENT N ports/games/xtruco/pkg/DESCR No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 09:31:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA06217 for cvs-all-outgoing; Sun, 15 Mar 1998 09:31:31 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA06212; Sun, 15 Mar 1998 09:31:29 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA24814; Sun, 15 Mar 1998 09:31:27 -0800 (PST) Date: Sun, 15 Mar 1998 09:31:27 -0800 (PST) Message-Id: <199803151731.JAA24814@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/03/15 09:31:26 PST Modified files: games Makefile Log: Activate xtruco Revision Changes Path 1.111 +2 -1 ports/games/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 09:35:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA06554 for cvs-all-outgoing; Sun, 15 Mar 1998 09:35:41 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA06508; Sun, 15 Mar 1998 09:34:59 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA24908; Sun, 15 Mar 1998 09:34:55 -0800 (PST) Date: Sun, 15 Mar 1998 09:34:55 -0800 (PST) Message-Id: <199803151734.JAA24908@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/libwww Makefile ports/www/libwww/files md5 ports/www/libwww/patches patch-ac ports/www/libwww/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/03/15 09:34:54 PST Modified files: www/libwww Makefile www/libwww/files md5 www/libwww/patches patch-ac www/libwww/pkg PLIST Log: Upgrade to libwww-5.1j. Revision Changes Path 1.7 +4 -4 ports/www/libwww/Makefile 1.6 +1 -1 ports/www/libwww/files/md5 1.4 +9 -9 ports/www/libwww/patches/patch-ac 1.5 +0 -1 ports/www/libwww/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 Mar 15 10:32:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA13211 for cvs-all-outgoing; Sun, 15 Mar 1998 10:32:53 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from helios.dnttm.ru (root@dnttm-gw.rssi.ru [193.232.0.205]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA13202 for ; Sun, 15 Mar 1998 10:32:48 -0800 (PST) (envelope-from dima@tejblum.dnttm.rssi.ru) Received: (from uucp@localhost) by helios.dnttm.ru (8.8.5/8.8.5/IP-3) with UUCP id VAA31583; Sun, 15 Mar 1998 21:25:20 +0300 Received: from tejblum.dnttm.rssi.ru (localhost [127.0.0.1]) by tejblum.dnttm.rssi.ru (8.8.8/8.8.7) with ESMTP id VAA01396; Sun, 15 Mar 1998 21:35:05 +0300 (MSK) (envelope-from dima@tejblum.dnttm.rssi.ru) Message-Id: <199803151835.VAA01396@tejblum.dnttm.rssi.ru> X-Mailer: exmh version 2.0gamma 1/27/96 To: Bruce Evans cc: mike@smith.net.au, committers@FreeBSD.ORG Subject: Re: dumb question about fstab and 226 beta In-reply-to: Your message of "Sun, 15 Mar 1998 22:58:30 +1100." <199803151158.WAA05923@godzilla.zeta.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 15 Mar 1998 21:35:05 +0300 From: Dmitrij Tejblum Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Bruce Evans wrote: > The problem here is probably that the slice alias breaks fsck's `hotroot' > calculation in blockcheck(). After fsck finishes writing to the cdev > alias for a mounted bdev, the buffer cache is inconsistent. fsck fixes > this by remounting with flag MNT_RELOAD, but only if `hotroot' is set > correctly. You are right, of course. This trivial bogus patch fixes my test case. --- preen.c Sun Mar 15 19:10:09 1998 +++ preen.c Sun Mar 15 19:12:14 1998 @@ -98,6 +98,8 @@ if (preen == 0 || (passno == 1 && fsp->fs_passno == 1)) { if ((name = blockcheck(fsp->fs_spec)) != 0) { + if (strcmp(fsp->fs_file, "/") == 0) + hotroot++; if ((sumstatus = (*chkit)(name, fsp->fs_file, auxdata, 0)) != 0) return (sumstatus); (The remounting root probably harmless anyway) It is funny how various programs trust the root device in fstab, while true root device stored in kernel and cannot be changed while the system run. It is possible obtain the dev_t of root device via stat(2), so mount_ufs.c probably could test that the user-supplied device name match kernel's idea, and if not, determine correct device name with devname(3) :-|. (This way it should wait (in background) until devname(3) available. It also could upgrade root to read-write without device name). Such mount would be more tolerant to various user's mistake :-). I don't see similar way for fsck. Only "brute-force". Dima To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 11:15:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA17192 for cvs-all-outgoing; Sun, 15 Mar 1998 11:15:27 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA17186; Sun, 15 Mar 1998 11:15:25 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA25899; Sun, 15 Mar 1998 11:15:23 -0800 (PST) Date: Sun, 15 Mar 1998 11:15:23 -0800 (PST) Message-Id: <199803151915.LAA25899@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data docs.sgml support.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/15 11:15:23 PST Modified files: data docs.sgml support.sgml Log: Rearrange some of the 3rd party pointers to be more findable. Revision Changes Path 1.37 +34 -3 www/data/docs.sgml 1.47 +2 -19 www/data/support.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 11:30:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA18619 for cvs-all-outgoing; Sun, 15 Mar 1998 11:30:58 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA18613; Sun, 15 Mar 1998 11:30:55 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA25972; Sun, 15 Mar 1998 11:30:53 -0800 (PST) Date: Sun, 15 Mar 1998 11:30:53 -0800 (PST) Message-Id: <199803151930.LAA25972@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall dmenu.c menus.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/15 11:30:52 PST Modified files: release/sysinstall dmenu.c menus.c Log: Fix some bogons with variable handling. Revision Changes Path 1.37 +2 -2 src/release/sysinstall/dmenu.c 1.162 +4 -4 src/release/sysinstall/menus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 11:31:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA18675 for cvs-all-outgoing; Sun, 15 Mar 1998 11:31:20 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA18669; Sun, 15 Mar 1998 11:31:19 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA26007; Sun, 15 Mar 1998 11:31:16 -0800 (PST) Date: Sun, 15 Mar 1998 11:31:16 -0800 (PST) Message-Id: <199803151931.LAA26007@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall dmenu.c menus.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/15 11:31:16 PST Modified files: (Branch: RELENG_2_2) release/sysinstall dmenu.c menus.c Log: MFC: variable bogon fixes. Revision Changes Path 1.25.2.10 +2 -2 src/release/sysinstall/dmenu.c 1.89.2.69 +4 -4 src/release/sysinstall/menus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 11:43:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA19739 for cvs-all-outgoing; Sun, 15 Mar 1998 11:43:19 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA19730; Sun, 15 Mar 1998 11:43:17 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA26067; Sun, 15 Mar 1998 11:43:15 -0800 (PST) Date: Sun, 15 Mar 1998 11:43:15 -0800 (PST) Message-Id: <199803151943.LAA26067@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/graphics/mpeg-lib Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 11:43:14 PST Modified files: graphics/mpeg-lib Makefile Log: Add MAINTAINER so this portlints clean. Revision Changes Path 1.8 +3 -1 ports/graphics/mpeg-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 Mar 15 11:44:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA19924 for cvs-all-outgoing; Sun, 15 Mar 1998 11:44:20 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA19905; Sun, 15 Mar 1998 11:44:19 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA26117; Sun, 15 Mar 1998 11:44:17 -0800 (PST) Date: Sun, 15 Mar 1998 11:44:17 -0800 (PST) Message-Id: <199803151944.LAA26117@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/misc/xdelta Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 11:44:17 PST Modified files: misc/xdelta Makefile Log: Add MAINTAINER so this portlints clean. Revision Changes Path 1.4 +3 -1 ports/misc/xdelta/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 11:48:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA20484 for cvs-all-outgoing; Sun, 15 Mar 1998 11:48:40 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA20479; Sun, 15 Mar 1998 11:48:39 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA26291; Sun, 15 Mar 1998 11:48:32 -0800 (PST) Date: Sun, 15 Mar 1998 11:48:32 -0800 (PST) Message-Id: <199803151948.LAA26291@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/rxvt Makefile ports/x11/rxvt/files md5 ports/x11/rxvt/patches patch-aa patch-ab patch-ad patch-ae patch-ah ports/x11/rxvt/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 11:48:32 PST Modified files: x11/rxvt Makefile x11/rxvt/files md5 x11/rxvt/patches patch-aa patch-ab x11/rxvt/pkg DESCR Removed files: x11/rxvt/patches patch-ad patch-ae patch-ah Log: Update to version 2.4.5. PR: 5940 Submitted by: Frank Chen Hsiung Chan Revision Changes Path 1.14 +4 -8 ports/x11/rxvt/Makefile 1.4 +1 -1 ports/x11/rxvt/files/md5 1.4 +14 -3 ports/x11/rxvt/patches/patch-aa 1.6 +10 -18 ports/x11/rxvt/patches/patch-ab 1.2 +2 -0 ports/x11/rxvt/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 Mar 15 12:08:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA22943 for cvs-all-outgoing; Sun, 15 Mar 1998 12:08:48 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA22938; Sun, 15 Mar 1998 12:08:47 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA26343; Sun, 15 Mar 1998 12:08:44 -0800 (PST) Date: Sun, 15 Mar 1998 12:08:44 -0800 (PST) Message-Id: <199803152008.MAA26343@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/p5-Net-Telnet - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 12:08:44 PST ports/net/p5-Net-Telnet - Imported sources Update of /home/ncvs/ports/net/p5-Net-Telnet In directory freefall.freebsd.org:/d/users/steve/p5-Net-Telnet Log Message: Initial import of p5-Net-Telnet. perl5 module to access and use telnet protocol. PR: 5903 Submitted by: Jun Kuriyama Status: Vendor Tag: KURIYAMA Release Tags: v3_01 N ports/net/p5-Net-Telnet/Makefile N ports/net/p5-Net-Telnet/files/md5 N ports/net/p5-Net-Telnet/pkg/PLIST N ports/net/p5-Net-Telnet/pkg/COMMENT N ports/net/p5-Net-Telnet/pkg/DESCR No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 12:09:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA23035 for cvs-all-outgoing; Sun, 15 Mar 1998 12:09:46 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA23028; Sun, 15 Mar 1998 12:09:42 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA26388; Sun, 15 Mar 1998 12:09:36 -0800 (PST) Date: Sun, 15 Mar 1998 12:09:36 -0800 (PST) Message-Id: <199803152009.MAA26388@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 12:09:36 PST Modified files: net Makefile Log: Activate p5-Net-Telnet Revision Changes Path 1.147 +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 Sun Mar 15 12:12:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA23495 for cvs-all-outgoing; Sun, 15 Mar 1998 12:12:25 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA23490; Sun, 15 Mar 1998 12:12:23 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA26442; Sun, 15 Mar 1998 12:12:21 -0800 (PST) Date: Sun, 15 Mar 1998 12:12:21 -0800 (PST) Message-Id: <199803152012.MAA26442@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 12:12:20 PST Modified files: . modules Log: p5-Net-Telnet -> ports/net/p5-Net-Telnet Revision Changes Path 1.1868 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 12:18:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA24604 for cvs-all-outgoing; Sun, 15 Mar 1998 12:18:07 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA24591; Sun, 15 Mar 1998 12:18:05 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA26465; Sun, 15 Mar 1998 12:18:02 -0800 (PST) Date: Sun, 15 Mar 1998 12:18:02 -0800 (PST) Message-Id: <199803152018.MAA26465@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/p5-File-Sync - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 12:18:02 PST ports/devel/p5-File-Sync - Imported sources Update of /home/ncvs/ports/devel/p5-File-Sync In directory freefall.freebsd.org:/d/users/steve/p5-File-Sync Log Message: Perl5 modules interface to the UNIX sync(2) and POSIX.1b fsync(2). PR: 5930 Submitted by: Jun Kuriyama Status: Vendor Tag: KURIYAMA Release Tags: v0_06 N ports/devel/p5-File-Sync/Makefile N ports/devel/p5-File-Sync/files/md5 N ports/devel/p5-File-Sync/pkg/DESCR N ports/devel/p5-File-Sync/pkg/PLIST N ports/devel/p5-File-Sync/pkg/COMMENT No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 12:18:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA24743 for cvs-all-outgoing; Sun, 15 Mar 1998 12:18:54 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA24730; Sun, 15 Mar 1998 12:18:52 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA26511; Sun, 15 Mar 1998 12:18:50 -0800 (PST) Date: Sun, 15 Mar 1998 12:18:50 -0800 (PST) Message-Id: <199803152018.MAA26511@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 12:18:50 PST Modified files: devel Makefile Log: Activate p5-File-Sync. Revision Changes Path 1.93 +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 Sun Mar 15 12:20:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA24922 for cvs-all-outgoing; Sun, 15 Mar 1998 12:20:01 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA24915; Sun, 15 Mar 1998 12:19:55 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA26599; Sun, 15 Mar 1998 12:19:52 -0800 (PST) Date: Sun, 15 Mar 1998 12:19:52 -0800 (PST) Message-Id: <199803152019.MAA26599@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 12:19:52 PST Modified files: . modules Log: p5-File-Sync -> ports/devel/p5-File-Sync Revision Changes Path 1.1869 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 12:23:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA25550 for cvs-all-outgoing; Sun, 15 Mar 1998 12:23:05 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA25540; Sun, 15 Mar 1998 12:23:00 -0800 (PST) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA26662; Sun, 15 Mar 1998 12:22:57 -0800 (PST) Date: Sun, 15 Mar 1998 12:22:57 -0800 (PST) Message-Id: <199803152022.MAA26662@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-kerberosIV@FreeBSD.ORG Subject: cvs commit: src/kerberosIV/usr.bin/kadmin Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/03/15 12:22:56 PST Modified files: (Branch: RELENG_2_2) kerberosIV/usr.bin/kadmin Makefile Log: MFC: linking breakage fixed. Revision Changes Path 1.1.1.1.2.1 +4 -3 src/kerberosIV/usr.bin/kadmin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 12:26:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA25925 for cvs-all-outgoing; Sun, 15 Mar 1998 12:26:12 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA25919; Sun, 15 Mar 1998 12:26:11 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA26681; Sun, 15 Mar 1998 12:26:08 -0800 (PST) Date: Sun, 15 Mar 1998 12:26:08 -0800 (PST) Message-Id: <199803152026.MAA26681@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/mail/sigrot - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 12:26:07 PST ports/mail/sigrot - Imported sources Update of /home/ncvs/ports/mail/sigrot In directory freefall.freebsd.org:/d/users/steve/sigrot Log Message: Utility to rotate your mail/news signature. PR: 5917 Submitted by: Marijn Meijles Status: Vendor Tag: MARIJN Release Tags: v1_0 N ports/mail/sigrot/Makefile N ports/mail/sigrot/files/md5 N ports/mail/sigrot/patches/patch-aa N ports/mail/sigrot/pkg/COMMENT N ports/mail/sigrot/pkg/DESCR N ports/mail/sigrot/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 12:26:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA26007 for cvs-all-outgoing; Sun, 15 Mar 1998 12:26:45 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA26000; Sun, 15 Mar 1998 12:26:44 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA26716; Sun, 15 Mar 1998 12:26:41 -0800 (PST) Date: Sun, 15 Mar 1998 12:26:41 -0800 (PST) Message-Id: <199803152026.MAA26716@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/mail Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 12:26:41 PST Modified files: mail Makefile Log: Activate sigrot. Revision Changes Path 1.57 +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 Sun Mar 15 12:27:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA26111 for cvs-all-outgoing; Sun, 15 Mar 1998 12:27:43 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA26103; Sun, 15 Mar 1998 12:27:41 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA26751; Sun, 15 Mar 1998 12:27:39 -0800 (PST) Date: Sun, 15 Mar 1998 12:27:39 -0800 (PST) Message-Id: <199803152027.MAA26751@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 12:27:38 PST Modified files: . modules Log: sigrot -> ports/mail/sigrot Revision Changes Path 1.1870 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 12:32:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA26606 for cvs-all-outgoing; Sun, 15 Mar 1998 12:32:53 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA26601; Sun, 15 Mar 1998 12:32:51 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA26770; Sun, 15 Mar 1998 12:32:48 -0800 (PST) Date: Sun, 15 Mar 1998 12:32:48 -0800 (PST) Message-Id: <199803152032.MAA26770@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/xlaby - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 12:32:48 PST ports/games/xlaby - Imported sources Update of /home/ncvs/ports/games/xlaby In directory freefall.freebsd.org:/d/users/steve/xlaby Log Message: Deamonic X Labyrinth palyed directly with the mouse pointer. PR: 5914 Submitted by: Andrey Zakhvatov Status: Vendor Tag: ANDY Release Tags: v2_0_1 N ports/games/xlaby/Makefile N ports/games/xlaby/files/md5 N ports/games/xlaby/pkg/PLIST N ports/games/xlaby/pkg/COMMENT N ports/games/xlaby/pkg/DESCR No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 12:33:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA26715 for cvs-all-outgoing; Sun, 15 Mar 1998 12:33:28 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA26707; Sun, 15 Mar 1998 12:33:25 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA26803; Sun, 15 Mar 1998 12:33:22 -0800 (PST) Date: Sun, 15 Mar 1998 12:33:22 -0800 (PST) Message-Id: <199803152033.MAA26803@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 12:33:22 PST Modified files: games Makefile Log: Activate xlaby. Revision Changes Path 1.112 +2 -1 ports/games/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 12:34:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA26836 for cvs-all-outgoing; Sun, 15 Mar 1998 12:34:15 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA26830; Sun, 15 Mar 1998 12:34:12 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA26836; Sun, 15 Mar 1998 12:34:08 -0800 (PST) Date: Sun, 15 Mar 1998 12:34:08 -0800 (PST) Message-Id: <199803152034.MAA26836@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 12:34:08 PST Modified files: . modules Log: xlaby -> ports/games/xlaby Revision Changes Path 1.1871 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 12:38:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA27219 for cvs-all-outgoing; Sun, 15 Mar 1998 12:38:48 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA27213; Sun, 15 Mar 1998 12:38:47 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA26866; Sun, 15 Mar 1998 12:38:43 -0800 (PST) Date: Sun, 15 Mar 1998 12:38:43 -0800 (PST) Message-Id: <199803152038.MAA26866@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/xnibbles - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 12:38:42 PST ports/games/xnibbles - Imported sources Update of /home/ncvs/ports/games/xnibbles In directory freefall.freebsd.org:/d/users/steve/xnibbles Log Message: A simple X11 snake game. PR: 5905 Submitted by: Andrey Zakhvatov Status: Vendor Tag: ANDREY Release Tags: v1_0b3 N ports/games/xnibbles/Makefile N ports/games/xnibbles/files/md5 N ports/games/xnibbles/patches/patch-ab N ports/games/xnibbles/patches/patch-aa N ports/games/xnibbles/pkg/COMMENT N ports/games/xnibbles/pkg/PLIST N ports/games/xnibbles/pkg/DESCR No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 12:39:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA27284 for cvs-all-outgoing; Sun, 15 Mar 1998 12:39:22 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA27266; Sun, 15 Mar 1998 12:39:18 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA26912; Sun, 15 Mar 1998 12:39:16 -0800 (PST) Date: Sun, 15 Mar 1998 12:39:16 -0800 (PST) Message-Id: <199803152039.MAA26912@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 12:39:15 PST Modified files: games Makefile Log: Activate xnibbles. Revision Changes Path 1.113 +2 -1 ports/games/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 12:40:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA27407 for cvs-all-outgoing; Sun, 15 Mar 1998 12:40:07 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA27401; Sun, 15 Mar 1998 12:40:05 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA26954; Sun, 15 Mar 1998 12:40:02 -0800 (PST) Date: Sun, 15 Mar 1998 12:40:02 -0800 (PST) Message-Id: <199803152040.MAA26954@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 12:40:02 PST Modified files: . modules Log: xnibbles -> ports/games/xnibbles Revision Changes Path 1.1872 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 12:43:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA27651 for cvs-all-outgoing; Sun, 15 Mar 1998 12:43:27 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA27644; Sun, 15 Mar 1998 12:43:26 -0800 (PST) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA27047; Sun, 15 Mar 1998 12:43:23 -0800 (PST) Date: Sun, 15 Mar 1998 12:43:23 -0800 (PST) Message-Id: <199803152043.MAA27047@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/misc/team/patches patch-a patch-b patch-c patch-d patch-e Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/03/15 12:43:23 PST Modified files: misc/team/patches patch-a patch-b Removed files: misc/team/patches patch-c patch-d patch-e Log: Merge all the patches together so there is one patch / souce file. (there were more patch files than souce files here :) ) Now merged are the fixes: ports/1966: Team doesn't support... ports/2204: Team can hang when stderr is a file I've seen team hang when stderr is a file. 'top' reports that it is stuck in lockf. ports/2203: Team's exit status doesn't indicate if there ... Team's exit status will be 0 even if there is an I/O error. The reason is that the exit status of the "guys" isn't checked. Submitted by: dawes@physics.usyd.edu.au (David Dawes) Revision Changes Path 1.2 +3 -4 ports/misc/team/patches/patch-a 1.2 +349 -7 ports/misc/team/patches/patch-b To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 13:32:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA02268 for cvs-all-outgoing; Sun, 15 Mar 1998 13:32:09 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA02261; Sun, 15 Mar 1998 13:32:06 -0800 (PST) (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA27159; Sun, 15 Mar 1998 13:32:03 -0800 (PST) Date: Sun, 15 Mar 1998 13:32:03 -0800 (PST) Message-Id: <199803152132.NAA27159@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/sysutils/mei/patches patch-ba Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/03/15 13:32:02 PST Added files: sysutils/mei/patches patch-ba Log: update to handle SCSI changes made on FreeBSD 2.2.5-RELEASE. Submitted by: Jun YAMASHITA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 14:00:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA11186 for cvs-all-outgoing; Sun, 15 Mar 1998 14:00:17 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA11180; Sun, 15 Mar 1998 14:00:15 -0800 (PST) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA27265; Sun, 15 Mar 1998 14:00:12 -0800 (PST) Date: Sun, 15 Mar 1998 14:00:12 -0800 (PST) Message-Id: <199803152200.OAA27265@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data/cgi mid.cgi Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/03/15 14:00:12 PST Modified files: data/cgi Makefile Added files: data/cgi mid.cgi Log: Search and present a mail by Message-ID or In-Reply-To field Revision Changes Path 1.11 +2 -2 www/data/cgi/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 15:08:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA25987 for cvs-all-outgoing; Sun, 15 Mar 1998 15:08:41 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA25952; Sun, 15 Mar 1998 15:08:30 -0800 (PST) (envelope-from eivind@FreeBSD.org) From: Eivind Eklund Received: (from eivind@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA27506; Sun, 15 Mar 1998 15:08:26 -0800 (PST) Date: Sun, 15 Mar 1998 15:08:26 -0800 (PST) Message-Id: <199803152308.PAA27506@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa/sound os.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk eivind 1998/03/15 15:08:26 PST Modified files: sys/i386/isa/sound os.h Log: Remove an ifdef (to get linker errors instead of compile errors in the absence of 'controller snd0'). Revision Changes Path 1.36 +0 -3 src/sys/i386/isa/sound/os.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 15:48:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA03909 for cvs-all-outgoing; Sun, 15 Mar 1998 15:48:25 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA03902; Sun, 15 Mar 1998 15:48:22 -0800 (PST) (envelope-from jmz@FreeBSD.org) From: Jean-Marc Zucconi Received: (from jmz@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA27641; Sun, 15 Mar 1998 15:48:18 -0800 (PST) Date: Sun, 15 Mar 1998 15:48:18 -0800 (PST) Message-Id: <199803152348.PAA27641@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/XFree86/scripts configure Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jmz 1998/03/15 15:48:18 PST Modified files: x11/XFree86/scripts configure Log: Built XF86Setup only if tk4.2/tcl7.6 is there. Other versions do not seem to work. Revision Changes Path 1.32 +4 -3 ports/x11/XFree86/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 Mar 15 17:33:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA16066 for cvs-all-outgoing; Sun, 15 Mar 1998 17:33:08 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA16040; Sun, 15 Mar 1998 17:33:04 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA27850; Sun, 15 Mar 1998 17:32:54 -0800 (PST) Date: Sun, 15 Mar 1998 17:32:54 -0800 (PST) Message-Id: <199803160132.RAA27850@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa if_lnc.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 17:32:54 PST Modified files: (Branch: RELENG_2_2) sys/i386/isa if_lnc.c Log: MFC: fix an ethernet framesize mismatch OK'd by: jkh Revision Changes Path 1.28.2.3 +1 -1 src/sys/i386/isa/if_lnc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 17:56:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA18267 for cvs-all-outgoing; Sun, 15 Mar 1998 17:56:12 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA18258; Sun, 15 Mar 1998 17:56:11 -0800 (PST) (envelope-from dyson@FreeBSD.org) From: John Dyson Received: (from dyson@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA28044; Sun, 15 Mar 1998 17:56:06 -0800 (PST) Date: Sun, 15 Mar 1998 17:56:06 -0800 (PST) Message-Id: <199803160156.RAA28044@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/i386 pmap.c src/sys/kern vfs_bio.c vfs_cluster.c vfs_subr.c src/sys/sys buf.h vnode.h src/sys/ufs/ffs ffs_inode.c src/sys/vm vm_object.c vm_page.c vm_pageout.c vm_pager.c vnode_pager.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dyson 1998/03/15 17:56:06 PST Modified files: sys/i386/i386 pmap.c sys/kern vfs_bio.c vfs_cluster.c vfs_subr.c sys/sys buf.h vnode.h sys/ufs/ffs ffs_inode.c sys/vm vm_object.c vm_page.c vm_pageout.c vm_pager.c vnode_pager.c Log: Some VM improvements, including elimination of alot of Sig-11 problems. Tor Egge and others have helped with various VM bugs lately, but don't blame him -- blame me!!! pmap.c: 1) Create an object for kernel page table allocations. This fixes a bogus allocation method previously used for such, by grabbing pages from the kernel object, using bogus pindexes. (This was a code cleanup, and perhaps a minor system stability issue.) pmap.c: 2) Pre-set the modify and accessed bits when prudent. This will decrease bus traffic under certain circumstances. vfs_bio.c, vfs_cluster.c: 3) Rather than calculating the beginning virtual byte offset multiple times, stick the offset into the buffer header, so that the calculated offset can be reused. (Long long multiplies are often expensive, and this is a probably unmeasurable performance improvement, and code cleanup.) vfs_bio.c: 4) Handle write recursion more intelligently (but not perfectly) so that it is less likely to cause a system panic, and is also much more robust. vfs_bio.c: 5) getblk incorrectly wrote out blocks that are incorrectly sized. The problem is fixed, and writes blocks out ONLY when B_DELWRI is true. vfs_bio.c: 6) Check that already constituted buffers have fully valid pages. If not, then make sure that the B_CACHE bit is not set. (This was a major source of Sig-11 type problems.) vfs_bio.c: 7) Fix a potential system deadlock due to an incorrectly specified sleep priority while waiting for a buffer write operation. The change that I made opens the system up to serious problems, and we need to examine the issue of process sleep priorities. vfs_cluster.c, vfs_bio.c: 8) Make clustered reads work more correctly (and more completely) when buffers are already constituted, but not fully valid. (This was another system reliability issue.) vfs_subr.c, ffs_inode.c: 9) Create a vtruncbuf function, which is used by filesystems that can truncate files. The vinvalbuf forced a file sync type operation, while vtruncbuf only invalidates the buffers past the new end of file, and also invalidates the appropriate pages. (This was a system reliabiliy and performance issue.) 10) Modify FFS to use vtruncbuf. vm_object.c: 11) Make the object rundown mechanism for OBJT_VNODE type objects work more correctly. Included in that fix, create pager entries for the OBJT_DEAD pager type, so that paging requests that might slip in during race conditions are properly handled. (This was a system reliability issue.) vm_page.c: 12) Make some of the page validation routines be a little less picky about arguments passed to them. Also, support page invalidation change the object generation count so that we handle generation counts a little more robustly. vm_pageout.c: 13) Further reduce pageout daemon activity when the system doesn't need help from it. There should be no additional performance decrease even when the pageout daemon is running. (This was a significant performance issue.) vnode_pager.c: 14) Teach the vnode pager to handle race conditions during vnode deallocations. Revision Changes Path 1.190 +25 -14 src/sys/i386/i386/pmap.c 1.156 +86 -63 src/sys/kern/vfs_bio.c 1.58 +25 -16 src/sys/kern/vfs_cluster.c 1.141 +88 -1 src/sys/kern/vfs_subr.c 1.48 +2 -1 src/sys/sys/buf.h 1.69 +4 -1 src/sys/sys/vnode.h 1.37 +3 -13 src/sys/ufs/ffs/ffs_inode.c 1.119 +12 -10 src/sys/vm/vm_object.c 1.97 +7 -1 src/sys/vm/vm_page.c 1.120 +11 -20 src/sys/vm/vm_pageout.c 1.37 +75 -1 src/sys/vm/vm_pager.c 1.91 +3 -1 src/sys/vm/vnode_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 Mar 15 18:13:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA19632 for cvs-all-outgoing; Sun, 15 Mar 1998 18:13:15 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA19626; Sun, 15 Mar 1998 18:13:14 -0800 (PST) (envelope-from dyson@FreeBSD.org) From: John Dyson Received: (from dyson@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA28114; Sun, 15 Mar 1998 18:13:09 -0800 (PST) Date: Sun, 15 Mar 1998 18:13:09 -0800 (PST) Message-Id: <199803160213.SAA28114@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern vfs_subr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dyson 1998/03/15 18:13:08 PST Modified files: sys/kern vfs_subr.c Log: Allow vfs_ioopt to be enabled with a (temporary) config option. Revision Changes Path 1.142 +1 -3 src/sys/kern/vfs_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 18:20:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA20844 for cvs-all-outgoing; Sun, 15 Mar 1998 18:20:52 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA20836; Sun, 15 Mar 1998 18:20:51 -0800 (PST) (envelope-from hanai@FreeBSD.org) From: Hanai Hiroyuki Received: (from hanai@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA28160; Sun, 15 Mar 1998 18:20:46 -0800 (PST) Date: Sun, 15 Mar 1998 18:20:46 -0800 (PST) Message-Id: <199803160220.SAA28160@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data/ja_JP.EUC gallery.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hanai 1998/03/15 18:20:46 PST Modified files: data/ja_JP.EUC gallery.sgml Log: This file has already been synced with the English version. Submitted by: Nishika Revision Changes Path 1.3 +3 -3 www/data/ja_JP.EUC/gallery.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 18:24:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA21295 for cvs-all-outgoing; Sun, 15 Mar 1998 18:24:30 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA21283; Sun, 15 Mar 1998 18:24:27 -0800 (PST) (envelope-from hanai@FreeBSD.org) From: Hanai Hiroyuki Received: (from hanai@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA28222; Sun, 15 Mar 1998 18:24:21 -0800 (PST) Date: Sun, 15 Mar 1998 18:24:21 -0800 (PST) Message-Id: <199803160224.SAA28222@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/ja/man/man1 f77.1 gtags.1 doc/ja/man/man8 moused.8 ppp.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hanai 1998/03/15 18:24:21 PST Modified files: ja/man/man1 f77.1 gtags.1 ja/man/man8 moused.8 ppp.8 Log: Now, Japanese Manual is for 2.2.6-980314-BETA. Reviewed by: The Japanese Manual Project Submitted by: horikawa@jp.freebsd.org Revision Changes Path 1.3 +3 -2 doc/ja/man/man1/f77.1 1.3 +1 -1 doc/ja/man/man1/gtags.1 1.3 +12 -1 doc/ja/man/man8/moused.8 1.5 +6 -4 doc/ja/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 Mar 15 18:33:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA22057 for cvs-all-outgoing; Sun, 15 Mar 1998 18:33:32 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA22052; Sun, 15 Mar 1998 18:33:30 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA28276; Sun, 15 Mar 1998 18:33:26 -0800 (PST) Date: Sun, 15 Mar 1998 18:33:26 -0800 (PST) Message-Id: <199803160233.SAA28276@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/p5-B Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 18:33:25 PST Modified files: devel/p5-B Makefile Log: Mark this as broken since it doesn't work with perl v5.004. PR: 5997 Submitted by: maintainer Revision Changes Path 1.3 +2 -1 ports/devel/p5-B/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 18:39:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA22675 for cvs-all-outgoing; Sun, 15 Mar 1998 18:39:44 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA22670; Sun, 15 Mar 1998 18:39:43 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA28449; Sun, 15 Mar 1998 18:39:39 -0800 (PST) Date: Sun, 15 Mar 1998 18:39:39 -0800 (PST) Message-Id: <199803160239.SAA28449@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/sysutils/cdrecord Makefile ports/sysutils/cdrecord/files md5 ports/sysutils/cdrecord/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 18:39:38 PST Modified files: sysutils/cdrecord Makefile sysutils/cdrecord/files md5 sysutils/cdrecord/pkg PLIST Log: Upgrade to version 1.6a12. PR: 6001 Submitted by: SADA Kenji Revision Changes Path 1.3 +7 -6 ports/sysutils/cdrecord/Makefile 1.2 +1 -1 ports/sysutils/cdrecord/files/md5 1.2 +0 -3 ports/sysutils/cdrecord/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 Mar 15 18:46:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA24048 for cvs-all-outgoing; Sun, 15 Mar 1998 18:46:52 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA24041; Sun, 15 Mar 1998 18:46:50 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA28594; Sun, 15 Mar 1998 18:46:45 -0800 (PST) Date: Sun, 15 Mar 1998 18:46:45 -0800 (PST) Message-Id: <199803160246.SAA28594@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/databases/mysql Makefile ports/databases/mysql/files md5 ports/databases/mysql/patches patch-ac patch-ad patch-aa patch-ab ports/databases/mysql/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 18:46:44 PST Modified files: databases/mysql Makefile databases/mysql/files md5 databases/mysql/patches patch-aa patch-ab databases/mysql/pkg PLIST Added files: databases/mysql/patches patch-ac patch-ad Log: Upgrade to version 3.21.25g-gamma. PR: 5983 Submitted by: Dirk Foremberg Revision Changes Path 1.17 +11 -6 ports/databases/mysql/Makefile 1.11 +1 -1 ports/databases/mysql/files/md5 1.5 +0 -50 ports/databases/mysql/patches/patch-aa 1.2 +52 -25 ports/databases/mysql/patches/patch-ab 1.7 +2 -1 ports/databases/mysql/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 Mar 15 18:47:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA24156 for cvs-all-outgoing; Sun, 15 Mar 1998 18:47:46 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA24151; Sun, 15 Mar 1998 18:47:44 -0800 (PST) (envelope-from hanai@FreeBSD.org) From: Hanai Hiroyuki Received: (from hanai@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA28628; Sun, 15 Mar 1998 18:47:40 -0800 (PST) Date: Sun, 15 Mar 1998 18:47:40 -0800 (PST) Message-Id: <199803160247.SAA28628@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data/ja_JP.EUC gallery.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hanai 1998/03/15 18:47:39 PST Modified files: data/ja_JP.EUC gallery.sgml Log: Fix a typo Submitted by: Jun Kuriyama Revision Changes Path 1.4 +4 -4 www/data/ja_JP.EUC/gallery.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 19:16:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA27813 for cvs-all-outgoing; Sun, 15 Mar 1998 19:16:33 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA27808; Sun, 15 Mar 1998 19:16:31 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA29030; Sun, 15 Mar 1998 19:16:27 -0800 (PST) Date: Sun, 15 Mar 1998 19:16:27 -0800 (PST) Message-Id: <199803160316.TAA29030@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/mail/p5-Mail-Folder Makefile ports/mail/p5-Mail-Folder/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 19:16:26 PST Modified files: mail/p5-Mail-Folder Makefile mail/p5-Mail-Folder/pkg PLIST Log: Now that all the requisite pieces are in place, fix this port. PR: 4287 Submitted by: Jun Kuriyama Revision Changes Path 1.9 +10 -2 ports/mail/p5-Mail-Folder/Makefile 1.3 +1 -1 ports/mail/p5-Mail-Folder/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 19:19:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA28068 for cvs-all-outgoing; Sun, 15 Mar 1998 19:19:25 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA28060; Sun, 15 Mar 1998 19:19:22 -0800 (PST) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA29098; Sun, 15 Mar 1998 19:19:17 -0800 (PST) Date: Sun, 15 Mar 1998 19:19:17 -0800 (PST) Message-Id: <199803160319.TAA29098@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/xnibbles Makefile ports/games/xnibbles/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1998/03/15 19:19:17 PST Modified files: games/xnibbles Makefile games/xnibbles/pkg COMMENT DESCR PLIST Log: Merge the changes (correct style) I made to the port. Note that we don't need more copies of the GNU GPL license in the system. Revision Changes Path 1.2 +17 -16 ports/games/xnibbles/Makefile 1.2 +1 -1 ports/games/xnibbles/pkg/COMMENT 1.2 +14 -16 ports/games/xnibbles/pkg/DESCR 1.2 +0 -1 ports/games/xnibbles/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 Mar 15 19:20:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA28138 for cvs-all-outgoing; Sun, 15 Mar 1998 19:20:00 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au (spinner.netplex.com.au [202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA28058; Sun, 15 Mar 1998 19:19:12 -0800 (PST) (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.8.8/8.8.8/Spinner) with ESMTP id LAA10736; Mon, 16 Mar 1998 11:18:27 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199803160318.LAA10736@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: Andreas Klemm cc: asami@FreeBSD.ORG, peter@FreeBSD.ORG, committers@FreeBSD.ORG Subject: Re: cvs server: failed to create lock directory in repository.... In-reply-to: Your message of "Sun, 15 Mar 1998 16:41:45 +0100." <19980315164145.11392@klemm.gtn.com> Date: Mon, 16 Mar 1998 11:18:26 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Andreas Klemm wrote: > Hi Satoshi and Peter or someone who gets this earlier... ! > > What's happening ? > > I added the patches and script directory using > > cvs add patches > cvs add script > > I scheduled two files for being added to the repository using > > cd patches > cvs add patch-aa > cd scripts > cvs add post-patch > > When committing my changes, this happens and nothing is being > committed: > > /tmp/cvsV12555: 22 Zeilen, 933 Zeichen > ? README > cvs server: failed to create lock directory in repository `/home/ncvs/ports/w ww/mapedit/scripts': No such file or directory > cvs server: lock failed - giving up ^^^^^^^^^^^ You are using remote cvs? Are you using 2.2.x or -current? What you are running into reminds me a of the problems with the old cvs not handling remote roots correctly when adding new directories. > cvs [server aborted]: lock failed - giving up > cvs commit: saving log message in /tmp/cvsx12555 > > > Please help ! ;-) Log into freefall and 'cvs add' the directories on there and see how you go with a remote commit then. > Andreas /// > > -- > Andreas Klemm > powered by ,,symmetric multiprocessor FreeBSD'' > Cheers, -Peter -- Peter Wemm Netplex Consulting To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 19:24:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA28430 for cvs-all-outgoing; Sun, 15 Mar 1998 19:24:39 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA28423; Sun, 15 Mar 1998 19:24:38 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA29144; Sun, 15 Mar 1998 19:24:33 -0800 (PST) Date: Sun, 15 Mar 1998 19:24:33 -0800 (PST) Message-Id: <199803160324.TAA29144@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/m68kgdb - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 19:24:32 PST ports/devel/m68kgdb - Imported sources Update of /home/ncvs/ports/devel/m68kgdb In directory freefall.freebsd.org:/d/users/steve/m68kgdb Log Message: A Motorola 68k debugger for cross-development purposes. PR: 5798 Submitted by: Jerry Hicks Status: Vendor Tag: HICKS Release Tags: v1_0 N ports/devel/m68kgdb/Makefile N ports/devel/m68kgdb/files/md5 N ports/devel/m68kgdb/patches/patch-aa N ports/devel/m68kgdb/pkg/COMMENT N ports/devel/m68kgdb/pkg/DESCR N ports/devel/m68kgdb/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 19:26:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA28611 for cvs-all-outgoing; Sun, 15 Mar 1998 19:26:41 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA28605; Sun, 15 Mar 1998 19:26:39 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA29222; Sun, 15 Mar 1998 19:26:34 -0800 (PST) Date: Sun, 15 Mar 1998 19:26:34 -0800 (PST) Message-Id: <199803160326.TAA29222@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 19:26:34 PST Modified files: devel Makefile Log: Activate m68kgdb. Revision Changes Path 1.94 +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 Sun Mar 15 19:26:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA28644 for cvs-all-outgoing; Sun, 15 Mar 1998 19:26:47 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA28639; Sun, 15 Mar 1998 19:26:45 -0800 (PST) (envelope-from hanai@FreeBSD.org) From: Hanai Hiroyuki Received: (from hanai@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA29251; Sun, 15 Mar 1998 19:26:41 -0800 (PST) Date: Sun, 15 Mar 1998 19:26:41 -0800 (PST) Message-Id: <199803160326.TAA29251@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/ja/handbook makeworld.sgml Makefile current.sgml handbook.sgml hw.sgml jcontrib.sgml sections.sgml stable.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hanai 1998/03/15 19:26:40 PST Modified files: ja/handbook Makefile current.sgml handbook.sgml hw.sgml jcontrib.sgml sections.sgml stable.sgml Added files: ja/handbook makeworld.sgml Log: New translation of the new file, makeworld.sgml. Changes in the other files are due to this new file. Submitted by: y-koga@jp.FreeBSD.ORG Revision Changes Path 1.22 +3 -3 doc/ja/handbook/Makefile 1.12 +5 -4 doc/ja/handbook/current.sgml 1.25 +3 -2 doc/ja/handbook/handbook.sgml 1.28 +4 -3 doc/ja/handbook/hw.sgml 1.13 +2 -1 doc/ja/handbook/jcontrib.sgml 1.13 +3 -2 doc/ja/handbook/sections.sgml 1.12 +7 -6 doc/ja/handbook/stable.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 19:29:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA28839 for cvs-all-outgoing; Sun, 15 Mar 1998 19:29:18 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA28831; Sun, 15 Mar 1998 19:29:17 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA29281; Sun, 15 Mar 1998 19:29:12 -0800 (PST) Date: Sun, 15 Mar 1998 19:29:12 -0800 (PST) Message-Id: <199803160329.TAA29281@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 19:29:12 PST Modified files: . modules Log: m68kgdb -> ports/devel/m68kgdb Revision Changes Path 1.1873 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 19:31:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA29103 for cvs-all-outgoing; Sun, 15 Mar 1998 19:31:08 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from localhost.my.domain (ppp6541.on.bellglobal.com [206.172.208.133]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA29077; Sun, 15 Mar 1998 19:30:40 -0800 (PST) (envelope-from ac199@hwcn.org) Received: from localhost (tim@localhost) by localhost.my.domain (8.8.8/8.8.8) with SMTP id WAA00427; Sun, 15 Mar 1998 22:29:16 -0500 (EST) (envelope-from ac199@hwcn.org) X-Authentication-Warning: localhost.my.domain: tim owned process doing -bs Date: Sun, 15 Mar 1998 22:29:16 -0500 (EST) From: Tim Vanderhoek X-Sender: tim@localhost Reply-To: ac199@hwcn.org To: Tim Vanderhoek cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/games/xnibbles Makefile ports/games/xnibbles/pkg COMMENT DESCR PLIST In-Reply-To: <199803160319.TAA29098@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, 15 Mar 1998, Tim Vanderhoek wrote: > Note that we don't need more copies of the GNU GPL license > in the system. Actually, now that I look for it, we don't have a standard copy of the license anywhere. We should probably have one somewhere, since I expect there is quite a number of ports which simply refers the user to the GPL COPYING file, which typically isn't installed, and I know at least Thomas Gellekum has long ago reprimanded me for unnecessarily installing the file. :) Not to mention the various system components under the GPL. -- tIM...HOEk OPTIMIZATION: the process of using many one-letter variables names hoping that the resultant code will run faster. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 19:45:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA01810 for cvs-all-outgoing; Sun, 15 Mar 1998 19:45:20 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA01790; Sun, 15 Mar 1998 19:45:14 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA29329; Sun, 15 Mar 1998 19:45:06 -0800 (PST) Date: Sun, 15 Mar 1998 19:45:06 -0800 (PST) Message-Id: <199803160345.TAA29329@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/crossm68k - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 19:45:05 PST ports/devel/crossm68k - Imported sources Update of /home/ncvs/ports/devel/crossm68k In directory freefall.freebsd.org:/d/users/steve/crossm68k Log Message: Motorola 68K Cross Development Environment PR: 5798 Submitted by: Jerry Hicks Status: Vendor Tag: HICKS Release Tags: v1_4 N ports/devel/crossm68k/Makefile N ports/devel/crossm68k/files/md5 N ports/devel/crossm68k/scripts/one-tree-1.4.sh N ports/devel/crossm68k/patches/patch-aa N ports/devel/crossm68k/patches/patch-ab N ports/devel/crossm68k/patches/patch-ac N ports/devel/crossm68k/patches/patch-ad N ports/devel/crossm68k/pkg/COMMENT N ports/devel/crossm68k/pkg/DESCR N ports/devel/crossm68k/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 19:46:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA02273 for cvs-all-outgoing; Sun, 15 Mar 1998 19:46:52 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA02249; Sun, 15 Mar 1998 19:46:46 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA29364; Sun, 15 Mar 1998 19:46:41 -0800 (PST) Date: Sun, 15 Mar 1998 19:46:41 -0800 (PST) Message-Id: <199803160346.TAA29364@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 19:46:40 PST Modified files: . modules Log: crossm68k -> ports/devel/crossm68k Revision Changes Path 1.1874 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 19:47:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA02417 for cvs-all-outgoing; Sun, 15 Mar 1998 19:47:57 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA02410; Sun, 15 Mar 1998 19:47:55 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA29400; Sun, 15 Mar 1998 19:47:50 -0800 (PST) Date: Sun, 15 Mar 1998 19:47:50 -0800 (PST) Message-Id: <199803160347.TAA29400@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 19:47:50 PST Modified files: devel Makefile Log: Activate crossm68k. Revision Changes Path 1.95 +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 Sun Mar 15 20:19:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA05945 for cvs-all-outgoing; Sun, 15 Mar 1998 20:19:25 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA05924 for ; Sun, 15 Mar 1998 20:19:19 -0800 (PST) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id PAA04641; Mon, 16 Mar 1998 15:13:37 +1100 Date: Mon, 16 Mar 1998 15:13:37 +1100 From: Bruce Evans Message-Id: <199803160413.PAA04641@godzilla.zeta.org.au> To: bde@zeta.org.au, dima@tejblum.dnttm.rssi.ru Subject: Re: dumb question about fstab and 226 beta Cc: committers@FreeBSD.ORG, mike@smith.net.au Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >> The problem here is probably that the slice alias breaks fsck's `hotroot' >> calculation in blockcheck(). After fsck finishes writing to the cdev >... >You are right, of course. This trivial bogus patch fixes my test >case. >... >It is funny how various programs trust the root device in fstab, while true >root device stored in kernel and cannot be changed while the system run. This shows that trivial bogus patches :-) in utilities are the wrong way to fix the problem. The kernel could pretend that requests to mount sd0a are really requests to change the kernel's idea of the root device from sd0sNa (sN = first BSD slice) to sd0a in just a few cases. mount(8) and fsck(8) can't even tell the correct value of N. It is easy to demonstrate breakage of the current hack in mount using an exotic setup: labeled non-BSD slice sd0s1 first BSD slice sd0s2 Then requests to mount sd0a will attempt to mount sd0s1a instead of the correct sd0s2a. Another indication of the problem is that df after booting with -s shows the root device as "root_device", so it is difficult to determine the correct device to type for `mount -u /' if the device in fstab is wrong. >It is possible obtain the dev_t of root device via stat(2), so >mount_ufs.c probably could test that the user-supplied device name >match kernel's idea, and if not, determine correct device name with >devname(3) :-|. (This way it should wait (in background) until devname(3) >available. It also could upgrade root to read-write without device name). >Such mount would be more tolerant to various user's mistake :-). The problems can be limited to the root device by not rewriting the device name except for mounting root. mount(8) already handles this specially. It adds MNT_UPDATE to the flags if the mount point is "/". Since the kernel says that the device name is "root_device", remounting that should work :-). "root_device" is a dummy name generated by vfs_mountrootfs() and returned by statfs(). I can easily make statfs() return the actual device name (as formatted by dsname()), since my fix for the wrong name being printed in setroot() involves passing the device name up to vfsmountrootfs() so that it can be printed later. >I don't see similar way for fsck. Only "brute-force". It could read the slice table, check for aliases, and only use aliases that it understands (mainly the cdev == bdev one). I think it shouldn't. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 20:43:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA07517 for cvs-all-outgoing; Sun, 15 Mar 1998 20:43:49 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from sasami.jurai.net (winter@sasami.jurai.net [207.153.65.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA07484; Sun, 15 Mar 1998 20:43:25 -0800 (PST) (envelope-from winter@jurai.net) Received: from localhost (winter@localhost) by sasami.jurai.net (8.8.8/8.8.7) with SMTP id XAA25105; Sun, 15 Mar 1998 23:44:17 -0500 (EST) Date: Sun, 15 Mar 1998 23:44:16 -0500 (EST) From: "Matthew N. Dodd" To: Steve Price cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/x11/rxvt Makefile ports/x11/rxvt/files md5 ports/x11/rxvt/patches patch-aa patch-ab patch-ad patch-ae patch-ah ports/x11/rxvt/pkg DESCR In-Reply-To: <199803151948.LAA26291@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk While you're at it, please remove my name as 'maintainer' as 2.16 is the last version that works to my satisfaction (since the rabid linux people took it over and ruined it with configure, its been a tad linux centric) Thanks! On Sun, 15 Mar 1998, Steve Price wrote: > steve 1998/03/15 11:48:32 PST > > Modified files: > x11/rxvt Makefile > x11/rxvt/files md5 > x11/rxvt/patches patch-aa patch-ab > x11/rxvt/pkg DESCR > Removed files: > x11/rxvt/patches patch-ad patch-ae patch-ah > Log: > Update to version 2.4.5. > > PR: 5940 > Submitted by: Frank Chen Hsiung Chan > > Revision Changes Path > 1.14 +4 -8 ports/x11/rxvt/Makefile > 1.4 +1 -1 ports/x11/rxvt/files/md5 > 1.4 +14 -3 ports/x11/rxvt/patches/patch-aa > 1.6 +10 -18 ports/x11/rxvt/patches/patch-ab > 1.2 +2 -0 ports/x11/rxvt/pkg/DESCR > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe cvs-all" in the body of the message > /* Matthew N. Dodd | A memory retaining a love you had for life winter@jurai.net | As cruel as it seems nothing ever seems to http://www.jurai.net/~winter | go right - FLA M 3.1:53 */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 21:04:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA08926 for cvs-all-outgoing; Sun, 15 Mar 1998 21:04:26 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA08921; Sun, 15 Mar 1998 21:04:23 -0800 (PST) (envelope-from hanai@FreeBSD.org) From: Hanai Hiroyuki Received: (from hanai@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA29555; Sun, 15 Mar 1998 21:04:17 -0800 (PST) Date: Sun, 15 Mar 1998 21:04:17 -0800 (PST) Message-Id: <199803160504.VAA29555@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/ja/handbook bibliography.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hanai 1998/03/15 21:04:17 PST Modified files: ja/handbook bibliography.sgml Log: Fix the incorrect Japanese title of sendmail book. Submitted by: Yoshiaki Uchikawa Revision Changes Path 1.14 +3 -3 doc/ja/handbook/bibliography.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 21:51:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA11716 for cvs-all-outgoing; Sun, 15 Mar 1998 21:51:50 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA11710; Sun, 15 Mar 1998 21:51:48 -0800 (PST) (envelope-from hanai@FreeBSD.org) From: Hanai Hiroyuki Received: (from hanai@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA29653; Sun, 15 Mar 1998 21:51:42 -0800 (PST) Date: Sun, 15 Mar 1998 21:51:42 -0800 (PST) Message-Id: <199803160551.VAA29653@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/ja/handbook history.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hanai 1998/03/15 21:51:42 PST Modified files: ja/handbook history.sgml Log: Changes in the English version(1.23->1.24) are merged. Revision Changes Path 1.9 +8 -11 doc/ja/handbook/history.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 22:54:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA16826 for cvs-all-outgoing; Sun, 15 Mar 1998 22:54:28 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA16821; Sun, 15 Mar 1998 22:54:25 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA29788; Sun, 15 Mar 1998 22:54:18 -0800 (PST) Date: Sun, 15 Mar 1998 22:54:18 -0800 (PST) Message-Id: <199803160654.WAA29788@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/03/15 22:54:18 PST Modified files: . modules Log: povchem --> ports/biology/povchem Revision Changes Path 1.1875 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 22:57:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA16977 for cvs-all-outgoing; Sun, 15 Mar 1998 22:57:23 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA16970; Sun, 15 Mar 1998 22:57:21 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA29806; Sun, 15 Mar 1998 22:57:15 -0800 (PST) Date: Sun, 15 Mar 1998 22:57:15 -0800 (PST) Message-Id: <199803160657.WAA29806@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/biology/povchem - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/03/15 22:57:14 PST ports/biology/povchem - Imported sources Update of /home/ncvs/ports/biology/povchem In directory freefall.freebsd.org:/d/users/vanilla/work/povchem Log Message: Povchem is a tool to generate POV file from a PDB(Protein DataBank) entry. One can adjust many parameters for a high quality molecular graphic. PR: ports/6008 Submitted by: Frank Chen Hsiung Chan Status: Vendor Tag: FRANKCH Release Tags: povchem_1_0 N ports/biology/povchem/Makefile I ports/biology/povchem/CVS N ports/biology/povchem/files/md5 N ports/biology/povchem/patches/patch-aa N ports/biology/povchem/patches/patch-ab N ports/biology/povchem/patches/patch-ac N ports/biology/povchem/pkg/COMMENT N ports/biology/povchem/pkg/DESCR N ports/biology/povchem/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 23:01:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA17204 for cvs-all-outgoing; Sun, 15 Mar 1998 23:01:43 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA17199; Sun, 15 Mar 1998 23:01:42 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA29861; Sun, 15 Mar 1998 23:01:35 -0800 (PST) Date: Sun, 15 Mar 1998 23:01:35 -0800 (PST) Message-Id: <199803160701.XAA29861@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/biology Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/03/15 23:01:35 PST Modified files: biology Makefile Log: Activate povchem. Revision Changes Path 1.6 +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 Sun Mar 15 23:11:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA18523 for cvs-all-outgoing; Sun, 15 Mar 1998 23:11:40 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA18518; Sun, 15 Mar 1998 23:11:38 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA29997; Sun, 15 Mar 1998 23:11:32 -0800 (PST) Date: Sun, 15 Mar 1998 23:11:32 -0800 (PST) Message-Id: <199803160711.XAA29997@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp ppp.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 23:11:31 PST Modified files: (Branch: RELENG_2_2) usr.sbin/ppp ppp.8 Log: Typo fix. PR: 6016 Submitted by: Kazuo Horikawa OK'd by: jkh Revision Changes Path 1.19.2.37 +2 -2 src/usr.sbin/ppp/ppp.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 23:14:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA18717 for cvs-all-outgoing; Sun, 15 Mar 1998 23:14:09 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA18710; Sun, 15 Mar 1998 23:14:03 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA00159; Sun, 15 Mar 1998 23:13:57 -0800 (PST) Date: Sun, 15 Mar 1998 23:13:57 -0800 (PST) Message-Id: <199803160713.XAA00159@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/rxvt Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 23:13:55 PST Modified files: x11/rxvt Makefile Log: Remove old maintainer. Revision Changes Path 1.15 +2 -2 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 Sun Mar 15 23:19:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA19184 for cvs-all-outgoing; Sun, 15 Mar 1998 23:19:31 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA19162; Sun, 15 Mar 1998 23:19:29 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA00340; Sun, 15 Mar 1998 23:19:23 -0800 (PST) Date: Sun, 15 Mar 1998 23:19:23 -0800 (PST) Message-Id: <199803160719.XAA00340@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/korean/hanterm Makefile ports/korean/hanterm/files md5 ports/korean/hanterm/patches patch-aa ports/korean/hanterm/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 23:19:21 PST Modified files: korean/hanterm Makefile korean/hanterm/files md5 korean/hanterm/patches patch-aa korean/hanterm/pkg DESCR Log: Upgrade to version 304beta6p1. PR: 6009 Submitted by: maintainer Revision Changes Path 1.3 +11 -11 ports/korean/hanterm/Makefile 1.2 +1 -1 ports/korean/hanterm/files/md5 1.2 +11 -15 ports/korean/hanterm/patches/patch-aa 1.2 +3 -3 ports/korean/hanterm/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 Mar 15 23:23:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA19686 for cvs-all-outgoing; Sun, 15 Mar 1998 23:23:04 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA19681; Sun, 15 Mar 1998 23:23:02 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA00498; Sun, 15 Mar 1998 23:22:56 -0800 (PST) Date: Sun, 15 Mar 1998 23:22:56 -0800 (PST) Message-Id: <199803160722.XAA00498@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/korean/ztelnet Makefile ports/korean/ztelnet/files md5 ports/korean/ztelnet/patches patch-aa ports/korean/ztelnet/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 23:22:55 PST Modified files: korean/ztelnet Makefile korean/ztelnet/files md5 korean/ztelnet/patches patch-aa korean/ztelnet/pkg DESCR Log: Upgrade to version 1.0p2. PR: 6010 Submitted by: maintainer Revision Changes Path 1.3 +24 -14 ports/korean/ztelnet/Makefile 1.2 +1 -1 ports/korean/ztelnet/files/md5 1.2 +1511 -46 ports/korean/ztelnet/patches/patch-aa 1.2 +5 -2 ports/korean/ztelnet/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 Mar 15 23:26:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA20029 for cvs-all-outgoing; Sun, 15 Mar 1998 23:26:23 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA20024; Sun, 15 Mar 1998 23:26:22 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA00552; Sun, 15 Mar 1998 23:26:16 -0800 (PST) Date: Sun, 15 Mar 1998 23:26:16 -0800 (PST) Message-Id: <199803160726.XAA00552@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/korean/johabfonts Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 23:26:15 PST Modified files: korean/johabfonts Makefile Log: MASTER_SITES changed. PR: 6012 Submitted by: maintainer Revision Changes Path 1.3 +8 -8 ports/korean/johabfonts/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 23:29:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA20304 for cvs-all-outgoing; Sun, 15 Mar 1998 23:29:55 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA20299; Sun, 15 Mar 1998 23:29:51 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA00733; Sun, 15 Mar 1998 23:29:45 -0800 (PST) Date: Sun, 15 Mar 1998 23:29:45 -0800 (PST) Message-Id: <199803160729.XAA00733@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/korean/hanterm-xf86 Makefile ports/korean/hanterm-xf86/files md5 ports/korean/hanterm-xf86/patches patch-aa ports/korean/hanterm-xf86/pkg DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 23:29:44 PST Modified files: korean/hanterm-xf86 Makefile korean/hanterm-xf86/files md5 korean/hanterm-xf86/patches patch-aa korean/hanterm-xf86/pkg DESCR PLIST Log: Update to version xf331-p11a. PR: 6021 Submitted by: maintainer Revision Changes Path 1.3 +17 -18 ports/korean/hanterm-xf86/Makefile 1.2 +1 -1 ports/korean/hanterm-xf86/files/md5 1.2 +11 -41 ports/korean/hanterm-xf86/patches/patch-aa 1.2 +6 -9 ports/korean/hanterm-xf86/pkg/DESCR 1.2 +0 -1 ports/korean/hanterm-xf86/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 Mar 15 23:32:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA20571 for cvs-all-outgoing; Sun, 15 Mar 1998 23:32:18 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA20566; Sun, 15 Mar 1998 23:32:16 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA00788; Sun, 15 Mar 1998 23:32:10 -0800 (PST) Date: Sun, 15 Mar 1998 23:32:10 -0800 (PST) Message-Id: <199803160732.XAA00788@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/korean/elm Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 23:32:10 PST Modified files: korean/elm Makefile Log: MASTER_SITES changed and a few style nits. PR: 6022 Submitted by: maintainer Revision Changes Path 1.3 +6 -6 ports/korean/elm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 23:34:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA20783 for cvs-all-outgoing; Sun, 15 Mar 1998 23:34:05 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA20764; Sun, 15 Mar 1998 23:34:01 -0800 (PST) (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA00917; Sun, 15 Mar 1998 23:33:54 -0800 (PST) Date: Sun, 15 Mar 1998 23:33:54 -0800 (PST) Message-Id: <199803160733.XAA00917@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/japanese/vfghostscript5 Makefile ports/japanese/vfghostscript5/files md5 ports/japanese/vfghostscript5/patches patch-aa ports/japanese/vfghostscript5/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/03/15 23:33:54 PST Modified files: japanese/vfghostscript5 Makefile japanese/vfghostscript5/files md5 japanese/vfghostscript5/patches patch-aa japanese/vfghostscript5/pkg PLIST Log: - japanese pdf support patch - pdf encryption support patch (make PDFENCRYPT=yes) Submitted by: mita@jp.freebsd.org, itojun Revision Changes Path 1.16 +33 -6 ports/japanese/vfghostscript5/Makefile 1.10 +3 -0 ports/japanese/vfghostscript5/files/md5 1.4 +163 -75 ports/japanese/vfghostscript5/patches/patch-aa 1.5 +8 -0 ports/japanese/vfghostscript5/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 Mar 15 23:34:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA20816 for cvs-all-outgoing; Sun, 15 Mar 1998 23:34:12 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA20788; Sun, 15 Mar 1998 23:34:06 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA00945; Sun, 15 Mar 1998 23:33:59 -0800 (PST) Date: Sun, 15 Mar 1998 23:33:59 -0800 (PST) Message-Id: <199803160733.XAA00945@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp ppp.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/03/15 23:33:59 PST Modified files: usr.sbin/ppp ppp.8 Log: Cosmetic: .Dq -> .It Revision Changes Path 1.99 +2 -2 src/usr.sbin/ppp/ppp.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 23:35:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA20955 for cvs-all-outgoing; Sun, 15 Mar 1998 23:35:56 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA20950; Sun, 15 Mar 1998 23:35:55 -0800 (PST) (envelope-from hanai@FreeBSD.org) From: Hanai Hiroyuki Received: (from hanai@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA01066; Sun, 15 Mar 1998 23:35:49 -0800 (PST) Date: Sun, 15 Mar 1998 23:35:49 -0800 (PST) Message-Id: <199803160735.XAA01066@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/ja/FAQ network.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hanai 1998/03/15 23:35:48 PST Modified files: ja/FAQ network.sgml Log: Changes in the English version (1.6->1.8) are merged. Submitted by: Mitsuharu ARIMURA Revision Changes Path 1.4 +115 -15 doc/ja/FAQ/network.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 23:36:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA21152 for cvs-all-outgoing; Sun, 15 Mar 1998 23:36:54 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA21113; Sun, 15 Mar 1998 23:36:46 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA01109; Sun, 15 Mar 1998 23:36:39 -0800 (PST) Date: Sun, 15 Mar 1998 23:36:39 -0800 (PST) Message-Id: <199803160736.XAA01109@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/korean/hcode Makefile ports/korean/hcode/files md5 ports/korean/hcode/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 23:36:39 PST Modified files: korean/hcode Makefile korean/hcode/files md5 korean/hcode/pkg DESCR Log: Update to version 2.1-mailpatch3. PR: 6023 Submitted by: maintainer Revision Changes Path 1.4 +6 -6 ports/korean/hcode/Makefile 1.2 +1 -1 ports/korean/hcode/files/md5 1.2 +3 -3 ports/korean/hcode/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 Mar 15 23:38:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA21318 for cvs-all-outgoing; Sun, 15 Mar 1998 23:38:10 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA21313; Sun, 15 Mar 1998 23:38:05 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA01147; Sun, 15 Mar 1998 23:37:59 -0800 (PST) Date: Sun, 15 Mar 1998 23:37:59 -0800 (PST) Message-Id: <199803160737.XAA01147@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp ppp.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/03/15 23:37:58 PST Modified files: (Branch: MP) usr.sbin/ppp ppp.8 Log: MFC: Cosmetic: .Dq -> .It Revision Changes Path 1.97.2.4 +2 -2 src/usr.sbin/ppp/ppp.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 23:40:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA21521 for cvs-all-outgoing; Sun, 15 Mar 1998 23:40:25 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA21509; Sun, 15 Mar 1998 23:40:19 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA01272; Sun, 15 Mar 1998 23:40:13 -0800 (PST) Date: Sun, 15 Mar 1998 23:40:13 -0800 (PST) Message-Id: <199803160740.XAA01272@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/korean/hanmutt Makefile ports/korean/hanmutt/pkg COMMENT DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 23:40:12 PST Modified files: korean/hanmutt Makefile korean/hanmutt/pkg COMMENT DESCR Log: MASTER_SITES changed and misc. nits. PR: 6026 Submitted by: maintainer Revision Changes Path 1.4 +5 -5 ports/korean/hanmutt/Makefile 1.2 +1 -1 ports/korean/hanmutt/pkg/COMMENT 1.2 +4 -4 ports/korean/hanmutt/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 Mar 15 23:46:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA22025 for cvs-all-outgoing; Sun, 15 Mar 1998 23:46:18 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA22019; Sun, 15 Mar 1998 23:46:17 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA01372; Sun, 15 Mar 1998 23:46:10 -0800 (PST) Date: Sun, 15 Mar 1998 23:46:10 -0800 (PST) Message-Id: <199803160746.XAA01372@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/sysutils/cdrecord Makefile ports/sysutils/cdrecord/patches patch-ab Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 23:46:10 PST Modified files: sysutils/cdrecord Makefile Added files: sysutils/cdrecord/patches patch-ab Log: Put back the symbloic link creation smashed in the last commit and add a forgotten patch. Revision Changes Path 1.4 +2 -1 ports/sysutils/cdrecord/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 23:51:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA22620 for cvs-all-outgoing; Sun, 15 Mar 1998 23:51:38 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA22613; Sun, 15 Mar 1998 23:51:35 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA01541; Sun, 15 Mar 1998 23:51:28 -0800 (PST) Date: Sun, 15 Mar 1998 23:51:28 -0800 (PST) Message-Id: <199803160751.XAA01541@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/korean/pine Makefile ports/korean/pine/files dot.pinerc.ko.sample.patch md5 ports/korean/pine/patches patch-aj patch-an patch-ao patch-ap patch-aq patch-aa patch-ae patch-ai ports/korean/pine/pkg COMMENT DESCR PLIST ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 23:51:27 PST Modified files: korean/pine Makefile korean/pine/files md5 korean/pine/patches patch-aa patch-ae patch-ai korean/pine/pkg COMMENT DESCR PLIST korean/pine/scripts configure Added files: korean/pine/files dot.pinerc.ko.sample.patch korean/pine/patches patch-aj patch-an patch-ao patch-ap patch-aq Log: Update to version 3.96k2. PR: 6024 Submitted by: maintainer Revision Changes Path 1.5 +19 -21 ports/korean/pine/Makefile 1.2 +1 -1 ports/korean/pine/files/md5 1.2 +1 -1 ports/korean/pine/patches/patch-aa 1.2 +1 -1 ports/korean/pine/patches/patch-ae 1.2 +35 -3 ports/korean/pine/patches/patch-ai 1.2 +1 -1 ports/korean/pine/pkg/COMMENT 1.2 +3 -3 ports/korean/pine/pkg/DESCR 1.2 +1 -0 ports/korean/pine/pkg/PLIST 1.2 +0 -0 ports/korean/pine/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 Mar 15 23:55:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA22953 for cvs-all-outgoing; Sun, 15 Mar 1998 23:55:19 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA22948; Sun, 15 Mar 1998 23:55:17 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA01563; Sun, 15 Mar 1998 23:55:11 -0800 (PST) Date: Sun, 15 Mar 1998 23:55:11 -0800 (PST) Message-Id: <199803160755.XAA01563@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/korean/vim - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 23:55:11 PST ports/korean/vim - Imported sources Update of /home/ncvs/ports/korean/vim In directory freefall.freebsd.org:/d/users/steve/vim5 Log Message: A vi "workalike", with KOrean language support. PR: 6025 Submitted by: CHIO Junho Status: Vendor Tag: CHOI Release Tags: v5_0 N ports/korean/vim/Makefile N ports/korean/vim/files/md5 N ports/korean/vim/patches/patch-01 N ports/korean/vim/patches/patch-02 N ports/korean/vim/pkg/COMMENT N ports/korean/vim/pkg/DESCR N ports/korean/vim/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 15 23:57:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA23275 for cvs-all-outgoing; Sun, 15 Mar 1998 23:57:32 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA23269; Sun, 15 Mar 1998 23:57:30 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA01599; Sun, 15 Mar 1998 23:57:23 -0800 (PST) Date: Sun, 15 Mar 1998 23:57:23 -0800 (PST) Message-Id: <199803160757.XAA01599@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/korean Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 23:57:22 PST Modified files: korean Makefile Log: Activate vim. Revision Changes Path 1.17 +2 -1 ports/korean/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 00:00:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA23537 for cvs-all-outgoing; Mon, 16 Mar 1998 00:00:00 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA23513; Sun, 15 Mar 1998 23:59:59 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA01642; Sun, 15 Mar 1998 23:59:52 -0800 (PST) Date: Sun, 15 Mar 1998 23:59:52 -0800 (PST) Message-Id: <199803160759.XAA01642@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/15 23:59:52 PST Modified files: . modules Log: ko-vim -> ports/korean/vim Revision Changes Path 1.1876 +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 Mar 16 01:22:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA03037 for cvs-all-outgoing; Mon, 16 Mar 1998 01:22:09 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA03032; Mon, 16 Mar 1998 01:22:08 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA01865; Mon, 16 Mar 1998 01:22:01 -0800 (PST) Date: Mon, 16 Mar 1998 01:22:01 -0800 (PST) Message-Id: <199803160922.BAA01865@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/stdio mktemp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/16 01:22:01 PST Modified files: (Branch: RELENG_2_2) lib/libc/stdio mktemp.c Log: MFC: El Bruce Fernando Maximillian Ernesto Supremo Evan's fixes in r1.9. Revision Changes Path 1.4.2.3 +6 -5 src/lib/libc/stdio/mktemp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 02:04:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA06650 for cvs-all-outgoing; Mon, 16 Mar 1998 02:04:26 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA06641; Mon, 16 Mar 1998 02:04:21 -0800 (PST) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA02056; Mon, 16 Mar 1998 02:04:14 -0800 (PST) Date: Mon, 16 Mar 1998 02:04:14 -0800 (PST) Message-Id: <199803161004.CAA02056@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/xlockmore Makefile ports/x11/xlockmore/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/03/16 02:04:13 PST Modified files: x11/xlockmore Makefile x11/xlockmore/files md5 Log: Upgrade to 4.08.2. Revision Changes Path 1.30 +3 -3 ports/x11/xlockmore/Makefile 1.19 +1 -1 ports/x11/xlockmore/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 02:07:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA06858 for cvs-all-outgoing; Mon, 16 Mar 1998 02:07:12 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA06851; Mon, 16 Mar 1998 02:07:10 -0800 (PST) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA02094; Mon, 16 Mar 1998 02:07:02 -0800 (PST) Date: Mon, 16 Mar 1998 02:07:02 -0800 (PST) Message-Id: <199803161007.CAA02094@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa clock.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/03/16 02:07:01 PST Modified files: sys/i386/isa clock.c Log: Be less draconian about the TSC if APM is configured, use it for timecounting if APM-BIOS isn't found. Be just as draconian about SMP as always, but explain it better. Revision Changes Path 1.117 +31 -8 src/sys/i386/isa/clock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 02:19:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA07738 for cvs-all-outgoing; Mon, 16 Mar 1998 02:19:25 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA07733; Mon, 16 Mar 1998 02:19:24 -0800 (PST) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA02145; Mon, 16 Mar 1998 02:19:17 -0800 (PST) Date: Mon, 16 Mar 1998 02:19:17 -0800 (PST) Message-Id: <199803161019.CAA02145@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern kern_clock.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/03/16 02:19:17 PST Modified files: sys/kern kern_clock.c Log: A bunch of BNN (Bruce Normal Nits) from bde: Bring back the softclock inlining save a couple of <<32's many white-space shuffles. Revision Changes Path 1.58 +92 -55 src/sys/kern/kern_clock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 02:27:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA08980 for cvs-all-outgoing; Mon, 16 Mar 1998 02:27:43 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA08974; Mon, 16 Mar 1998 02:27:41 -0800 (PST) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA02192; Mon, 16 Mar 1998 02:27:34 -0800 (PST) Date: Mon, 16 Mar 1998 02:27:34 -0800 (PST) Message-Id: <199803161027.CAA02192@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/security/bro Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/03/16 02:27:33 PST Modified files: security/bro Makefile Log: Author wishes that Bro not be distrbuted while in Alpha. Revision Changes Path 1.4 +16 -5 ports/security/bro/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 02:34:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA09781 for cvs-all-outgoing; Mon, 16 Mar 1998 02:34:43 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA09749; Mon, 16 Mar 1998 02:34:09 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: from dragon.nuxi.com (d60-090.leach.ucdavis.edu [169.237.60.90]) by relay.nuxi.com (8.8.7/8.6.12) with ESMTP id CAA08129; Mon, 16 Mar 1998 02:34:09 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.8.8/8.7.3) id KAA13322; Mon, 16 Mar 1998 10:34:08 GMT Message-ID: <19980316023408.22855@nuxi.com> Date: Mon, 16 Mar 1998 02:34:08 -0800 From: "David O'Brien" To: Joao Carlos Mendes Luis Cc: Mark Murray , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/misc/buffer Makefile ports/misc/buffer/files md5 ports/misc/buffer/patches patch-aa ports/misc/buffer/ Reply-To: obrien@NUXI.com References: <199803142101.NAA29977@freefall.freebsd.org> <199803142257.TAA07227@gaia.coppe.ufrj.br> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.88 In-Reply-To: <199803142257.TAA07227@gaia.coppe.ufrj.br>; from Joao Carlos Mendes Luis on Sat, Mar 14, 1998 at 07:57:54PM -0300 X-Warning: Mutt Bites! X-Operating-System: FreeBSD 2.2.5-STABLE Organization: The NUXI *BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > #define quoting(Mark Murray) > // Remove buffer. This port no longer fetches, and team is better. > The correct aproach would be to mark it BROKEN, and wait for the > maintainer or somebody else correct the situation. Actually, Mark is the maintainer. :) Possibly he should have sent mail to the ports mailing list to see if someone was will to adopt `buffer' and if not, nuke it. -- -- David (obrien@NUXI.com -or- obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 02:41:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA10346 for cvs-all-outgoing; Mon, 16 Mar 1998 02:41:54 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA10339; Mon, 16 Mar 1998 02:41:53 -0800 (PST) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA02276; Mon, 16 Mar 1998 02:41:45 -0800 (PST) Date: Mon, 16 Mar 1998 02:41:45 -0800 (PST) Message-Id: <199803161041.CAA02276@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports LEGAL Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/03/16 02:41:45 PST Modified files: . LEGAL Log: Don't distribute Bro until out of alpha/beta. Obtained from: Vern Paxson Revision Changes Path 1.102 +3 -1 ports/LEGAL To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 03:15:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA15035 for cvs-all-outgoing; Mon, 16 Mar 1998 03:15:57 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA15030; Mon, 16 Mar 1998 03:15:56 -0800 (PST) (envelope-from eivind@FreeBSD.org) From: Eivind Eklund Received: (from eivind@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA02528; Mon, 16 Mar 1998 03:15:49 -0800 (PST) Date: Mon, 16 Mar 1998 03:15:49 -0800 (PST) Message-Id: <199803161115.DAA02528@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/config mkmakefile.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk eivind 1998/03/16 03:15:48 PST Modified files: usr.sbin/config mkmakefile.c Log: Style & message change. Submitted by: bde Revision Changes Path 1.28 +10 -13 src/usr.sbin/config/mkmakefile.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 03:19:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA15466 for cvs-all-outgoing; Mon, 16 Mar 1998 03:19:20 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA15461; Mon, 16 Mar 1998 03:19:19 -0800 (PST) (envelope-from eivind@FreeBSD.org) From: Eivind Eklund Received: (from eivind@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA02567; Mon, 16 Mar 1998 03:19:12 -0800 (PST) Date: Mon, 16 Mar 1998 03:19:12 -0800 (PST) Message-Id: <199803161119.DAA02567@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/config main.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk eivind 1998/03/16 03:19:12 PST Modified files: usr.sbin/config main.c Log: Add message when using obsolete command line option. Suggested by: joerg Revision Changes Path 1.22 +3 -1 src/usr.sbin/config/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 Mar 16 03:46:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA18470 for cvs-all-outgoing; Mon, 16 Mar 1998 03:46:20 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA18463; Mon, 16 Mar 1998 03:46:19 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA02658; Mon, 16 Mar 1998 03:46:11 -0800 (PST) Date: Mon, 16 Mar 1998 03:46:11 -0800 (PST) Message-Id: <199803161146.DAA02658@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pcvt/Misc/Etc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/03/16 03:46:11 PST Modified files: usr.sbin/pcvt/Misc/Etc Makefile Log: Don't build an unused obj dir. Install all files in one step. De-bogotified the .includes. Revision Changes Path 1.2 +6 -7 src/usr.sbin/pcvt/Misc/Etc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 03:50:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA19143 for cvs-all-outgoing; Mon, 16 Mar 1998 03:50:55 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA19108; Mon, 16 Mar 1998 03:50:50 -0800 (PST) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA02704; Mon, 16 Mar 1998 03:50:42 -0800 (PST) Date: Mon, 16 Mar 1998 03:50:42 -0800 (PST) Message-Id: <199803161150.DAA02704@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/i386 autoconf.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/03/16 03:50:42 PST Modified files: sys/i386/i386 autoconf.c Log: Use dkmakeminor() rather than magic knowledge of the size and location of the slice field. Handle incomprehensible slice numbers slightly better. Suggested by: bde Revision Changes Path 1.90 +4 -4 src/sys/i386/i386/autoconf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 03:59:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA19836 for cvs-all-outgoing; Mon, 16 Mar 1998 03:59:01 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA19830; Mon, 16 Mar 1998 03:59:00 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA02756; Mon, 16 Mar 1998 03:58:52 -0800 (PST) Date: Mon, 16 Mar 1998 03:58:52 -0800 (PST) Message-Id: <199803161158.DAA02756@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-user@FreeBSD.ORG Subject: cvs commit: src Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/03/16 03:58:51 PST Modified files: . Makefile Log: Restored an (apparently unnecessary) -B for installing lib-tools. The install target is -j-unsafe in general, so we use -B for installing everything in `make world'. Revision Changes Path 1.166 +2 -2 src/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 04:08:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA22038 for cvs-all-outgoing; Mon, 16 Mar 1998 04:08:10 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA22033; Mon, 16 Mar 1998 04:08:09 -0800 (PST) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA02813; Mon, 16 Mar 1998 04:07:58 -0800 (PST) Date: Mon, 16 Mar 1998 04:07:58 -0800 (PST) Message-Id: <199803161207.EAA02813@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/i386 autoconf.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/03/16 04:07:57 PST Modified files: sys/i386/i386 autoconf.c Log: Spell 'compatibility' like everyone else. Revision Changes Path 1.91 +2 -2 src/sys/i386/i386/autoconf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 05:29:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA08699 for cvs-all-outgoing; Mon, 16 Mar 1998 05:29:20 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA08686; Mon, 16 Mar 1998 05:29:18 -0800 (PST) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA02923; Mon, 16 Mar 1998 05:29:09 -0800 (PST) Date: Mon, 16 Mar 1998 05:29:09 -0800 (PST) Message-Id: <199803161329.FAA02923@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/misc/xd - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/03/16 05:29:08 PST ports/misc/xd - Imported sources Update of /home/ncvs/ports/misc/xd In directory freefall.freebsd.org:/tmp/cvs-serv2913 Log Message: Import xd port. xd is a dump utility similar to hexdump with additional features, such as big endian, little endian and PDP format input. PR: 4788 Submitted by: Kazuhiko Kiriyama Status: Vendor Tag: KIRI Release Tags: xd_2_3 N ports/misc/xd/Makefile N ports/misc/xd/files/md5 N ports/misc/xd/patches/patch-aa N ports/misc/xd/pkg/COMMENT N ports/misc/xd/pkg/DESCR N ports/misc/xd/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 05:31:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA09183 for cvs-all-outgoing; Mon, 16 Mar 1998 05:31:49 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA09169; Mon, 16 Mar 1998 05:31:46 -0800 (PST) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA02976; Mon, 16 Mar 1998 05:31:37 -0800 (PST) Date: Mon, 16 Mar 1998 05:31:37 -0800 (PST) Message-Id: <199803161331.FAA02976@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/03/16 05:31:37 PST Modified files: . modules Log: xd --> ports/misc/xd Revision Changes Path 1.1877 +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 Mar 16 05:32:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA09573 for cvs-all-outgoing; Mon, 16 Mar 1998 05:32:53 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA09561; Mon, 16 Mar 1998 05:32:52 -0800 (PST) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA03040; Mon, 16 Mar 1998 05:32:44 -0800 (PST) Date: Mon, 16 Mar 1998 05:32:44 -0800 (PST) Message-Id: <199803161332.FAA03040@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/misc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/03/16 05:32:43 PST Modified files: misc Makefile Log: Activate xd. Revision Changes Path 1.135 +2 -1 ports/misc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 06:08:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA20263 for cvs-all-outgoing; Mon, 16 Mar 1998 06:08:30 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA20256; Mon, 16 Mar 1998 06:08:28 -0800 (PST) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA03161; Mon, 16 Mar 1998 06:08:20 -0800 (PST) Date: Mon, 16 Mar 1998 06:08:20 -0800 (PST) Message-Id: <199803161408.GAA03161@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/editors/le - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/03/16 06:08:20 PST ports/editors/le - Imported sources Update of /home/ncvs/ports/editors/le In directory freefall.freebsd.org:/tmp/cvs-serv3152 Log Message: Import le port. le is a text editor with many block operations with stream and rectangular blocks, can edit both unix and dos style files (LF/CRLF), is binary clean, has hex mode, can edit large files and mmap'pable devices in MAP_SHARED mode, has tunable syntax highlighting, tunable color scheme (can use default colors), tunable key map. PR: 4777 Submitted by: Andrey Zakhvatov Status: Vendor Tag: ANDY Release Tags: le_1_4_2 N ports/editors/le/Makefile N ports/editors/le/files/md5 N ports/editors/le/pkg/PLIST N ports/editors/le/pkg/COMMENT N ports/editors/le/pkg/DESCR No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 06:10:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA20898 for cvs-all-outgoing; Mon, 16 Mar 1998 06:10:37 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA20890; Mon, 16 Mar 1998 06:10:35 -0800 (PST) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA03205; Mon, 16 Mar 1998 06:10:25 -0800 (PST) Date: Mon, 16 Mar 1998 06:10:25 -0800 (PST) Message-Id: <199803161410.GAA03205@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/editors Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/03/16 06:10:25 PST Modified files: editors Makefile Log: Activate le. Revision Changes Path 1.49 +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 Mon Mar 16 06:11:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA21102 for cvs-all-outgoing; Mon, 16 Mar 1998 06:11:23 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA21096; Mon, 16 Mar 1998 06:11:21 -0800 (PST) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA03241; Mon, 16 Mar 1998 06:11:12 -0800 (PST) Date: Mon, 16 Mar 1998 06:11:12 -0800 (PST) Message-Id: <199803161411.GAA03241@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/03/16 06:11:12 PST Modified files: . modules Log: le --> ports/editors/le Revision Changes Path 1.1878 +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 Mar 16 06:33:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA23257 for cvs-all-outgoing; Mon, 16 Mar 1998 06:33:31 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA23252; Mon, 16 Mar 1998 06:33:30 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA03378; Mon, 16 Mar 1998 06:33:21 -0800 (PST) Date: Mon, 16 Mar 1998 06:33:21 -0800 (PST) Message-Id: <199803161433.GAA03378@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall devices.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/16 06:33:21 PST Modified files: release/sysinstall devices.c Log: 1. If device node already exists, don't gratuituously try to make it again. 2. Don't create slice entries when running multi-user; it adds far too much to sysinstall's startup time. User is expected to have correct slice entries after system is installed. Revision Changes Path 1.72 +5 -2 src/release/sysinstall/devices.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 06:33:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA23301 for cvs-all-outgoing; Mon, 16 Mar 1998 06:33:48 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA23294; Mon, 16 Mar 1998 06:33:47 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA03412; Mon, 16 Mar 1998 06:33:38 -0800 (PST) Date: Mon, 16 Mar 1998 06:33:38 -0800 (PST) Message-Id: <199803161433.GAA03412@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall devices.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/16 06:33:38 PST Modified files: (Branch: RELENG_2_2) release/sysinstall devices.c Log: MFC: 1.72 Revision Changes Path 1.49.2.17 +5 -2 src/release/sysinstall/devices.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 06:41:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA24449 for cvs-all-outgoing; Mon, 16 Mar 1998 06:41:11 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA24443; Mon, 16 Mar 1998 06:41:09 -0800 (PST) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA03452; Mon, 16 Mar 1998 06:41:01 -0800 (PST) Date: Mon, 16 Mar 1998 06:41:01 -0800 (PST) Message-Id: <199803161441.GAA03452@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/netscape4-navigator Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/03/16 06:41:01 PST Modified files: www/netscape4-navigator Makefile Log: Fix for the case where a macro is not defined at all. Found by: jkh Revision Changes Path 1.17 +4 -3 ports/www/netscape4-navigator/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 06:49:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA26545 for cvs-all-outgoing; Mon, 16 Mar 1998 06:49:07 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA26492; Mon, 16 Mar 1998 06:49:04 -0800 (PST) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA03546; Mon, 16 Mar 1998 06:48:55 -0800 (PST) Date: Mon, 16 Mar 1998 06:48:55 -0800 (PST) Message-Id: <199803161448.GAA03546@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/netscape4-navigator Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/03/16 06:48:55 PST Modified files: www/netscape4-navigator Makefile Log: Drat. Missed a broken .ifdef Revision Changes Path 1.18 +2 -2 ports/www/netscape4-navigator/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 07:05:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA28405 for cvs-all-outgoing; Mon, 16 Mar 1998 07:05:15 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA28399; Mon, 16 Mar 1998 07:05:14 -0800 (PST) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA03624; Mon, 16 Mar 1998 07:05:05 -0800 (PST) Date: Mon, 16 Mar 1998 07:05:05 -0800 (PST) Message-Id: <199803161505.HAA03624@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/netscape4-communicator Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/03/16 07:05:04 PST Modified files: www/netscape4-communicator Makefile Log: Fix for the case where USA_RESIDENT is not defined Revision Changes Path 1.16 +5 -4 ports/www/netscape4-communicator/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 07:08:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA28672 for cvs-all-outgoing; Mon, 16 Mar 1998 07:08:03 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA28644; Mon, 16 Mar 1998 07:08:00 -0800 (PST) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA03657; Mon, 16 Mar 1998 07:07:51 -0800 (PST) Date: Mon, 16 Mar 1998 07:07:51 -0800 (PST) Message-Id: <199803161507.HAA03657@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/libexec/uucp/uulog uulog.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1998/03/16 07:07:51 PST Modified files: gnu/libexec/uucp/uulog uulog.1 Log: This is uulog.1, not uuname.1. PR: docs/5980 Revision Changes Path 1.2 +2 -2 src/gnu/libexec/uucp/uulog/uulog.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 07:12:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA29035 for cvs-all-outgoing; Mon, 16 Mar 1998 07:12:04 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA28972; Mon, 16 Mar 1998 07:12:00 -0800 (PST) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA03726; Mon, 16 Mar 1998 07:11:51 -0800 (PST) Date: Mon, 16 Mar 1998 07:11:51 -0800 (PST) Message-Id: <199803161511.HAA03726@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/libexec/uucp/uulog uulog.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1998/03/16 07:11:50 PST Modified files: (Branch: RELENG_2_2) gnu/libexec/uucp/uulog uulog.1 Log: MFC: this is uulog.1, not uuname.1 Revision Changes Path 1.1.2.1 +2 -2 src/gnu/libexec/uucp/uulog/uulog.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 07:19:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA29637 for cvs-all-outgoing; Mon, 16 Mar 1998 07:19:08 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA29632; Mon, 16 Mar 1998 07:19:06 -0800 (PST) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA03846; Mon, 16 Mar 1998 07:18:57 -0800 (PST) Date: Mon, 16 Mar 1998 07:18:57 -0800 (PST) Message-Id: <199803161518.HAA03846@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data support.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1998/03/16 07:18:57 PST Modified files: data support.sgml Log: Link to the official HURD pages, which exist, now. Revision Changes Path 1.48 +3 -3 www/data/support.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 07:32:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA01595 for cvs-all-outgoing; Mon, 16 Mar 1998 07:32:16 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mb101.infoweb.or.jp (mb101.infoweb.or.jp [202.248.2.76]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA01414; Mon, 16 Mar 1998 07:31:46 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from bubble.didi.com by mb101.infoweb.or.jp (8.8.7+2.7Wbeta7/3.6Wbeta6-09/12/97) id AAA14836; Tue, 17 Mar 1998 00:31:43 +0900 Received: (from asami@localhost) by bubble.didi.com (8.8.7/8.8.8) id AAA01897; Tue, 17 Mar 1998 00:07:31 +0900 (JST) (envelope-from asami) Date: Tue, 17 Mar 1998 00:07:31 +0900 (JST) Message-Id: <199803161507.AAA01897@bubble.didi.com> To: jkh@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG In-reply-to: <199803160922.BAA01865@freefall.freebsd.org> (jkh@FreeBSD.ORG) Subject: Re: cvs commit: src/lib/libc/stdio mktemp.c From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * MFC: El Bruce Fernando Maximillian Ernesto Supremo Evan's fixes in r1.9. So the `d' of `bde' stands for fernanDo? Didn't know that. :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 07:37:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA02983 for cvs-all-outgoing; Mon, 16 Mar 1998 07:37:42 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA02948; Mon, 16 Mar 1998 07:37:35 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id HAA20286; Mon, 16 Mar 1998 07:36:26 -0800 (PST) (envelope-from jkh@time.cdrom.com) To: asami@FreeBSD.ORG (Satoshi Asami) cc: jkh@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libc/stdio mktemp.c In-reply-to: Your message of "Tue, 17 Mar 1998 00:07:31 +0900." <199803161507.AAA01897@bubble.didi.com> Date: Mon, 16 Mar 1998 07:36:26 -0800 Message-ID: <20281.890062586@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > * MFC: El Bruce Fernando Maximillian Ernesto Supremo Evan's fixes in r1.9. > > So the `d' of `bde' stands for fernanDo? Didn't know that. :) Actually, it stands for "Del" as in: El Bruce Del Fernando Maximillian Ernesto Supremo Evans But I screwed up and left that out, along with the "Maximo" which goes in-between Ernesto and Supremo. Those damn spanish nobility names always mix me up! Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 07:38:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA03436 for cvs-all-outgoing; Mon, 16 Mar 1998 07:38:55 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA03418; Mon, 16 Mar 1998 07:38:47 -0800 (PST) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA26403; Mon, 16 Mar 1998 07:38:38 -0800 (PST) Date: Mon, 16 Mar 1998 07:38:38 -0800 (PST) Message-Id: <199803161538.HAA26403@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/netscape3 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/03/16 07:38:37 PST Modified files: www/netscape3 Makefile Log: Fix for the case where USA_RESIDENT is not defined. Revision Changes Path 1.21 +5 -4 ports/www/netscape3/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 10:00:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA21713 for cvs-all-outgoing; Mon, 16 Mar 1998 10:00:37 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA21674; Mon, 16 Mar 1998 10:00:31 -0800 (PST) (envelope-from eivind@FreeBSD.org) From: Eivind Eklund Received: (from eivind@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA26658; Mon, 16 Mar 1998 10:00:21 -0800 (PST) Date: Mon, 16 Mar 1998 10:00:21 -0800 (PST) Message-Id: <199803161800.KAA26658@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/sys intro.2 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk eivind 1998/03/16 10:00:20 PST Modified files: lib/libc/sys intro.2 Log: -> Revision Changes Path 1.13 +1 -1 src/lib/libc/sys/intro.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 10:01:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA22148 for cvs-all-outgoing; Mon, 16 Mar 1998 10:01:30 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.133]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA21985; Mon, 16 Mar 1998 10:01:07 -0800 (PST) (envelope-from mark@greenpeace.grondar.za) Received: from greenpeace.grondar.za (greenpeace.grondar.za [196.7.18.132]) by gratis.grondar.za (8.8.8/8.8.8) with ESMTP id UAA21706; Mon, 16 Mar 1998 20:00:43 +0200 (SAST) (envelope-from mark@greenpeace.grondar.za) Received: from greenpeace.grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.za (8.8.8/8.8.8) with ESMTP id UAA00374; Mon, 16 Mar 1998 20:00:41 +0200 (SAST) (envelope-from mark@greenpeace.grondar.za) Message-Id: <199803161800.UAA00374@greenpeace.grondar.za> To: asami@FreeBSD.ORG cc: committers@FreeBSD.ORG Date: Mon, 16 Mar 1998 20:00:36 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Hi Satoshi IIRC, you did the buildworld/installworld work, replacing the old one, right? Having /usr/include/kerberosIV/* in a RELENG_2_2 system when upgrading to 2.2.6-BETA is dangerous. Kerberos bits get found there when they are not supposed to be and so forth. 2.2.6BETA and beyond do not have this directory. Where would an appropriate place be to warn the user who has CVSUPped that this should be blatted? Is it OK to do it at "make hierarchy" time? M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 10:40:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA11344 for cvs-all-outgoing; Mon, 16 Mar 1998 10:40:00 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA11309; Mon, 16 Mar 1998 10:39:52 -0800 (PST) (envelope-from julian@FreeBSD.org) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA26747; Mon, 16 Mar 1998 10:39:42 -0800 (PST) Date: Mon, 16 Mar 1998 10:39:42 -0800 (PST) Message-Id: <199803161839.KAA26747@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern vfs_cluster.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk julian 1998/03/16 10:39:41 PST Modified files: sys/kern vfs_cluster.c Log: Remove a soft-update hook that was accidentally added to the READ path. also add some comments, and a couple of very minor cosmetic changes. Revision Changes Path 1.59 +53 -26 src/sys/kern/vfs_cluster.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 11:24:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA25806 for cvs-all-outgoing; Mon, 16 Mar 1998 11:24:48 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from news1.gtn.com (news1.gtn.com [192.109.159.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA25527; Mon, 16 Mar 1998 11:24:08 -0800 (PST) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by news1.gtn.com (8.8.6/8.8.6) with UUCP id TAA29519; Mon, 16 Mar 1998 19:15:10 +0100 (MET) Received: (from andreas@localhost) by klemm.gtn.com (8.8.8/8.8.7) id SAA03382; Mon, 16 Mar 1998 18:05:33 +0100 (CET) (envelope-from andreas) Message-ID: <19980316180533.22042@klemm.gtn.com> Date: Mon, 16 Mar 1998 18:05:33 +0100 From: Andreas Klemm To: Jean-Marc Zucconi , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/x11/XFree86/scripts configure References: <199803152348.PAA27641@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <199803152348.PAA27641@freefall.freebsd.org>; from Jean-Marc Zucconi on Sun, Mar 15, 1998 at 03:48:18PM -0800 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, Mar 15, 1998 at 03:48:18PM -0800, Jean-Marc Zucconi wrote: > jmz 1998/03/15 15:48:18 PST > > Modified files: > x11/XFree86/scripts configure > Log: > Built XF86Setup only if tk4.2/tcl7.6 is there. Other versions do not seem to > work. And tk4.2 can only be build if X11R6 is up and running ;-) So if you have a new machine and want to compile everything yourself, then your first X11R6 installation will be without XF86Setup or you have to install tk4.2 as package prior building X11R6. I trapped into this some weeks ago... -- Andreas Klemm http://www.FreeBSD.ORG/~andreas powered by ,,symmetric multiprocessor FreeBSD'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 12:13:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA09155 for cvs-all-outgoing; Mon, 16 Mar 1998 12:13:07 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA09110; Mon, 16 Mar 1998 12:13:00 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: from dragon.nuxi.com (d60-090.leach.ucdavis.edu [169.237.60.90]) by relay.nuxi.com (8.8.7/8.6.12) with ESMTP id MAA10838; Mon, 16 Mar 1998 12:12:17 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.8.8/8.7.3) id UAA17134; Mon, 16 Mar 1998 20:12:13 GMT Message-ID: <19980316121213.28949@nuxi.com> Date: Mon, 16 Mar 1998 12:12:13 -0800 From: "David O'Brien" To: Satoshi Asami Cc: chuckr@glue.umd.edu, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/print/c2ps Makefile Reply-To: obrien@NUXI.com References: <19980227180117.46003@nuxi.com> <199802280210.SAA19632@vader.cs.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.88 In-Reply-To: <199802280210.SAA19632@vader.cs.berkeley.edu>; from Satoshi Asami on Fri, Feb 27, 1998 at 06:10:54PM -0800 X-Warning: Mutt Bites! X-Operating-System: FreeBSD 2.2.5-STABLE Organization: The NUXI *BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk WRT building both A4 and US-letter packages of all the print utilities, did we come to a conclusion? -- -- David (obrien@NUXI.com -or- obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 12:44:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA18284 for cvs-all-outgoing; Mon, 16 Mar 1998 12:44:08 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from cabri.obs-besancon.fr (cabri.obs-besancon.fr [193.52.184.3]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id MAA18139; Mon, 16 Mar 1998 12:43:53 -0800 (PST) (envelope-from jmz@cabri.obs-besancon.fr) Received: by cabri.obs-besancon.fr (5.57/Ultrix3.0-C) id AA25867; Mon, 16 Mar 98 21:46:20 +0100 Date: Mon, 16 Mar 98 21:46:20 +0100 Message-Id: <9803162046.AA25867@cabri.obs-besancon.fr> From: Jean-Marc Zucconi To: andreas@klemm.gtn.com Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-Reply-To: <19980316180533.22042@klemm.gtn.com> (message from Andreas Klemm on Mon, 16 Mar 1998 18:05:33 +0100) Subject: Re: cvs commit: ports/x11/XFree86/scripts configure X-Mailer: Emacs Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >>>>> Andreas Klemm writes: > And tk4.2 can only be build if X11R6 is up and running ;-) > So if you have a new machine and want to compile everything yourself, > then your first X11R6 installation will be without XF86Setup > or you have to install tk4.2 as package prior building X11R6. > I trapped into this some weeks ago... So you want that tcl/tk be included in the standard X11R6 distribution? :-) Jean-Marc _____________________________________________________________________________ Jean-Marc Zucconi Observatoire de Besancon F 25010 Besancon cedex PGP Key: finger jmz@cabri.obs-besancon.fr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 12:50:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA19698 for cvs-all-outgoing; Mon, 16 Mar 1998 12:50:04 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from news1.gtn.com (news1.gtn.com [192.109.159.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA19583; Mon, 16 Mar 1998 12:49:38 -0800 (PST) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by news1.gtn.com (8.8.6/8.8.6) with UUCP id UAA21017; Mon, 16 Mar 1998 20:15:11 +0100 (MET) Received: (from andreas@localhost) by klemm.gtn.com (8.8.8/8.8.7) id TAA06482; Mon, 16 Mar 1998 19:22:23 +0100 (CET) (envelope-from andreas) Message-ID: <19980316192223.52923@klemm.gtn.com> Date: Mon, 16 Mar 1998 19:22:23 +0100 From: Andreas Klemm To: Steve Price , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/databases/mysql Makefile ports/databases/mysql/files md5 ports/databases/mysql/patches patch-ac patch-ad patch-aa patch-ab ports/databases/mysql/pkg PLIST References: <199803160246.SAA28594@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <199803160246.SAA28594@freefall.freebsd.org>; from Steve Price on Sun, Mar 15, 1998 at 06:46:45PM -0800 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, Mar 15, 1998 at 06:46:45PM -0800, Steve Price wrote: > steve 1998/03/15 18:46:44 PST > > Modified files: > databases/mysql Makefile > databases/mysql/files md5 > databases/mysql/patches patch-aa patch-ab > databases/mysql/pkg PLIST > Added files: > databases/mysql/patches patch-ac patch-ad > Log: > Upgrade to version 3.21.25g-gamma. Ah, let's try this ... the previous version dumped core (signal 11) on startup on a -current system (on every boot). -- Andreas Klemm http://www.FreeBSD.ORG/~andreas powered by ,,symmetric multiprocessor FreeBSD'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 13:17:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA26238 for cvs-all-outgoing; Mon, 16 Mar 1998 13:17:52 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA26181; Mon, 16 Mar 1998 13:17:44 -0800 (PST) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA27076; Mon, 16 Mar 1998 13:17:30 -0800 (PST) Date: Mon, 16 Mar 1998 13:17:30 -0800 (PST) Message-Id: <199803162117.NAA27076@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/textproc/catdoc Makefile ports/textproc/catdoc/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1998/03/16 13:17:30 PST Modified files: textproc/catdoc Makefile textproc/catdoc/files md5 Log: Don't use wcarchive's auto-tar and use DIST_SUBDIR instead. PR: ports/5832 Revision Changes Path 1.3 +13 -9 ports/textproc/catdoc/Makefile 1.2 +3 -1 ports/textproc/catdoc/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 13:24:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA28527 for cvs-all-outgoing; Mon, 16 Mar 1998 13:24:31 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ppp6573.on.bellglobal.com (ppp1572.on.bellglobal.com [206.172.249.36]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA28301; Mon, 16 Mar 1998 13:23:50 -0800 (PST) (envelope-from ac199@hwcn.org) Received: from localhost (tim@localhost) by ppp6573.on.bellglobal.com (8.8.8/8.8.8) with SMTP id QAA02507; Mon, 16 Mar 1998 16:22:10 -0500 (EST) (envelope-from ac199@hwcn.org) X-Authentication-Warning: ppp6573.on.bellglobal.com: tim owned process doing -bs Date: Mon, 16 Mar 1998 16:22:09 -0500 (EST) From: Tim Vanderhoek X-Sender: tim@ppp6573.on.bellglobal.com Reply-To: ac199@hwcn.org To: "David O'Brien" cc: Satoshi Asami , chuckr@glue.umd.edu, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/print/c2ps Makefile In-Reply-To: <19980316121213.28949@nuxi.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Mon, 16 Mar 1998, David O'Brien wrote: > WRT building both A4 and US-letter packages of all the print utilities, > did we come to a conclusion? I saved all the important messages in my INBOX with the intention of coming to a personal conclusion in the even that no one else did, after a suitable period of time. :-) -- tIM...HOEk OPTIMIZATION: the process of using many one-letter variables names hoping that the resultant code will run faster. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 13:25:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA28833 for cvs-all-outgoing; Mon, 16 Mar 1998 13:25:41 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.133]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA28642; Mon, 16 Mar 1998 13:24:57 -0800 (PST) (envelope-from mark@greenpeace.grondar.za) Received: from greenpeace.grondar.za (greenpeace.grondar.za [196.7.18.132]) by gratis.grondar.za (8.8.8/8.8.8) with ESMTP id XAA22153; Mon, 16 Mar 1998 23:24:50 +0200 (SAST) (envelope-from mark@greenpeace.grondar.za) Received: from greenpeace.grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.za (8.8.8/8.8.8) with ESMTP id XAA00414; Mon, 16 Mar 1998 23:24:45 +0200 (SAST) (envelope-from mark@greenpeace.grondar.za) Message-Id: <199803162124.XAA00414@greenpeace.grondar.za> To: Jean-Marc Zucconi cc: andreas@klemm.gtn.com, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/x11/XFree86/scripts configure Date: Mon, 16 Mar 1998 23:24:44 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Jean-Marc Zucconi wrote: > So you want that tcl/tk be included in the standard X11R6 distribution? :-) Hehehe! On a releated note, is anyone (else) doing stuff to make tk8x/tcl8x work with XF86Config? I have some preliminary stuff, but it breaks at the link stage. WTF knows why - I'll work on it some more. M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 13:53:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA05243 for cvs-all-outgoing; Mon, 16 Mar 1998 13:53:23 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from cabri.obs-besancon.fr (cabri.obs-besancon.fr [193.52.184.3]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id NAA05220; Mon, 16 Mar 1998 13:53:17 -0800 (PST) (envelope-from jmz@cabri.obs-besancon.fr) Received: by cabri.obs-besancon.fr (5.57/Ultrix3.0-C) id AA26208; Mon, 16 Mar 98 22:56:51 +0100 Date: Mon, 16 Mar 98 22:56:51 +0100 Message-Id: <9803162156.AA26208@cabri.obs-besancon.fr> From: Jean-Marc Zucconi To: mark@grondar.za Cc: andreas@klemm.gtn.com, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-Reply-To: <199803162124.XAA00414@greenpeace.grondar.za> (message from Mark Murray on Mon, 16 Mar 1998 23:24:44 +0200) Subject: Re: cvs commit: ports/x11/XFree86/scripts configure X-Mailer: Emacs Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >>>>> Mark Murray writes: > On a releated note, is anyone (else) doing stuff to make tk8x/tcl8x work > with XF86Config? I have some preliminary stuff, but it breaks at the > link stage. WTF knows why - I'll work on it some more. There are 2 problems with tk8x/tcl8x: 1 - the ports don't build the static libs (the .a files that come with the port contain garbage - the porter was probably joking when he added static libs :-)). I have a fix for this, and will commit it soon. 2 - XF86Setup core dumps when compiled with version 8.1. However it works well with 8.0 Jean-Marc _____________________________________________________________________________ Jean-Marc Zucconi Observatoire de Besancon F 25010 Besancon cedex PGP Key: finger jmz@cabri.obs-besancon.fr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 14:15:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA10880 for cvs-all-outgoing; Mon, 16 Mar 1998 14:15:48 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA10839; Mon, 16 Mar 1998 14:15:45 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA27227; Mon, 16 Mar 1998 14:15:33 -0800 (PST) Date: Mon, 16 Mar 1998 14:15:33 -0800 (PST) Message-Id: <199803162215.OAA27227@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/biology/kinemage Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/03/16 14:15:33 PST Modified files: biology/kinemage Makefile Log: Add linux_lib DEPEND lines. PR: 5816 Submitted by: frankch@waru.life.nthu.edu.tw Revision Changes Path 1.2 +4 -1 ports/biology/kinemage/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 14:29:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA14468 for cvs-all-outgoing; Mon, 16 Mar 1998 14:29:03 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA14450; Mon, 16 Mar 1998 14:29:01 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA27295; Mon, 16 Mar 1998 14:28:50 -0800 (PST) Date: Mon, 16 Mar 1998 14:28:50 -0800 (PST) Message-Id: <199803162228.OAA27295@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/03/16 14:28:50 PST Modified files: . modules Log: ftpfind --> ports/net/ftpfind Revision Changes Path 1.1879 +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 Mar 16 14:30:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA14814 for cvs-all-outgoing; Mon, 16 Mar 1998 14:30:36 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA14808; Mon, 16 Mar 1998 14:30:31 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA27317; Mon, 16 Mar 1998 14:30:19 -0800 (PST) Date: Mon, 16 Mar 1998 14:30:19 -0800 (PST) Message-Id: <199803162230.OAA27317@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/ftpfind - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/03/16 14:30:19 PST ports/net/ftpfind - Imported sources Update of /home/ncvs/ports/net/ftpfind In directory freefall.freebsd.org:/c/users/jseger/ftpfind Log Message: Import of ftpfind 0.92: find directory&file on a ftp server PR: 5833 Submitted by: wub@green.an.egg.or.jp Status: Vendor Tag: WUB Release Tags: v0_92 N ports/net/ftpfind/Makefile I ports/net/ftpfind/CVS N ports/net/ftpfind/files/md5 N ports/net/ftpfind/pkg/COMMENT N ports/net/ftpfind/pkg/DESCR N ports/net/ftpfind/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 14:46:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA18468 for cvs-all-outgoing; Mon, 16 Mar 1998 14:46:50 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA18462; Mon, 16 Mar 1998 14:46:47 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA27450; Mon, 16 Mar 1998 14:46:36 -0800 (PST) Date: Mon, 16 Mar 1998 14:46:36 -0800 (PST) Message-Id: <199803162246.OAA27450@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/03/16 14:46:36 PST Modified files: net Makefile Log: Activate ftpfind. Revision Changes Path 1.148 +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 Mon Mar 16 14:53:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA19822 for cvs-all-outgoing; Mon, 16 Mar 1998 14:53:28 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA19786; Mon, 16 Mar 1998 14:53:15 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA27654; Mon, 16 Mar 1998 14:53:00 -0800 (PST) Date: Mon, 16 Mar 1998 14:53:00 -0800 (PST) Message-Id: <199803162253.OAA27654@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp arp.c auth.c bundle.c bundle.h ccp.c chap.c command.c datalink.c filter.c filter.h fsm.c hdlc.c ip.c ip.h ipcp.c lcp.c link.c lqr.c main.c modem.c pap.c physical.c ppp.8 prompt.c route.c tun.c vjcomp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/03/16 14:53:00 PST Modified files: (Branch: MP) usr.sbin/ppp arp.c auth.c bundle.c bundle.h ccp.c chap.c command.c datalink.c filter.c filter.h fsm.c hdlc.c ip.c ip.h ipcp.c lcp.c link.c lqr.c main.c modem.c pap.c physical.c ppp.8 prompt.c route.c tun.c vjcomp.c Log: Move filter sets into struct bundle. Revision Changes Path 1.27.2.7 +2 -1 src/usr.sbin/ppp/arp.c 1.27.2.14 +2 -1 src/usr.sbin/ppp/auth.c 1.1.2.26 +11 -1 src/usr.sbin/ppp/Attic/bundle.c 1.1.2.17 +10 -1 src/usr.sbin/ppp/Attic/bundle.h 1.30.2.22 +2 -1 src/usr.sbin/ppp/ccp.c 1.28.2.17 +2 -1 src/usr.sbin/ppp/chap.c 1.131.2.39 +6 -18 src/usr.sbin/ppp/command.c 1.1.2.23 +2 -1 src/usr.sbin/ppp/Attic/datalink.c 1.22.2.8 +92 -102 src/usr.sbin/ppp/filter.c 1.11.2.2 +11 -15 src/usr.sbin/ppp/filter.h 1.27.2.21 +2 -1 src/usr.sbin/ppp/fsm.c 1.28.2.20 +2 -1 src/usr.sbin/ppp/hdlc.c 1.38.2.13 +19 -21 src/usr.sbin/ppp/ip.c 1.8.2.6 +4 -2 src/usr.sbin/ppp/ip.h 1.50.2.23 +2 -2 src/usr.sbin/ppp/ipcp.c 1.55.2.29 +2 -1 src/usr.sbin/ppp/lcp.c 1.1.2.12 +2 -1 src/usr.sbin/ppp/Attic/link.c 1.22.2.13 +2 -1 src/usr.sbin/ppp/lqr.c 1.121.2.33 +5 -5 src/usr.sbin/ppp/main.c 1.77.2.36 +2 -1 src/usr.sbin/ppp/modem.c 1.20.2.18 +2 -1 src/usr.sbin/ppp/pap.c 1.1.2.17 +2 -1 src/usr.sbin/ppp/Attic/physical.c 1.97.2.5 +57 -31 src/usr.sbin/ppp/ppp.8 1.1.2.13 +2 -1 src/usr.sbin/ppp/Attic/prompt.c 1.42.2.11 +2 -1 src/usr.sbin/ppp/route.c 1.6.4.7 +2 -1 src/usr.sbin/ppp/tun.c 1.16.2.8 +2 -1 src/usr.sbin/ppp/vjcomp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 14:53:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA19880 for cvs-all-outgoing; Mon, 16 Mar 1998 14:53:44 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA19837; Mon, 16 Mar 1998 14:53:33 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA27714; Mon, 16 Mar 1998 14:53:19 -0800 (PST) Date: Mon, 16 Mar 1998 14:53:19 -0800 (PST) Message-Id: <199803162253.OAA27714@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c bundle.h chap_ms.c main.c main.h prompt.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/03/16 14:53:19 PST Modified files: (Branch: MP) usr.sbin/ppp bundle.c bundle.h chap_ms.c main.c main.h prompt.c Log: Move `CleaningUp' into struct bundle. Revision Changes Path 1.1.2.27 +5 -4 src/usr.sbin/ppp/Attic/bundle.c 1.1.2.18 +3 -2 src/usr.sbin/ppp/Attic/bundle.h 1.5.4.1 +3 -3 src/usr.sbin/ppp/chap_ms.c 1.121.2.34 +4 -5 src/usr.sbin/ppp/main.c 1.9.2.8 +1 -3 src/usr.sbin/ppp/main.h 1.1.2.14 +2 -2 src/usr.sbin/ppp/Attic/prompt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 14:54:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA20207 for cvs-all-outgoing; Mon, 16 Mar 1998 14:54:54 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA20196; Mon, 16 Mar 1998 14:54:51 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA27900; Mon, 16 Mar 1998 14:54:40 -0800 (PST) Date: Mon, 16 Mar 1998 14:54:40 -0800 (PST) Message-Id: <199803162254.OAA27900@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp arp.c auth.c bundle.c ccp.c chap.c command.c datalink.c filter.c fsm.c hdlc.c ip.c ipcp.c ipcp.h lcp.c link.c lqr.c main.c modem.c pap.c physical.c prompt.c route.c slcompress.c slcompress.h tun.c vjcomp.c vjcomp.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/03/16 14:54:40 PST Modified files: (Branch: MP) usr.sbin/ppp arp.c auth.c bundle.c ccp.c chap.c command.c datalink.c filter.c fsm.c hdlc.c ip.c ipcp.c ipcp.h lcp.c link.c lqr.c main.c modem.c pap.c physical.c prompt.c route.c slcompress.c slcompress.h tun.c vjcomp.c vjcomp.h Log: Move VJ compression state and stats into struct ipcp. Revision Changes Path 1.27.2.8 +4 -1 src/usr.sbin/ppp/arp.c 1.27.2.15 +4 -1 src/usr.sbin/ppp/auth.c 1.1.2.28 +4 -1 src/usr.sbin/ppp/Attic/bundle.c 1.30.2.23 +4 -1 src/usr.sbin/ppp/ccp.c 1.28.2.18 +4 -1 src/usr.sbin/ppp/chap.c 1.131.2.40 +2 -2 src/usr.sbin/ppp/command.c 1.1.2.24 +4 -1 src/usr.sbin/ppp/Attic/datalink.c 1.22.2.9 +4 -1 src/usr.sbin/ppp/filter.c 1.27.2.22 +4 -1 src/usr.sbin/ppp/fsm.c 1.28.2.21 +5 -2 src/usr.sbin/ppp/hdlc.c 1.38.2.14 +2 -1 src/usr.sbin/ppp/ip.c 1.50.2.24 +6 -4 src/usr.sbin/ppp/ipcp.c 1.18.2.17 +7 -1 src/usr.sbin/ppp/ipcp.h 1.55.2.30 +4 -1 src/usr.sbin/ppp/lcp.c 1.1.2.13 +4 -1 src/usr.sbin/ppp/Attic/link.c 1.22.2.14 +4 -1 src/usr.sbin/ppp/lqr.c 1.121.2.35 +2 -1 src/usr.sbin/ppp/main.c 1.77.2.37 +4 -1 src/usr.sbin/ppp/modem.c 1.20.2.19 +4 -1 src/usr.sbin/ppp/pap.c 1.1.2.18 +6 -1 src/usr.sbin/ppp/Attic/physical.c 1.1.2.15 +4 -1 src/usr.sbin/ppp/Attic/prompt.c 1.42.2.12 +4 -1 src/usr.sbin/ppp/route.c 1.15.2.3 +42 -44 src/usr.sbin/ppp/slcompress.c 1.10.2.3 +17 -5 src/usr.sbin/ppp/slcompress.h 1.6.4.8 +4 -1 src/usr.sbin/ppp/tun.c 1.16.2.9 +9 -15 src/usr.sbin/ppp/vjcomp.c 1.5.4.4 +2 -3 src/usr.sbin/ppp/vjcomp.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 15:04:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA22082 for cvs-all-outgoing; Mon, 16 Mar 1998 15:04:23 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA22061; Mon, 16 Mar 1998 15:04:21 -0800 (PST) (envelope-from eivind@FreeBSD.org) From: Eivind Eklund Received: (from eivind@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA27962; Mon, 16 Mar 1998 15:04:10 -0800 (PST) Date: Mon, 16 Mar 1998 15:04:10 -0800 (PST) Message-Id: <199803162304.PAA27962@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/conf LINT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk eivind 1998/03/16 15:04:09 PST Modified files: sys/i386/conf LINT Log: Clear up DPT comment to avoid further confusion. This is a hardware driver. Revision Changes Path 1.418 +3 -2 src/sys/i386/conf/LINT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 15:55:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA14136 for cvs-all-outgoing; Mon, 16 Mar 1998 15:55:26 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA14126; Mon, 16 Mar 1998 15:55:24 -0800 (PST) (envelope-from jraynard@FreeBSD.org) From: James Raynard Received: (from jraynard@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA28094; Mon, 16 Mar 1998 15:55:11 -0800 (PST) Date: Mon, 16 Mar 1998 15:55:11 -0800 (PST) Message-Id: <199803162355.PAA28094@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/vmstat vmstat.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jraynard 1998/03/16 15:55:10 PST Modified files: (Branch: RELENG_2_2) usr.bin/vmstat vmstat.c Log: MFC - Merge rev 1.16 (prevent output columns from merging into one another). Revision Changes Path 1.15.2.4 +4 -4 src/usr.bin/vmstat/vmstat.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 16:28:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA20647 for cvs-all-outgoing; Mon, 16 Mar 1998 16:28:26 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA20564; Mon, 16 Mar 1998 16:28:17 -0800 (PST) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA28158; Mon, 16 Mar 1998 16:28:05 -0800 (PST) Date: Mon, 16 Mar 1998 16:28:05 -0800 (PST) Message-Id: <199803170028.QAA28158@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/i386 autoconf.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/03/16 16:28:05 PST Modified files: sys/i386/i386 autoconf.c Log: Add missing entry to list of major device names. This list should not exist. Revision Changes Path 1.92 +3 -1 src/sys/i386/i386/autoconf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 17:19:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA05966 for cvs-all-outgoing; Mon, 16 Mar 1998 17:19:49 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA05961; Mon, 16 Mar 1998 17:19:47 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA28333; Mon, 16 Mar 1998 17:19:35 -0800 (PST) Date: Mon, 16 Mar 1998 17:19:35 -0800 (PST) Message-Id: <199803170119.RAA28333@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/03/16 17:19:35 PST Modified files: . modules Log: hypermail --> ports/www/hypermail Revision Changes Path 1.1880 +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 Mar 16 17:22:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA06423 for cvs-all-outgoing; Mon, 16 Mar 1998 17:22:41 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA06418; Mon, 16 Mar 1998 17:22:39 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA28351; Mon, 16 Mar 1998 17:22:27 -0800 (PST) Date: Mon, 16 Mar 1998 17:22:27 -0800 (PST) Message-Id: <199803170122.RAA28351@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/hypermail - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/03/16 17:22:27 PST ports/www/hypermail - Imported sources Update of /home/ncvs/ports/www/hypermail In directory freefall.freebsd.org:/d/users/vanilla/work/hypermail Log Message: Hypermail is a program that takes a file of mail messages in UNIX mailbox format and generates a set of cross-referenced HTML documents. Each file that is created represents a separate message in the mail archive and contains links to other articles, so that the entire archive can be browsed in a number of ways by following links. Archives generated by Hypermail can be incrementally updated, and Hypermail is set by default to only update archives when changes are detected. PR: ports/5364 Submitted by: Francis M J Hsieh Status: Vendor Tag: MJHSIEH Release Tags: hypermail_1_0_2 N ports/www/hypermail/Makefile I ports/www/hypermail/CVS N ports/www/hypermail/files/md5 N ports/www/hypermail/patches/patch-aa N ports/www/hypermail/patches/patch-ab N ports/www/hypermail/pkg/COMMENT N ports/www/hypermail/pkg/DESCR N ports/www/hypermail/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 17:23:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA06561 for cvs-all-outgoing; Mon, 16 Mar 1998 17:23:46 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA06554; Mon, 16 Mar 1998 17:23:45 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA28386; Mon, 16 Mar 1998 17:23:33 -0800 (PST) Date: Mon, 16 Mar 1998 17:23:33 -0800 (PST) Message-Id: <199803170123.RAA28386@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/03/16 17:23:32 PST Modified files: www Makefile Log: Activate hypermail. Revision Changes Path 1.70 +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 Mon Mar 16 17:27:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA06981 for cvs-all-outgoing; Mon, 16 Mar 1998 17:27:05 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA06976; Mon, 16 Mar 1998 17:27:03 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA28448; Mon, 16 Mar 1998 17:26:51 -0800 (PST) Date: Mon, 16 Mar 1998 17:26:51 -0800 (PST) Message-Id: <199803170126.RAA28448@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook submitters.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/03/16 17:26:51 PST Modified files: handbook submitters.sgml Log: Add Francis M J Hsieh for his hypermail ports. Revision Changes Path 1.161 +3 -1 doc/handbook/submitters.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 17:27:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA07008 for cvs-all-outgoing; Mon, 16 Mar 1998 17:27:07 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA06998; Mon, 16 Mar 1998 17:27:06 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA28463; Mon, 16 Mar 1998 17:26:54 -0800 (PST) Date: Mon, 16 Mar 1998 17:26:54 -0800 (PST) Message-Id: <199803170126.RAA28463@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc/ppp ppp.conf.sample Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/03/16 17:26:54 PST Modified files: (Branch: MP) etc/ppp ppp.conf.sample Log: Correct filter syntax. Revision Changes Path 1.28.2.1 +23 -23 src/etc/ppp/ppp.conf.sample To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 17:58:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA14933 for cvs-all-outgoing; Mon, 16 Mar 1998 17:58:43 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from gaia.coppe.ufrj.br (cisigw.coppe.ufrj.br [146.164.5.200]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA14900; Mon, 16 Mar 1998 17:58:36 -0800 (PST) (envelope-from jonny@coppe.ufrj.br) Received: (from jonny@localhost) by gaia.coppe.ufrj.br (8.8.8/8.8.8) id WAA27593; Mon, 16 Mar 1998 22:57:58 -0300 (EST) (envelope-from jonny) From: Joao Carlos Mendes Luis Message-Id: <199803170157.WAA27593@gaia.coppe.ufrj.br> Subject: Re: cvs commit: ports/x11/XFree86/scripts configure In-Reply-To: <9803162156.AA26208@cabri.obs-besancon.fr> from Jean-Marc Zucconi at "Mar 16, 98 10:56:51 pm" To: jmz@cabri.obs-besancon.fr (Jean-Marc Zucconi) Date: Mon, 16 Mar 1998 22:57:58 -0300 (EST) Cc: mark@grondar.za, andreas@klemm.gtn.com, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk #define quoting(Jean-Marc Zucconi) // 2 - XF86Setup core dumps when compiled with version 8.1. However it // works well with 8.0 He's not the only one. vic stops with segmentation fault when the menu is called, and ical stops with Bus Error. I've already talked about this on freebsd-ports, and somebody answered that compiling with -fwritable-strings helped, but I could not try to reproduce it here yet. Running the tests in tcl81 stops with a BusError in stringObj.test, and lots of tests give tre wrong result. I'm concerned if this will go into the 2.2.6 CD. Jonny -- Joao Carlos Mendes Luis jonny@gta.ufrj.br +55 21 290-4698 jonny@coppe.ufrj.br Universidade Federal do Rio de Janeiro UFRJ/COPPE/CISI PGP fingerprint: 29 C0 50 B9 B6 3E 58 F2 83 5F E3 26 BF 0F EA 67 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 18:10:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA20441 for cvs-all-outgoing; Mon, 16 Mar 1998 18:10:13 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA20396; Mon, 16 Mar 1998 18:10:04 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA28748; Mon, 16 Mar 1998 18:09:51 -0800 (PST) Date: Mon, 16 Mar 1998 18:09:51 -0800 (PST) Message-Id: <199803170209.SAA28748@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc services Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/03/16 18:09:50 PST Modified files: etc services Log: Add cfengine entries. OK'ed by: jkh Revision Changes Path 1.45 +3 -1 src/etc/services To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 18:12:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA20694 for cvs-all-outgoing; Mon, 16 Mar 1998 18:12:02 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA20671; Mon, 16 Mar 1998 18:11:58 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA28797; Mon, 16 Mar 1998 18:11:46 -0800 (PST) Date: Mon, 16 Mar 1998 18:11:46 -0800 (PST) Message-Id: <199803170211.SAA28797@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/03/16 18:11:45 PST Modified files: . modules Log: cfengine --> ports/sysutils/cfengine Revision Changes Path 1.1881 +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 Mar 16 18:13:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA20849 for cvs-all-outgoing; Mon, 16 Mar 1998 18:13:43 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA20837; Mon, 16 Mar 1998 18:13:41 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA28823; Mon, 16 Mar 1998 18:13:29 -0800 (PST) Date: Mon, 16 Mar 1998 18:13:29 -0800 (PST) Message-Id: <199803170213.SAA28823@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/sysutils/cfengine - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/03/16 18:13:28 PST ports/sysutils/cfengine - Imported sources Update of /home/ncvs/ports/sysutils/cfengine In directory freefall.freebsd.org:/c/users/jseger/cfengine Log Message: Import of cfengine 1.4.10. cfengine lets you manage you network (including editing files automatically), in an object-oriented manner. Status: Vendor Tag: JSEGER Release Tags: v1_4_10 N ports/sysutils/cfengine/Makefile I ports/sysutils/cfengine/CVS N ports/sysutils/cfengine/files/md5 N ports/sysutils/cfengine/pkg/PLIST N ports/sysutils/cfengine/pkg/DESCR N ports/sysutils/cfengine/pkg/COMMENT N ports/sysutils/cfengine/patches/patch-aa N ports/sysutils/cfengine/patches/patch-ab No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 18:15:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA21241 for cvs-all-outgoing; Mon, 16 Mar 1998 18:15:47 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA21235; Mon, 16 Mar 1998 18:15:46 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA28885; Mon, 16 Mar 1998 18:15:33 -0800 (PST) Date: Mon, 16 Mar 1998 18:15:33 -0800 (PST) Message-Id: <199803170215.SAA28885@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/sysutils Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/03/16 18:15:33 PST Modified files: sysutils Makefile Log: Activate cfengine. Revision Changes Path 1.32 +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 Mon Mar 16 18:35:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA25702 for cvs-all-outgoing; Mon, 16 Mar 1998 18:35:56 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA25668; Mon, 16 Mar 1998 18:35:52 -0800 (PST) (envelope-from hanai@FreeBSD.org) From: Hanai Hiroyuki Received: (from hanai@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA29044; Mon, 16 Mar 1998 18:35:40 -0800 (PST) Date: Mon, 16 Mar 1998 18:35:40 -0800 (PST) Message-Id: <199803170235.SAA29044@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data/ja_JP.EUC support.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hanai 1998/03/16 18:35:39 PST Modified files: data/ja_JP.EUC support.sgml Log: Changes in the English version(1.41->1.46) are merged. Submitted by: Nishika Revision Changes Path 1.3 +37 -31 www/data/ja_JP.EUC/support.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 18:54:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA29450 for cvs-all-outgoing; Mon, 16 Mar 1998 18:54:40 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA29444; Mon, 16 Mar 1998 18:54:36 -0800 (PST) (envelope-from dima@FreeBSD.org) From: Dima Ruban Received: (from dima@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA29209; Mon, 16 Mar 1998 18:54:24 -0800 (PST) Date: Mon, 16 Mar 1998 18:54:24 -0800 (PST) Message-Id: <199803170254.SAA29209@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/korean Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dima 1998/03/16 18:54:23 PST Modified files: korean Makefile Log: Whoever removed hanterm-autofont, forgot to remove it's entry from the Makefile. Revision Changes Path 1.18 +1 -2 ports/korean/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 20:20:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA13571 for cvs-all-outgoing; Mon, 16 Mar 1998 20:20:42 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id UAA13474; Mon, 16 Mar 1998 20:20:20 -0800 (PST) (envelope-from imp@village.org) Received: from harmony [10.0.0.6] by rover.village.org with esmtp (Exim 1.71 #1) id 0yEnqg-0002oe-00; Mon, 16 Mar 1998 21:19:34 -0700 Received: from harmony.village.org (localhost [127.0.0.1]) by harmony.village.org (8.8.8/8.8.3) with ESMTP id VAA03485; Mon, 16 Mar 1998 21:19:19 -0700 (MST) Message-Id: <199803170419.VAA03485@harmony.village.org> To: Joao Carlos Mendes Luis Subject: Re: cvs commit: ports/x11/XFree86/scripts configure Cc: jmz@cabri.obs-besancon.fr (Jean-Marc Zucconi), mark@grondar.za, andreas@klemm.gtn.com, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: Your message of "Mon, 16 Mar 1998 22:57:58 -0300." <199803170157.WAA27593@gaia.coppe.ufrj.br> References: <199803170157.WAA27593@gaia.coppe.ufrj.br> Date: Mon, 16 Mar 1998 21:19:19 -0700 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In message <199803170157.WAA27593@gaia.coppe.ufrj.br> Joao Carlos Mendes Luis writes: : Running the tests in tcl81 stops with a BusError in stringObj.test, : and lots of tests give tre wrong result. I'm concerned if this : will go into the 2.2.6 CD. I am somewhat concerned about this as well. I don't mind 8.1a2 being on the cdrom, but I do mind the large number of ports that were rushed to use it :-(. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 20:53:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA19485 for cvs-all-outgoing; Mon, 16 Mar 1998 20:53:04 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from bubble.didi.com ([133.11.9.67]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA19439; Mon, 16 Mar 1998 20:52:52 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by bubble.didi.com (8.8.7/8.8.8) id NAA03454; Tue, 17 Mar 1998 13:20:03 +0900 (JST) (envelope-from asami) Date: Tue, 17 Mar 1998 13:20:03 +0900 (JST) Message-Id: <199803170420.NAA03454@bubble.didi.com> To: obrien@NUXI.com CC: chuckr@glue.umd.edu, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <19980316121213.28949@nuxi.com> (obrien@NUXI.com) Subject: Re: cvs commit: ports/print/c2ps Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * WRT building both A4 and US-letter packages of all the print utilities, * did we come to a conclusion? Well, as far as I can tell, I had the final word in the previous discussion. (Actually it was more like I came back from a 1-day vacation, saw a bunch of messages, posted my opinion, and that was the end of it. But anyway.) Here's that post for your reference. Any comments? Satoshi ------- Date: Sun, 1 Mar 1998 01:01:49 -0800 (PST) To: hoek@hwcn.org CC: chuckr@glue.umd.edu, obrien@NUXI.com, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/print/c2ps Makefile From: asami@cs.berkeley.edu (Satoshi Asami) * If we add ports such as a2ps-letter, etc. being wholly * self-sufficient (ie. don't call `a2ps') then most of these * problems solve themselves. Cookies aren't needed since * a2ps-letter can only do -letter. INDEX isn't a problem. * Packages are built properly. If we lose the single "a2ps" port, * then the whole PAPERSIZE question becomes unnecessary. : (pretty good summary deleted) I think I give up on the "DTRT with PAPERSIZE if the user types `make' in ports/print" idea. People doing that can easily use DUDS or some other method. It's getting too confusing. On the other hand, I really don't like the idea of having every single port be self-sufficient. We've already got too many "oops" commits, and things like having someone update one pkg/PLIST but not its counterpart is extremely hard to check. We should accept the fact that downloading a single port has a very good chance of breaking (think *_DEPENDS) and recommend users keep up with the whole ports tree. I can add something like this to bsd.port.mk to help unconfuse the users: === .if defined(INCLUDE_MAKEFILE_FROM) .if !exists(${INCLUDE_MAKEFILE_FROM}/Makefile) IGNORE= "This port requires another port (${INCLUDE_MAKEFILE_FROM}). Please get that one too" .else .include (${INCLUDE_MAKEFILE_FROM}) .if ${REQUIRED_MAKEFILE_VERSION} != ${MAKEFILE_VERSION} IGNORE= "Version of ${INCLUDE_MAKEFILE_FROM} disagrees with required version. Please get an updated version first" .endif .endif .endif === Then we have something like: a2ps-letter/Makefile: === REQUIRED_MAKEFILE_VERSION= 1.3 INCLUDE_MAKEFILE_FROM= ../a2ps-a4 .include === a2ps-a4/Makefile: === MAKEFILE_VERSION= 1.3 === Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 21:01:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA21201 for cvs-all-outgoing; Mon, 16 Mar 1998 21:01:38 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from gforce.bellsouth.net (host-209-138-32-77.msy.BELLSOUTH.net [209.138.32.77]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA21186; Mon, 16 Mar 1998 21:01:27 -0800 (PST) (envelope-from glenn@bellsouth.net) Received: from gforce.bellsouth.net (localhost.bellsouth.net [127.0.0.1]) by gforce.bellsouth.net (8.8.8/8.8.8) with ESMTP id WAA07895; Mon, 16 Mar 1998 22:56:59 -0600 (CST) (envelope-from glenn@gforce.bellsouth.net) Message-Id: <199803170456.WAA07895@gforce.bellsouth.net> X-Mailer: exmh version 2.0.2 2/24/98 To: Warner Losh cc: Joao Carlos Mendes Luis , jmz@cabri.obs-besancon.fr (Jean-Marc Zucconi), mark@grondar.za, andreas@klemm.gtn.com, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG From: Glenn Johnson Subject: Re: cvs commit: ports/x11/XFree86/scripts configure In-reply-to: Your message of "Mon, 16 Mar 1998 21:19:19 MST." <199803170419.VAA03485@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 16 Mar 1998 22:56:59 -0600 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > In message <199803170157.WAA27593@gaia.coppe.ufrj.br> Joao Carlos Mendes Luis writes: > : Running the tests in tcl81 stops with a BusError in stringObj.test, > : and lots of tests give tre wrong result. I'm concerned if this > : will go into the 2.2.6 CD. > > I am somewhat concerned about this as well. I don't mind 8.1a2 being > on the cdrom, but I do mind the large number of ports that were rushed > to use it :-(. > > Warner > I just had to change (locally) the e93 port to use tcl8.0 because e93 was not working with tcl8.1. It was hanging on the menu panel and I had to forcibly kill it. Works fine with tcl8.0 though. -- Glenn Johnson gljohns@bellsouth.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 21:18:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA24441 for cvs-all-outgoing; Mon, 16 Mar 1998 21:18:42 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA24436; Mon, 16 Mar 1998 21:18:38 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA29555; Mon, 16 Mar 1998 21:18:24 -0800 (PST) Date: Mon, 16 Mar 1998 21:18:24 -0800 (PST) Message-Id: <199803170518.VAA29555@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/audio/kdemultimedia Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/16 21:18:24 PST Modified files: audio/kdemultimedia Makefile Log: Add back PKGNAME (removed by the previous commit). Revision Changes Path 1.5 +2 -1 ports/audio/kdemultimedia/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 21:27:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA25255 for cvs-all-outgoing; Mon, 16 Mar 1998 21:27:47 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA25249; Mon, 16 Mar 1998 21:27:43 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA29641; Mon, 16 Mar 1998 21:27:29 -0800 (PST) Date: Mon, 16 Mar 1998 21:27:29 -0800 (PST) Message-Id: <199803170527.VAA29641@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/biology/povchem Makefile ports/biology/povchem/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/16 21:27:28 PST Modified files: biology/povchem Makefile biology/povchem/files md5 Log: Add DIST_SUBDIR, the name "periodic.tab" is kinda generic. Speaking of which, its checksum was different so fix it too. Revision Changes Path 1.2 +5 -4 ports/biology/povchem/Makefile 1.2 +3 -3 ports/biology/povchem/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 21:33:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA26381 for cvs-all-outgoing; Mon, 16 Mar 1998 21:33:51 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA26374; Mon, 16 Mar 1998 21:33:49 -0800 (PST) (envelope-from hanai@FreeBSD.org) From: Hanai Hiroyuki Received: (from hanai@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA29691; Mon, 16 Mar 1998 21:33:36 -0800 (PST) Date: Mon, 16 Mar 1998 21:33:36 -0800 (PST) Message-Id: <199803170533.VAA29691@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/ja/handbook submitters.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hanai 1998/03/16 21:33:35 PST Modified files: ja/handbook submitters.sgml Log: Changes in the English version(1.160->1.161) are merged. Revision Changes Path 1.58 +5 -2 doc/ja/handbook/submitters.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 21:40:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA27275 for cvs-all-outgoing; Mon, 16 Mar 1998 21:40:28 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA27270; Mon, 16 Mar 1998 21:40:26 -0800 (PST) (envelope-from hanai@FreeBSD.org) From: Hanai Hiroyuki Received: (from hanai@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA29732; Mon, 16 Mar 1998 21:40:13 -0800 (PST) Date: Mon, 16 Mar 1998 21:40:13 -0800 (PST) Message-Id: <199803170540.VAA29732@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/ja/handbook submitters.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hanai 1998/03/16 21:40:12 PST Modified files: ja/handbook submitters.sgml Log: Oops! I've dropped a bug in the previous commit. It is fixed by this commit. Sorry! Revision Changes Path 1.59 +1 -2 doc/ja/handbook/submitters.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 22:03:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA03015 for cvs-all-outgoing; Mon, 16 Mar 1998 22:03:19 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA03006; Mon, 16 Mar 1998 22:03:17 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA29882; Mon, 16 Mar 1998 22:03:01 -0800 (PST) Date: Mon, 16 Mar 1998 22:03:01 -0800 (PST) Message-Id: <199803170603.WAA29882@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/comms/kpilot Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/16 22:03:01 PST Modified files: comms/kpilot Makefile Log: Mark this port broken, it doesn't install. While I'm here, make this port use GNU_CONFIGURE (which is essentially HAS_CONFIGURE + --prefix=$(PREFIX}). Revision Changes Path 1.2 +5 -4 ports/comms/kpilot/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 22:04:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA03112 for cvs-all-outgoing; Mon, 16 Mar 1998 22:04:06 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from bubble.didi.com ([133.11.9.73]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA03089; Mon, 16 Mar 1998 22:03:52 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by bubble.didi.com (8.8.7/8.8.8) id PAA03998; Tue, 17 Mar 1998 15:03:46 +0900 (JST) (envelope-from asami) Date: Tue, 17 Mar 1998 15:03:46 +0900 (JST) Message-Id: <199803170603.PAA03998@bubble.didi.com> To: se@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <199803071531.HAA21529@freefall.freebsd.org> (message from Stefan Esser on Sat, 7 Mar 1998 07:31:57 -0800 (PST)) Subject: Re: cvs commit: ports/comms/kpilot - Imported sources From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * This port compiles cleanly, but has not been actually tested with * a PalmPilot. If you want me to test it send one :) Does it install cleanly for you? :p Satoshi ------- gmake[2]: Entering directory `/ccd/ports/comms/kpilot/work/kpilot-2.0/kpilot/libpilot' cp .libs/* /lib usage: cp [-R [-H | -L | -P]] [-f | -i] [-p] src target cp [-R [-H | -L | -P]] [-f | -i] [-p] src1 ... srcN directory gmake[2]: *** [install] Error 1 gmake[2]: Leaving directory `/ccd/ports/comms/kpilot/work/kpilot-2.0/kpilot/libpilot' gmake[1]: *** [install-recursive] Error 1 gmake[1]: Leaving directory `/ccd/ports/comms/kpilot/work/kpilot-2.0/kpilot' gmake: *** [install-recursive] Error 1 *** Error code 2 Stop. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 22:31:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA10476 for cvs-all-outgoing; Mon, 16 Mar 1998 22:31:16 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA10468; Mon, 16 Mar 1998 22:31:14 -0800 (PST) (envelope-from dyson@FreeBSD.org) From: John Dyson Received: (from dyson@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA00252; Mon, 16 Mar 1998 22:30:57 -0800 (PST) Date: Mon, 16 Mar 1998 22:30:57 -0800 (PST) Message-Id: <199803170630.WAA00252@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern vfs_subr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dyson 1998/03/16 22:30:56 PST Modified files: sys/kern vfs_subr.c Log: Correct a severely evil bug in the vtruncbuf code. It didn't cause me any problems until after the previous commit. This problem then caused a severe case of creeping crud on my diskdrive, and hosed my system so bad, that I needed to do a complete reinstall. Sorry!!! I assume that others have manifest this bug. Revision Changes Path 1.143 +34 -2 src/sys/kern/vfs_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 23:30:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA21059 for cvs-all-outgoing; Mon, 16 Mar 1998 23:30:16 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA21011; Mon, 16 Mar 1998 23:30:07 -0800 (PST) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA00479; Mon, 16 Mar 1998 23:29:52 -0800 (PST) Date: Mon, 16 Mar 1998 23:29:52 -0800 (PST) Message-Id: <199803170729.XAA00479@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/editors/e93 Makefile ports/editors/e93/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/03/16 23:29:52 PST Modified files: editors/e93 Makefile editors/e93/patches patch-aa Log: Revert to using Tcl8.0, 8.1 doesn't work. Noted by: Glenn Johnson Revision Changes Path 1.17 +2 -2 ports/editors/e93/Makefile 1.6 +3 -3 ports/editors/e93/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 23:48:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA24712 for cvs-all-outgoing; Mon, 16 Mar 1998 23:48:14 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA24691; Mon, 16 Mar 1998 23:48:11 -0800 (PST) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA00604; Mon, 16 Mar 1998 23:47:57 -0800 (PST) Date: Mon, 16 Mar 1998 23:47:57 -0800 (PST) Message-Id: <199803170747.XAA00604@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/mbone/vic Makefile ports/mbone/vic/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/03/16 23:47:57 PST Modified files: mbone/vic Makefile mbone/vic/patches patch-aa Log: Back out changes to use tcl81. Suggested by: The Meistersinger Revision Changes Path 1.14 +3 -3 ports/mbone/vic/Makefile 1.8 +90 -90 ports/mbone/vic/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 23:49:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA25056 for cvs-all-outgoing; Mon, 16 Mar 1998 23:49:14 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA25033; Mon, 16 Mar 1998 23:49:11 -0800 (PST) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA00639; Mon, 16 Mar 1998 23:48:57 -0800 (PST) Date: Mon, 16 Mar 1998 23:48:57 -0800 (PST) Message-Id: <199803170748.XAA00639@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/editors/e93 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/03/16 23:48:57 PST Modified files: editors/e93 Makefile Log: Oops, forgot the category. Revision Changes Path 1.18 +2 -2 ports/editors/e93/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 16 23:55:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA26524 for cvs-all-outgoing; Mon, 16 Mar 1998 23:55:36 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA26515; Mon, 16 Mar 1998 23:55:33 -0800 (PST) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA00755; Mon, 16 Mar 1998 23:55:19 -0800 (PST) Date: Mon, 16 Mar 1998 23:55:19 -0800 (PST) Message-Id: <199803170755.XAA00755@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/tix Makefile ports/x11/tix/patches patch-aa patch-ac Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/03/16 23:55:19 PST Modified files: x11/tix Makefile x11/tix/patches patch-aa patch-ac Log: Back out last change, use tcl80. Revision Changes Path 1.15 +4 -4 ports/x11/tix/Makefile 1.10 +2 -2 ports/x11/tix/patches/patch-aa 1.10 +24 -24 ports/x11/tix/patches/patch-ac To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 00:41:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA01941 for cvs-all-outgoing; Tue, 17 Mar 1998 00:41:46 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA01935; Tue, 17 Mar 1998 00:41:45 -0800 (PST) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA00858; Tue, 17 Mar 1998 00:41:30 -0800 (PST) Date: Tue, 17 Mar 1998 00:41:30 -0800 (PST) Message-Id: <199803170841.AAA00858@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern vfs_bio.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/03/17 00:41:30 PST Modified files: sys/kern vfs_bio.c Log: Deleted PC-98 code because (1) machine dependent code should not be in here, and (2) the flag used in PC-98 code has been assigned to another purpose. Revision Changes Path 1.157 +1 -8 src/sys/kern/vfs_bio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 00:42:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA02100 for cvs-all-outgoing; Tue, 17 Mar 1998 00:42:41 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA02090; Tue, 17 Mar 1998 00:42:35 -0800 (PST) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA00888; Tue, 17 Mar 1998 00:42:20 -0800 (PST) Date: Tue, 17 Mar 1998 00:42:20 -0800 (PST) Message-Id: <199803170842.AAA00888@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 clock.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/03/17 00:42:20 PST Modified files: sys/pc98/pc98 clock.c Log: Sync with sys/i386/isa/clock.c revision 1.117. Revision Changes Path 1.50 +31 -8 src/sys/pc98/pc98/clock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 00:48:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA02460 for cvs-all-outgoing; Tue, 17 Mar 1998 00:48:11 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA02454; Tue, 17 Mar 1998 00:48:09 -0800 (PST) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA00929; Tue, 17 Mar 1998 00:47:55 -0800 (PST) Date: Tue, 17 Mar 1998 00:47:55 -0800 (PST) Message-Id: <199803170847.AAA00929@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/miscfs/union union_vnops.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/03/17 00:47:55 PST Modified files: sys/miscfs/union union_vnops.c Log: If lowervp is NULLVP, vap was clobbered. Submitted by: Naofumi Honda Obtained from: NetBSD/pc98 Revision Changes Path 1.56 +2 -2 src/sys/miscfs/union/union_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 Mar 17 01:11:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA05764 for cvs-all-outgoing; Tue, 17 Mar 1998 01:11:30 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA05758; Tue, 17 Mar 1998 01:11:28 -0800 (PST) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA01085; Tue, 17 Mar 1998 01:11:09 -0800 (PST) Date: Tue, 17 Mar 1998 01:11:09 -0800 (PST) Message-Id: <199803170911.BAA01085@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/i386 vm_machdep.c src/sys/i386/isa/bs bshw.c bsif.c src/sys/pc98/conf options.pc98 src/sys/pc98/pc98 pc98.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/03/17 01:11:09 PST Modified files: sys/i386/i386 vm_machdep.c sys/i386/isa/bs bshw.c bsif.c sys/pc98/conf options.pc98 sys/pc98/pc98 pc98.c Log: Make EPSON_BOUNCEDMA a new-style option. Revision Changes Path 1.104 +4 -1 src/sys/i386/i386/vm_machdep.c 1.5 +1 -0 src/sys/i386/isa/bs/bshw.c 1.6 +1 -0 src/sys/i386/isa/bs/bsif.c 1.58 +2 -1 src/sys/pc98/conf/options.pc98 1.49 +4 -1 src/sys/pc98/pc98/pc98.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 02:45:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA15010 for cvs-all-outgoing; Tue, 17 Mar 1998 02:45:37 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA14999; Tue, 17 Mar 1998 02:45:34 -0800 (PST) (envelope-from sos@FreeBSD.org) From: Søren Schmidt Received: (from sos@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA01417; Tue, 17 Mar 1998 02:45:19 -0800 (PST) Date: Tue, 17 Mar 1998 02:45:19 -0800 (PST) Message-Id: <199803171045.CAA01417@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa wst.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sos 1998/03/17 02:45:19 PST Modified files: sys/i386/isa wst.c Log: Fixed missing filemark on close if data written to tape. Don't try to flush buffers if the drive says it has none. More error checking and reporting. Hack: if drive hangs, it can be reset by issuing a mt -f device offline. I've been able to make several 4G backups. However there is still problems with some configurations. It is not clear if it is hardware or driver problems yet. Revision Changes Path 1.2 +96 -60 src/sys/i386/isa/wst.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 02:54:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA16532 for cvs-all-outgoing; Tue, 17 Mar 1998 02:54:43 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA16524; Tue, 17 Mar 1998 02:54:40 -0800 (PST) (envelope-from danny@FreeBSD.org) From: "Daniel O'Callaghan" Received: (from danny@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA01461; Tue, 17 Mar 1998 02:54:24 -0800 (PST) Date: Tue, 17 Mar 1998 02:54:24 -0800 (PST) Message-Id: <199803171054.CAA01461@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pci if_ed_p.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk danny 1998/03/17 02:54:23 PST Modified files: sys/pci if_ed_p.c Log: PR: i386/6040 Submitted by: nakagawa@jp.freebsd.org Add new PCI NE2000 (VIA VT86C926) Revision Changes Path 1.13 +2 -1 src/sys/pci/if_ed_p.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 03:58:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA24092 for cvs-all-outgoing; Tue, 17 Mar 1998 03:58:42 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA24080; Tue, 17 Mar 1998 03:58:41 -0800 (PST) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA01762; Tue, 17 Mar 1998 03:58:22 -0800 (PST) Date: Tue, 17 Mar 1998 03:58:22 -0800 (PST) Message-Id: <199803171158.DAA01762@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/lesstif Makefile ports/x11/lesstif/files md5 ports/x11/lesstif/patches patch-ab patch-aa patch-ad patch-ae ports/x11/lesstif/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/03/17 03:58:21 PST Modified files: x11/lesstif Makefile x11/lesstif/files md5 x11/lesstif/patches patch-ab x11/lesstif/pkg PLIST Removed files: x11/lesstif/patches patch-aa patch-ad patch-ae Log: Upgrade to 0.83. Revision Changes Path 1.16 +9 -8 ports/x11/lesstif/Makefile 1.10 +1 -1 ports/x11/lesstif/files/md5 1.4 +10 -14 ports/x11/lesstif/patches/patch-ab 1.10 +55 -7 ports/x11/lesstif/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 03:59:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA24312 for cvs-all-outgoing; Tue, 17 Mar 1998 03:59:47 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA24303; Tue, 17 Mar 1998 03:59:45 -0800 (PST) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA01813; Tue, 17 Mar 1998 03:59:29 -0800 (PST) Date: Tue, 17 Mar 1998 03:59:29 -0800 (PST) Message-Id: <199803171159.DAA01813@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/lesstif/patches patch-af patch-ag patch-ah patch-ai patch-aj Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/03/17 03:59:29 PST Added files: x11/lesstif/patches patch-af patch-ag patch-ah patch-ai patch-aj Log: Forgot to cvs add these. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 05:31:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA12142 for cvs-all-outgoing; Tue, 17 Mar 1998 05:31:17 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mb102.infoweb.or.jp (mb102.infoweb.or.jp [202.248.2.77]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA12136 for ; Tue, 17 Mar 1998 05:31:13 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from bubble.didi.com by mb102.infoweb.or.jp (8.8.7+2.7Wbeta7/3.6Wbeta6-09/12/97) id WAA12317; Tue, 17 Mar 1998 22:31:04 +0900 Received: (from asami@localhost) by bubble.didi.com (8.8.7/8.8.8) id WAA04448; Tue, 17 Mar 1998 22:27:29 +0900 (JST) (envelope-from asami) Date: Tue, 17 Mar 1998 22:27:29 +0900 (JST) Message-Id: <199803171327.WAA04448@bubble.didi.com> To: mark@grondar.za CC: committers@FreeBSD.ORG In-reply-to: <199803161800.UAA00374@greenpeace.grondar.za> (message from Mark Murray on Mon, 16 Mar 1998 20:00:36 +0200) Subject: Re: kerberosIV and new world From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * IIRC, you did the buildworld/installworld work, replacing the old one, * right? Yes, but I didn't touch anything about kerberosIV. * Having /usr/include/kerberosIV/* in a RELENG_2_2 system when upgrading * to 2.2.6-BETA is dangerous. Kerberos bits get found there when they are * not supposed to be and so forth. 2.2.6BETA and beyond do not have this * directory. That doesn't make much sense. 2.2.6-BETA is the current name of the RELENG_2_2 branch. ;) You mean if you upgrade from 2.2.5R to 2.2.6B? * Where would an appropriate place be to warn the user who has CVSUPped * that this should be blatted? Is it OK to do it at "make hierarchy" time? I wasn't aware that make world checks for the existence of a subdirectory under /usr/include of the host system. That should be fixed, IMO. Not warning the user or anything, it shouldn't be confused in the first place. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 09:36:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA03589 for cvs-all-outgoing; Tue, 17 Mar 1998 09:36:38 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA03575; Tue, 17 Mar 1998 09:36:31 -0800 (PST) (envelope-from dyson@FreeBSD.org) From: John Dyson Received: (from dyson@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA25237; Tue, 17 Mar 1998 09:36:10 -0800 (PST) Date: Tue, 17 Mar 1998 09:36:10 -0800 (PST) Message-Id: <199803171736.JAA25237@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern vfs_bio.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dyson 1998/03/17 09:36:10 PST Modified files: sys/kern vfs_bio.c Log: Correct a problem where data OR metadata could be thrown away if a buffer is grown. Revision Changes Path 1.158 +9 -3 src/sys/kern/vfs_bio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 10:26:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA12907 for cvs-all-outgoing; Tue, 17 Mar 1998 10:26:27 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from gaia.coppe.ufrj.br (cisigw.coppe.ufrj.br [146.164.5.200]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA12754; Tue, 17 Mar 1998 10:25:39 -0800 (PST) (envelope-from jonny@coppe.ufrj.br) Received: (from jonny@localhost) by gaia.coppe.ufrj.br (8.8.8/8.8.8) id PAA22370; Tue, 17 Mar 1998 15:25:37 -0300 (EST) (envelope-from jonny) From: Joao Carlos Mendes Luis Message-Id: <199803171825.PAA22370@gaia.coppe.ufrj.br> Subject: Re: cvs commit: ports/mbone/vic Makefile ports/mbone/vic/patches patch-aa In-Reply-To: <199803170747.XAA00604@freefall.freebsd.org> from Thomas Gellekum at "Mar 16, 98 11:47:57 pm" To: tg@FreeBSD.ORG (Thomas Gellekum) Date: Tue, 17 Mar 1998 15:25:36 -0300 (EST) Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk #define quoting(Thomas Gellekum) // tg 1998/03/16 23:47:57 PST // // Modified files: // mbone/vic Makefile // mbone/vic/patches patch-aa // Log: // Back out changes to use tcl81. Don't forget ical, please. Or I'll lose all my meetings. :) Indeed, I would suggest that NO port should go to 2.2.6-R using tk81, even if they work. Unless they NEED tk81, of course. My system currently (as of yesterday's cvsup) finds the following ports using tk81: audio/xcd/Makefile:RUN_DEPENDS= wish8.1:${PORTSDIR}/x11/tk81 audio/xmpeg3/Makefile: wish8.1:${PORTSDIR}/x11/tk81 converters/xdeview/Makefile:LIB_DEPENDS= tk81\\.1\\.:${PORTSDIR}/x11/tk81 \ devel/SpecTcl/Makefile:RUN_DEPENDS= wish8.1:${PORTSDIR}/x11/tk81 devel/tkcvs/Makefile:LIB_DEPENDS= tk81\\.1\\.:${PORTSDIR}/x11/tk81 devel/tkref/Makefile:RUN_DEPENDS= wish8.1:${PORTSDIR}/x11/tk81 devel/vtcl/Makefile:RUN_DEPENDS= wish8.1:${PORTSDIR}/x11/tk81 emulators/hfsutils/Makefile:LIB_DEPENDS= tk81\\.1\\.:${PORTSDIR}/x11/tk81 games/tksol/Makefile:RUN_DEPENDS= wish8.1:${PORTSDIR}/x11/tk81 graphics/cqcam/Makefile: tk81\\.1:${PORTSDIR}/x11/tk81 mail/exmh/Makefile:RUN_DEPENDS= wish8.1:${PORTSDIR}/x11/tk81 mbone/imm/Makefile:LIB_DEPENDS= tk81\\.1:${PORTSDIR}/x11/tk81 mbone/vic/Makefile:LIB_DEPENDS= tk81\\.1:${PORTSDIR}/x11/tk81 misc/ical/Makefile:LIB_DEPENDS= tk81\\.1:${PORTSDIR}/x11/tk81 misc/tkcron/Makefile:RUN_DEPENDS= wish8.1:${PORTSDIR}/x11/tk81 misc/tkinfo/Makefile:RUN_DEPENDS= wish8.1:${PORTSDIR}/x11/tk81 misc/zorro/Makefile:LIB_DEPENDS= tk81\\.1\\.:${PORTSDIR}/x11/tk81 net/zircon/Makefile:BUILD_DEPENDS= wish8.1:${PORTSDIR}/x11/tk81 x11/filerunner/Makefile:LIB_DEPENDS= tk81\\.1:${PORTSDIR}/x11/tk81 x11/tix/Makefile:LIB_DEPENDS= tk81\\.1\\.:${PORTSDIR}/x11/tk81 Jonny -- Joao Carlos Mendes Luis jonny@gta.ufrj.br +55 21 290-4698 jonny@coppe.ufrj.br Universidade Federal do Rio de Janeiro UFRJ/COPPE/CISI PGP fingerprint: 29 C0 50 B9 B6 3E 58 F2 83 5F E3 26 BF 0F EA 67 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 10:37:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA17465 for cvs-all-outgoing; Tue, 17 Mar 1998 10:37:11 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA17425; Tue, 17 Mar 1998 10:37:06 -0800 (PST) (envelope-from erich@FreeBSD.org) From: "Eric L. Hernes" Received: (from erich@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA25573; Tue, 17 Mar 1998 10:36:48 -0800 (PST) Date: Tue, 17 Mar 1998 10:36:48 -0800 (PST) Message-Id: <199803171836.KAA25573@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/gtk Makefile ports/x11/gtk/files md5 ports/x11/gtk/patches patch-ab patch-aa patch-ac ports/x11/gtk/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk erich 1998/03/17 10:36:47 PST Modified files: x11/gtk Makefile x11/gtk/files md5 x11/gtk/patches patch-aa x11/gtk/pkg PLIST Added files: x11/gtk/patches patch-ab Removed files: x11/gtk/patches patch-ac Log: upgrade to 0.99.7 Revision Changes Path 1.12 +6 -3 ports/x11/gtk/Makefile 1.9 +1 -1 ports/x11/gtk/files/md5 1.5 +3 -23 ports/x11/gtk/patches/patch-aa 1.12 +35 -30 ports/x11/gtk/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 11:55:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA18110 for cvs-all-outgoing; Tue, 17 Mar 1998 11:55:31 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA18092; Tue, 17 Mar 1998 11:55:28 -0800 (PST) (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA25836; Tue, 17 Mar 1998 11:55:10 -0800 (PST) Date: Tue, 17 Mar 1998 11:55:10 -0800 (PST) Message-Id: <199803171955.LAA25836@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/mapedit Makefile ports/www/mapedit/files md5 ports/www/mapedit/patches patch-aa ports/www/mapedit/pkg DESCR PLIST ports/www/mapedit/scripts post-patch Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/03/17 11:55:10 PST Modified files: www/mapedit Makefile www/mapedit/files md5 www/mapedit/pkg DESCR PLIST Added files: www/mapedit/patches patch-aa www/mapedit/scripts post-patch Log: Upgrade to java based version so uses new jdk as port dependency Revision Changes Path 1.9 +10 -11 ports/www/mapedit/Makefile 1.3 +1 -1 ports/www/mapedit/files/md5 1.3 +0 -2 ports/www/mapedit/pkg/DESCR 1.3 +61 -2 ports/www/mapedit/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 Mar 17 13:01:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA12724 for cvs-all-outgoing; Tue, 17 Mar 1998 13:01:54 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from news1.gtn.com (news1.gtn.com [194.77.0.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA10819; Tue, 17 Mar 1998 12:57:21 -0800 (PST) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by news1.gtn.com (8.8.6/8.8.6) with UUCP id VAA03311; Tue, 17 Mar 1998 21:16:39 +0100 (MET) Received: (from andreas@localhost) by klemm.gtn.com (8.8.8/8.8.7) id UAA01576; Tue, 17 Mar 1998 20:56:26 +0100 (CET) (envelope-from andreas) Message-ID: <19980317205626.51677@klemm.gtn.com> Date: Tue, 17 Mar 1998 20:56:26 +0100 From: Andreas Klemm To: Peter Wemm Cc: asami@FreeBSD.ORG, peter@FreeBSD.ORG, committers@FreeBSD.ORG Subject: Re: cvs server: failed to create lock directory in repository.... References: <19980315164145.11392@klemm.gtn.com> <199803160318.LAA10736@spinner.netplex.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <199803160318.LAA10736@spinner.netplex.com.au>; from Peter Wemm on Mon, Mar 16, 1998 at 11:18:26AM +0800 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Mon, Mar 16, 1998 at 11:18:26AM +0800, Peter Wemm wrote: > > cvs [server aborted]: lock failed - giving up > > cvs commit: saving log message in /tmp/cvsx12555 > > > > Please help ! ;-) > > Log into freefall and 'cvs add' the directories on there and see how you > go with a remote commit then. BINGO ! Thanks ! -- Andreas Klemm http://www.FreeBSD.ORG/~andreas powered by ,,symmetric multiprocessor FreeBSD'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 13:02:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA12817 for cvs-all-outgoing; Tue, 17 Mar 1998 13:02:05 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from news1.gtn.com (news1.gtn.com [194.77.0.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA10805; Tue, 17 Mar 1998 12:57:19 -0800 (PST) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by news1.gtn.com (8.8.6/8.8.6) with UUCP id VAA03288; Tue, 17 Mar 1998 21:16:26 +0100 (MET) Received: (from andreas@localhost) by klemm.gtn.com (8.8.8/8.8.7) id UAA28918; Tue, 17 Mar 1998 20:43:42 +0100 (CET) (envelope-from andreas) Message-ID: <19980317204342.23076@klemm.gtn.com> Date: Tue, 17 Mar 1998 20:43:42 +0100 From: Andreas Klemm To: Mark Murray Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/www/apache-ssl/patches patch-ae ports/www/apache-ssl/scripts configure References: <199803141733.TAA15261@greenpeace.grondar.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <199803141733.TAA15261@greenpeace.grondar.za>; from Mark Murray on Sat, Mar 14, 1998 at 07:33:53PM +0200 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sat, Mar 14, 1998 at 07:33:53PM +0200, Mark Murray wrote: > Andreas Klemm wrote: > > andreas 1998/02/22 15:55:13 PST > > > > Modified files: > > www/apache-ssl/patches patch-ae > > www/apache-ssl/scripts configure > > Log: > > Since Mark is in hospital and I think the change is worth ... > > [lots of good stuff] > > Thanks! You're welcome ! -- Andreas Klemm http://www.FreeBSD.ORG/~andreas powered by ,,symmetric multiprocessor FreeBSD'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 13:11:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA16683 for cvs-all-outgoing; Tue, 17 Mar 1998 13:11:14 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA16519; Tue, 17 Mar 1998 13:11:02 -0800 (PST) (envelope-from jdp@FreeBSD.org) From: John Polstra Received: (from jdp@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA25984; Tue, 17 Mar 1998 13:10:41 -0800 (PST) Date: Tue, 17 Mar 1998 13:10:41 -0800 (PST) Message-Id: <199803172110.NAA25984@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/lang/egcs Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jdp 1998/03/17 13:10:40 PST Modified files: lang/egcs Makefile Log: Fix the "Version required" comment. Revision Changes Path 1.12 +2 -2 ports/lang/egcs/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 13:18:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA20863 for cvs-all-outgoing; Tue, 17 Mar 1998 13:18:56 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA20821; Tue, 17 Mar 1998 13:18:49 -0800 (PST) (envelope-from danny@FreeBSD.org) From: "Daniel O'Callaghan" Received: (from danny@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA26017; Tue, 17 Mar 1998 13:12:14 -0800 (PST) Date: Tue, 17 Mar 1998 13:12:14 -0800 (PST) Message-Id: <199803172112.NAA26017@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pci if_ed_p.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk danny 1998/03/17 13:12:14 PST Modified files: (Branch: RELENG_2_2) sys/pci if_ed_p.c Log: PR: i386/6040 Approved by: jkh MFC. Add VIA NE2000 clone. Revision Changes Path 1.5.2.6 +2 -1 src/sys/pci/if_ed_p.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 14:29:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA09645 for cvs-all-outgoing; Tue, 17 Mar 1998 14:29:36 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA09639; Tue, 17 Mar 1998 14:29:34 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA26208; Tue, 17 Mar 1998 14:29:15 -0800 (PST) Date: Tue, 17 Mar 1998 14:29:15 -0800 (PST) Message-Id: <199803172229.OAA26208@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp ccp.c ccp.h command.c command.h deflate.c ppp.8 pred.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/03/17 14:29:15 PST Modified files: (Branch: MP) usr.sbin/ppp ccp.c ccp.h command.c command.h deflate.c ppp.8 pred.c Log: Make all CCP negotiation data dynamic and add a ``set deflate'' command to configure the DEFLATE default window size. Revision Changes Path 1.30.2.24 +121 -61 src/usr.sbin/ppp/ccp.c 1.14.2.13 +40 -18 src/usr.sbin/ppp/ccp.h 1.131.2.41 +25 -1 src/usr.sbin/ppp/command.c 1.12.2.5 +7 -6 src/usr.sbin/ppp/command.h 1.6.4.8 +161 -182 src/usr.sbin/ppp/deflate.c 1.97.2.6 +15 -1 src/usr.sbin/ppp/ppp.8 1.20.2.6 +69 -74 src/usr.sbin/ppp/pred.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 14:47:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA14192 for cvs-all-outgoing; Tue, 17 Mar 1998 14:47:14 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA14185; Tue, 17 Mar 1998 14:47:13 -0800 (PST) (envelope-from erich@FreeBSD.org) From: "Eric L. Hernes" Received: (from erich@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA26320; Tue, 17 Mar 1998 14:46:54 -0800 (PST) Date: Tue, 17 Mar 1998 14:46:54 -0800 (PST) Message-Id: <199803172246.OAA26320@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/gtk/patches patch-ac patch-aa ports/x11/gtk/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk erich 1998/03/17 14:46:53 PST Modified files: x11/gtk/patches patch-aa x11/gtk/pkg PLIST Added files: x11/gtk/patches patch-ac Log: install glibconfig.h someplace that apps can actually find it. Revision Changes Path 1.6 +23 -3 ports/x11/gtk/patches/patch-aa 1.13 +1 -1 ports/x11/gtk/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 14:53:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA15707 for cvs-all-outgoing; Tue, 17 Mar 1998 14:53:06 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA15698; Tue, 17 Mar 1998 14:53:04 -0800 (PST) (envelope-from erich@FreeBSD.org) From: "Eric L. Hernes" Received: (from erich@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA26498; Tue, 17 Mar 1998 14:52:45 -0800 (PST) Date: Tue, 17 Mar 1998 14:52:45 -0800 (PST) Message-Id: <199803172252.OAA26498@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/graphics/gimp-devel Makefile ports/graphics/gimp-devel/files md5 ports/graphics/gimp-devel/patches patch-ai patch-ah ports/graphics/gimp-devel/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk erich 1998/03/17 14:52:45 PST Modified files: graphics/gimp-devel Makefile graphics/gimp-devel/files md5 graphics/gimp-devel/patches patch-ah graphics/gimp-devel/pkg PLIST Added files: graphics/gimp-devel/patches patch-ai Log: upgrade to 0.99.21, there'll be another port containing the ``unstable'' plug-ins soon. Revision Changes Path 1.21 +9 -15 ports/graphics/gimp-devel/Makefile 1.14 +2 -2 ports/graphics/gimp-devel/files/md5 1.10 +20 -29 ports/graphics/gimp-devel/patches/patch-ah 1.16 +175 -202 ports/graphics/gimp-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 Tue Mar 17 16:56:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA12479 for cvs-all-outgoing; Tue, 17 Mar 1998 16:56:53 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA12473; Tue, 17 Mar 1998 16:56:50 -0800 (PST) (envelope-from jmz@FreeBSD.org) From: Jean-Marc Zucconi Received: (from jmz@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA26765; Tue, 17 Mar 1998 16:56:30 -0800 (PST) Date: Tue, 17 Mar 1998 16:56:30 -0800 (PST) Message-Id: <199803180056.QAA26765@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/lang/tcl80 Makefile ports/lang/tcl80/files Makefile.lib makefile ports/x11/tk80 Makefile ports/x11/tk80/files Makefile.lib makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jmz 1998/03/17 16:56:30 PST Modified files: lang/tcl80 Makefile x11/tk80 Makefile Added files: lang/tcl80/files Makefile.lib makefile x11/tk80/files Makefile.lib makefile Log: Do the Right Thing when building static libraries. Revision Changes Path 1.5 +13 -1 ports/lang/tcl80/Makefile 1.8 +13 -1 ports/x11/tk80/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 17:40:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA17901 for cvs-all-outgoing; Tue, 17 Mar 1998 17:40:34 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA17895; Tue, 17 Mar 1998 17:40:33 -0800 (PST) (envelope-from wollman@FreeBSD.org) From: Garrett Wollman Received: (from wollman@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA26891; Tue, 17 Mar 1998 17:40:13 -0800 (PST) Date: Tue, 17 Mar 1998 17:40:13 -0800 (PST) Message-Id: <199803180140.RAA26891@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/conf files src/sys/net if_vlan.c if_vlan_var.h ethernet.h if_ethersubr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wollman 1998/03/17 17:40:13 PST Modified files: sys/conf files sys/net ethernet.h if_ethersubr.c Added files: sys/net if_vlan.c if_vlan_var.h Log: Add preliminary support for IEEE 802.1Q VLAN tagging. It doesn't actually work reliably yet (I've had panics), but it does seem to occasionally be able to transmit and receive syntactically-correct packets. Also fixes one of if_ethersubr.c's legion style bugs, and removes the hostcache code from standard kernels---the code that depends on it is not going to happen any time soon, I'm afraid. Revision Changes Path 1.129 +3 -2 src/sys/conf/files 1.9 +2 -1 src/sys/net/ethernet.h 1.46 +24 -9 src/sys/net/if_ethersubr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 22:15:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA12675 for cvs-all-outgoing; Tue, 17 Mar 1998 22:15:45 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA12617; Tue, 17 Mar 1998 22:14:45 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from bubble.didi.com ([133.11.28.51]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id WAA25489; Tue, 17 Mar 1998 22:13:55 -0800 (PST) Received: (from asami@localhost) by bubble.didi.com (8.8.7/8.8.8) id PAA06480; Wed, 18 Mar 1998 15:13:53 +0900 (JST) (envelope-from asami) Date: Wed, 18 Mar 1998 15:13:53 +0900 (JST) Message-Id: <199803180613.PAA06480@bubble.didi.com> To: tg@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/editors/le - Imported sources From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Import le port. le is a text editor with many block operations with Sorry, but can't fetch. Can you put it in /f/users/asami/ports/distfiles? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 22:22:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA13925 for cvs-all-outgoing; Tue, 17 Mar 1998 22:22:57 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA13900; Tue, 17 Mar 1998 22:22:46 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from bubble.didi.com ([133.11.28.51]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id WAA25503; Tue, 17 Mar 1998 22:21:21 -0800 (PST) Received: (from asami@localhost) by bubble.didi.com (8.8.7/8.8.8) id PAA06507; Wed, 18 Mar 1998 15:21:16 +0900 (JST) (envelope-from asami) Date: Wed, 18 Mar 1998 15:21:16 +0900 (JST) Message-Id: <199803180621.PAA06507@bubble.didi.com> To: vanilla@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <199803110633.WAA08256@freefall.freebsd.org> (vanilla@FreeBSD.ORG) Subject: Re: cvs commit: ports/x11/icewm Makefile ports/x11/icewm/files md5 ports/x11/icewm/patches patch-ab patch-ac ports/x11/icewm/pkg PLIST From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Upgrade to 0.8.12. Thanks, but I can't fetch it. Can you put the distfile in /f/users/asami/ports/distfiles? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 22:27:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA14152 for cvs-all-outgoing; Tue, 17 Mar 1998 22:27:50 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA14147 for ; Tue, 17 Mar 1998 22:27:49 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from bubble.didi.com ([133.11.28.51]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id WAA25513 for ; Tue, 17 Mar 1998 22:27:45 -0800 (PST) Received: (from asami@localhost) by bubble.didi.com (8.8.7/8.8.8) id PAA06530; Wed, 18 Mar 1998 15:27:33 +0900 (JST) (envelope-from asami) Date: Wed, 18 Mar 1998 15:27:33 +0900 (JST) Message-Id: <199803180627.PAA06530@bubble.didi.com> To: committers@FreeBSD.ORG Subject: RFD From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk (That's "request for distfiles".) Since the release is coming up soon, I would like to request *all* new or upgraded port be accompanied by a distfile. We simply don't have the time to exchange mails and distfiles when it doesn't fetch from the master site. Please put the distfile(s) in /f/users/asami/ports/distfiles on freefall for every distfile that changed. That means a new port, an upgrade, or even a checksum change. If the exact same distfile is not on ftp.freebsd.org yet, please put it there. This request takes effect immediately and lasts until the release. Thanks. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 23:58:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA23459 for cvs-all-outgoing; Tue, 17 Mar 1998 23:58:46 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA23432; Tue, 17 Mar 1998 23:58:37 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA27567; Tue, 17 Mar 1998 23:58:15 -0800 (PST) Date: Tue, 17 Mar 1998 23:58:15 -0800 (PST) Message-Id: <199803180758.XAA27567@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-user@FreeBSD.ORG Subject: cvs commit: src Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/17 23:58:15 PST Modified files: (Branch: RELENG_2_2) . Makefile Log: Document NOPERL Submitted entirely incorrectly in -hackers by: Revision Changes Path 1.109.2.25 +2 -1 src/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 23:59:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA23829 for cvs-all-outgoing; Tue, 17 Mar 1998 23:59:21 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA23774; Tue, 17 Mar 1998 23:59:13 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA27611; Tue, 17 Mar 1998 23:58:51 -0800 (PST) Date: Tue, 17 Mar 1998 23:58:51 -0800 (PST) Message-Id: <199803180758.XAA27611@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc make.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/17 23:58:51 PST Modified files: etc make.conf Log: Document NOPERL Revision Changes Path 1.57 +4 -1 src/etc/make.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 17 23:59:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA24025 for cvs-all-outgoing; Tue, 17 Mar 1998 23:59:45 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA23978; Tue, 17 Mar 1998 23:59:37 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA27647; Tue, 17 Mar 1998 23:59:14 -0800 (PST) Date: Tue, 17 Mar 1998 23:59:14 -0800 (PST) Message-Id: <199803180759.XAA27647@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc make.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/17 23:59:14 PST Modified files: (Branch: RELENG_2_2) etc make.conf Log: MFC: NOPERL Revision Changes Path 1.37.2.10 +4 -1 src/etc/make.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 00:02:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA24379 for cvs-all-outgoing; Wed, 18 Mar 1998 00:02:04 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA24258; Wed, 18 Mar 1998 00:00:52 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA27697; Wed, 18 Mar 1998 00:00:14 -0800 (PST) Date: Wed, 18 Mar 1998 00:00:14 -0800 (PST) Message-Id: <199803180800.AAA27697@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc make.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/18 00:00:14 PST Modified files: (Branch: RELENG_2_2) etc make.conf Log: MFC: NOPERL Revision Changes Path 1.37.2.11 +2 -2 src/etc/make.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 00:02:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA24385 for cvs-all-outgoing; Wed, 18 Mar 1998 00:02:05 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA24286; Wed, 18 Mar 1998 00:01:18 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA27726; Wed, 18 Mar 1998 00:00:26 -0800 (PST) Date: Wed, 18 Mar 1998 00:00:26 -0800 (PST) Message-Id: <199803180800.AAA27726@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc make.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/18 00:00:26 PST Modified files: etc make.conf Log: style tweak. Revision Changes Path 1.58 +2 -2 src/etc/make.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 02:23:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA00261 for cvs-all-outgoing; Wed, 18 Mar 1998 02:23:33 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA00193; Wed, 18 Mar 1998 02:23:14 -0800 (PST) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA28595; Wed, 18 Mar 1998 02:22:50 -0800 (PST) Date: Wed, 18 Mar 1998 02:22:50 -0800 (PST) Message-Id: <199803181022.CAA28595@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: ports/editors Makefile CVSROOT modules ports/editors/vim Makefile ports/editors/vim/files md5 ports/editors/vim/patches patch-aa patch-ab ports/editors/vim/pkg COMMENT DESCR PLIST ports/editors/vim5beta Makefile ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/03/18 02:22:49 PST Modified files: editors Makefile . modules Removed files: editors/vim Makefile editors/vim/files md5 editors/vim/patches patch-aa patch-ab editors/vim/pkg COMMENT DESCR PLIST editors/vim5beta Makefile editors/vim5beta/files md5 editors/vim5beta/patches patch-01 patch-02 editors/vim5beta/pkg COMMENT DESCR PLIST Log: vim --> vim4 vim5beta --> vim5 gvim --> Attic (switch to vim5 for X11 support) Revision Changes Path 1.50 +3 -4 ports/editors/Makefile 1.1882 +3 -4 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 Mar 18 03:07:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA12627 for cvs-all-outgoing; Wed, 18 Mar 1998 03:07:58 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA12602; Wed, 18 Mar 1998 03:07:54 -0800 (PST) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA28738; Wed, 18 Mar 1998 03:07:29 -0800 (PST) Date: Wed, 18 Mar 1998 03:07:29 -0800 (PST) Message-Id: <199803181107.DAA28738@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc make.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/03/18 03:07:29 PST Modified files: (Branch: RELENG_2_2) etc make.conf Log: Document WANT_LIBC_R. Ok'ed by: JKH Revision Changes Path 1.37.2.12 +6 -1 src/etc/make.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 04:28:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA24178 for cvs-all-outgoing; Wed, 18 Mar 1998 04:28:37 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA24173; Wed, 18 Mar 1998 04:28:35 -0800 (PST) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA28991; Wed, 18 Mar 1998 04:28:12 -0800 (PST) Date: Wed, 18 Mar 1998 04:28:12 -0800 (PST) Message-Id: <199803181228.EAA28991@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/cc/c++ Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/03/18 04:28:11 PST Modified files: gnu/usr.bin/cc/c++ Makefile Log: I goofed on the `LINKS' syntax. Submitted by: Dmitrij Tejblum Revision Changes Path 1.9 +3 -2 src/gnu/usr.bin/cc/c++/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 04:29:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA24411 for cvs-all-outgoing; Wed, 18 Mar 1998 04:29:34 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA24406; Wed, 18 Mar 1998 04:29:32 -0800 (PST) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA29035; Wed, 18 Mar 1998 04:29:09 -0800 (PST) Date: Wed, 18 Mar 1998 04:29:09 -0800 (PST) Message-Id: <199803181229.EAA29035@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/cc/c++ Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/03/18 04:29:09 PST Modified files: (Branch: RELENG_2_2) gnu/usr.bin/cc/c++ Makefile Log: MFC rev 1.9 Revision Changes Path 1.5.6.2 +3 -2 src/gnu/usr.bin/cc/c++/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 07:45:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA00208 for cvs-all-outgoing; Wed, 18 Mar 1998 07:45:28 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA00203; Wed, 18 Mar 1998 07:45:26 -0800 (PST) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA22661; Wed, 18 Mar 1998 07:45:02 -0800 (PST) Date: Wed, 18 Mar 1998 07:45:02 -0800 (PST) Message-Id: <199803181545.HAA22661@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/rdist rdist.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1998/03/18 07:45:02 PST Modified files: (Branch: RELENG_2_2) usr.bin/rdist rdist.1 Log: MFC: Fix over-zealous .Nm trimming PR: docs/5968 Revision Changes Path 1.3.2.5 +1 -1 src/usr.bin/rdist/rdist.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 08:15:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA03749 for cvs-all-outgoing; Wed, 18 Mar 1998 08:15:18 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA03744; Wed, 18 Mar 1998 08:15:14 -0800 (PST) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA22813; Wed, 18 Mar 1998 08:14:50 -0800 (PST) Date: Wed, 18 Mar 1998 08:14:50 -0800 (PST) Message-Id: <199803181614.IAA22813@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/adduser adduser.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1998/03/18 08:14:49 PST Modified files: (Branch: RELENG_2_2) usr.sbin/adduser adduser.8 Log: Trim username examples to <= 8 characters (in -STABLE only). This strikes me as a somewhat hypocritical mistake given that the document includes a 1/2-page paragraph explaining why usernames should not be in excess of 8 characters... What would Freud say? ;) PR: docs/5874 Revision Changes Path 1.12.2.8 +10 -10 src/usr.sbin/adduser/adduser.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 08:22:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA04857 for cvs-all-outgoing; Wed, 18 Mar 1998 08:22:26 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA04851; Wed, 18 Mar 1998 08:22:25 -0800 (PST) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA22928; Wed, 18 Mar 1998 08:21:57 -0800 (PST) Date: Wed, 18 Mar 1998 08:21:57 -0800 (PST) Message-Id: <199803181621.IAA22928@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/adduser adduser.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1998/03/18 08:21:57 PST Modified files: usr.sbin/adduser adduser.8 Log: MF22: Remove confusing comma Revision Changes Path 1.25 +2 -2 src/usr.sbin/adduser/adduser.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 10:53:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA02613 for cvs-all-outgoing; Wed, 18 Mar 1998 10:53:30 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA02604; Wed, 18 Mar 1998 10:53:27 -0800 (PST) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA23274; Wed, 18 Mar 1998 10:53:01 -0800 (PST) Date: Wed, 18 Mar 1998 10:53:01 -0800 (PST) Message-Id: <199803181853.KAA23274@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/korean/ztelnet/patches patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-aj patch-ak patch-al patch-am patch-an patch-ao patch-ap patch-aq patch-ar patch-as patch-at patch-au patch-av patch-aw patch-ax ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/03/18 10:53:01 PST Modified files: korean/ztelnet/patches patch-aa Added files: korean/ztelnet/patches patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-aj patch-ak patch-al patch-am patch-an patch-ao patch-ap patch-aq patch-ar patch-as patch-at patch-au patch-av patch-aw patch-ax patch-ay patch-az Log: Split patch-aa into patches for the individual *_26_* files that are patched. Forgotten by: steve Revision Changes Path 1.3 +0 -1441 ports/korean/ztelnet/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 11:06:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA04456 for cvs-all-outgoing; Wed, 18 Mar 1998 11:06:04 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA04424; Wed, 18 Mar 1998 11:06:02 -0800 (PST) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA23411; Wed, 18 Mar 1998 11:05:36 -0800 (PST) Date: Wed, 18 Mar 1998 11:05:36 -0800 (PST) Message-Id: <199803181905.LAA23411@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/korean/ztelnet Makefile ports/korean/ztelnet/patches patch-ba ports/korean/ztelnet/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/03/18 11:05:36 PST Modified files: korean/ztelnet Makefile korean/ztelnet/pkg PLIST Added files: korean/ztelnet/patches patch-ba Log: Install a man page for this. Revision Changes Path 1.4 +3 -1 ports/korean/ztelnet/Makefile 1.2 +1 -0 ports/korean/ztelnet/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 Mar 18 11:21:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA06489 for cvs-all-outgoing; Wed, 18 Mar 1998 11:21:06 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA06484; Wed, 18 Mar 1998 11:21:04 -0800 (PST) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA24225; Wed, 18 Mar 1998 11:20:38 -0800 (PST) Date: Wed, 18 Mar 1998 11:20:38 -0800 (PST) Message-Id: <199803181920.LAA24225@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data/cgi mid.cgi Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/03/18 11:20:38 PST Modified files: data/cgi mid.cgi Log: Use /search.html for the 'back' link. Revision Changes Path 1.2 +2 -2 www/data/cgi/mid.cgi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 11:32:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA07833 for cvs-all-outgoing; Wed, 18 Mar 1998 11:32:52 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA07828; Wed, 18 Mar 1998 11:32:51 -0800 (PST) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA24922; Wed, 18 Mar 1998 11:32:20 -0800 (PST) Date: Wed, 18 Mar 1998 11:32:20 -0800 (PST) Message-Id: <199803181932.LAA24922@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data search.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/03/18 11:32:20 PST Modified files: data search.sgml Log: New temp home for Message-ID search. Revision Changes Path 1.26 +3 -3 www/data/search.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 11:41:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA09177 for cvs-all-outgoing; Wed, 18 Mar 1998 11:41:01 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA09172; Wed, 18 Mar 1998 11:41:00 -0800 (PST) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA24999; Wed, 18 Mar 1998 11:40:34 -0800 (PST) Date: Wed, 18 Mar 1998 11:40:34 -0800 (PST) Message-Id: <199803181940.LAA24999@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data/cgi getmsg.cgi Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/03/18 11:40:34 PST Modified files: data/cgi getmsg.cgi Log: Leading tabs (not only spaces) continue mail header lines. Make Message-IDs clickable. Revision Changes Path 1.7 +27 -10 www/data/cgi/getmsg.cgi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 12:52:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA18811 for cvs-all-outgoing; Wed, 18 Mar 1998 12:52:59 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA18804; Wed, 18 Mar 1998 12:52:57 -0800 (PST) (envelope-from dg@FreeBSD.org) From: David Greenman Received: (from dg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA25139; Wed, 18 Mar 1998 12:52:31 -0800 (PST) Date: Wed, 18 Mar 1998 12:52:31 -0800 (PST) Message-Id: <199803182052.MAA25139@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa cy.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dg 1998/03/18 12:52:30 PST Modified files: sys/i386/isa cy.c Log: Protect against count of chars received being 0, which causes a panic otherwise. Can apparantly happen with some firmware revs. Submitted by: Kouichi Hirabayashi Revision Changes Path 1.62 +3 -1 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 Mar 18 13:05:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA20899 for cvs-all-outgoing; Wed, 18 Mar 1998 13:05:54 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA20873; Wed, 18 Mar 1998 13:05:48 -0800 (PST) (envelope-from dg@FreeBSD.org) From: David Greenman Received: (from dg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA25198; Wed, 18 Mar 1998 13:05:22 -0800 (PST) Date: Wed, 18 Mar 1998 13:05:22 -0800 (PST) Message-Id: <199803182105.NAA25198@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa cy.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dg 1998/03/18 13:05:21 PST Modified files: (Branch: RELENG_2_2) sys/i386/isa cy.c Log: Brought in fix from rev 1.62: fix for panic when count of chars is 0. Revision Changes Path 1.41.2.3 +3 -1 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 Mar 18 13:54:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA02031 for cvs-all-outgoing; Wed, 18 Mar 1998 13:54:26 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA01973; Wed, 18 Mar 1998 13:54:18 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA25298; Wed, 18 Mar 1998 13:53:51 -0800 (PST) Date: Wed, 18 Mar 1998 13:53:51 -0800 (PST) Message-Id: <199803182153.NAA25298@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp modem.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/03/18 13:53:50 PST Modified files: (Branch: MP) usr.sbin/ppp modem.c Log: Show our modem hangup script in ``set modem''. Revision Changes Path 1.77.2.38 +5 -4 src/usr.sbin/ppp/modem.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 13:54:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA02058 for cvs-all-outgoing; Wed, 18 Mar 1998 13:54:28 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA02011; Wed, 18 Mar 1998 13:54:24 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA25328; Wed, 18 Mar 1998 13:53:57 -0800 (PST) Date: Wed, 18 Mar 1998 13:53:57 -0800 (PST) Message-Id: <199803182153.NAA25328@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp datalink.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/03/18 13:53:57 PST Modified files: (Branch: MP) usr.sbin/ppp datalink.c Log: Don't increment dial_tries twice. Revision Changes Path 1.1.2.25 +1 -2 src/usr.sbin/ppp/Attic/datalink.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 13:54:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA02145 for cvs-all-outgoing; Wed, 18 Mar 1998 13:54:38 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA02104; Wed, 18 Mar 1998 13:54:32 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA25358; Wed, 18 Mar 1998 13:54:04 -0800 (PST) Date: Wed, 18 Mar 1998 13:54:04 -0800 (PST) Message-Id: <199803182154.NAA25358@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp datalink.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/03/18 13:54:04 PST Modified files: (Branch: MP) usr.sbin/ppp datalink.c Log: Bring LCP back to INITIAL in LayerFinish(). Revision Changes Path 1.1.2.26 +6 -5 src/usr.sbin/ppp/Attic/datalink.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 15:16:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA19223 for cvs-all-outgoing; Wed, 18 Mar 1998 15:16:04 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA19182; Wed, 18 Mar 1998 15:15:59 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA25509; Wed, 18 Mar 1998 15:15:32 -0800 (PST) Date: Wed, 18 Mar 1998 15:15:32 -0800 (PST) Message-Id: <199803182315.PAA25509@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c bundle.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/03/18 15:15:32 PST Modified files: (Branch: MP) usr.sbin/ppp bundle.c bundle.h Log: Display the correct amount of remaining time in `show time'. Revision Changes Path 1.1.2.29 +16 -11 src/usr.sbin/ppp/Attic/bundle.c 1.1.2.19 +5 -2 src/usr.sbin/ppp/Attic/bundle.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 15:16:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA19349 for cvs-all-outgoing; Wed, 18 Mar 1998 15:16:47 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA19335; Wed, 18 Mar 1998 15:16:42 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA25542; Wed, 18 Mar 1998 15:16:09 -0800 (PST) Date: Wed, 18 Mar 1998 15:16:09 -0800 (PST) Message-Id: <199803182316.PAA25542@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp ccp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/03/18 15:16:09 PST Modified files: (Branch: MP) usr.sbin/ppp ccp.c Log: Mention MPPC rfc number Revision Changes Path 1.30.2.25 +2 -2 src/usr.sbin/ppp/ccp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 17:55:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA15222 for cvs-all-outgoing; Wed, 18 Mar 1998 17:55:36 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA15217; Wed, 18 Mar 1998 17:55:35 -0800 (PST) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA25818; Wed, 18 Mar 1998 17:55:07 -0800 (PST) Date: Wed, 18 Mar 1998 17:55:07 -0800 (PST) Message-Id: <199803190155.RAA25818@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/vnc Makefile ports/net/vnc/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/03/18 17:55:07 PST Modified files: net/vnc Makefile net/vnc/files md5 Log: Distfiles keep changing, without version bump or apparent updates. Revision Changes Path 1.2 +2 -1 ports/net/vnc/Makefile 1.3 +2 -2 ports/net/vnc/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 17:57:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA15752 for cvs-all-outgoing; Wed, 18 Mar 1998 17:57:41 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA15747; Wed, 18 Mar 1998 17:57:37 -0800 (PST) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA25875; Wed, 18 Mar 1998 17:57:08 -0800 (PST) Date: Wed, 18 Mar 1998 17:57:08 -0800 (PST) Message-Id: <199803190157.RAA25875@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/vncjava Makefile ports/net/vncjava/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/03/18 17:57:08 PST Modified files: net/vncjava Makefile net/vncjava/files md5 Log: Distfile keeps changing without version update. Revision Changes Path 1.2 +2 -1 ports/net/vncjava/Makefile 1.2 +1 -1 ports/net/vncjava/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 18:59:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA24228 for cvs-all-outgoing; Wed, 18 Mar 1998 18:59:37 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA24197; Wed, 18 Mar 1998 18:59:31 -0800 (PST) (envelope-from cwt@FreeBSD.org) From: Chris Timmons Received: (from cwt@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA26064; Wed, 18 Mar 1998 18:59:02 -0800 (PST) Date: Wed, 18 Mar 1998 18:59:02 -0800 (PST) Message-Id: <199803190259.SAA26064@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/mhonarc Makefile ports/www/mhonarc/files md5 ports/www/mhonarc/patches patch-ab patch-ac ports/www/mhonarc/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk cwt 1998/03/18 18:59:01 PST Modified files: www/mhonarc Makefile www/mhonarc/files md5 www/mhonarc/pkg PLIST Removed files: www/mhonarc/patches patch-ab patch-ac Log: MHonArc v2.2.0. Ok'd by: koshy@india.hp.com. Revision Changes Path 1.3 +5 -4 ports/www/mhonarc/Makefile 1.2 +1 -1 ports/www/mhonarc/files/md5 1.2 +35 -22 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 Wed Mar 18 22:07:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA25460 for cvs-all-outgoing; Wed, 18 Mar 1998 22:07:45 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA25455; Wed, 18 Mar 1998 22:07:41 -0800 (PST) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA27020; Wed, 18 Mar 1998 22:07:12 -0800 (PST) Date: Wed, 18 Mar 1998 22:07:12 -0800 (PST) Message-Id: <199803190607.WAA27020@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: CVSROOT modules ports/net Makefile ports/korean Makefile ports/korean/ztelnet Makefile ports/korean/ztelnet/files md5 ztelnet.patch.patch ports/korean/ztelnet/patches patch-aa patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/03/18 22:07:11 PST Modified files: . modules net Makefile korean Makefile Removed files: korean/ztelnet Makefile korean/ztelnet/files md5 ztelnet.patch.patch korean/ztelnet/patches patch-aa patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-aj patch-ak patch-al patch-am patch-an patch-ao patch-ap patch-aq patch-ar patch-as patch-at patch-au patch-av patch-aw patch-ax patch-ay patch-az patch-ba korean/ztelnet/pkg COMMENT DESCR PLIST Log: ports/korean/ztelnet --> ports/net/ztelnet Submitted by: me and my big mouth ;) Revision Changes Path 1.1883 +2 -2 CVSROOT/modules 1.149 +2 -1 ports/net/Makefile 1.19 +1 -2 ports/korean/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 22:13:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA26036 for cvs-all-outgoing; Wed, 18 Mar 1998 22:13:10 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA26031; Wed, 18 Mar 1998 22:13:09 -0800 (PST) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA27069; Wed, 18 Mar 1998 22:12:40 -0800 (PST) Date: Wed, 18 Mar 1998 22:12:40 -0800 (PST) Message-Id: <199803190612.WAA27069@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/ztelnet Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/03/18 22:12:39 PST Modified files: net/ztelnet Makefile Log: Change package name and category. Revision Changes Path 1.5 +4 -4 ports/net/ztelnet/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 23:27:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA08787 for cvs-all-outgoing; Wed, 18 Mar 1998 23:27:11 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA08779; Wed, 18 Mar 1998 23:27:09 -0800 (PST) (envelope-from charnier@FreeBSD.org) From: Philippe Charnier Received: (from charnier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA27324; Wed, 18 Mar 1998 23:26:39 -0800 (PST) Date: Wed, 18 Mar 1998 23:26:39 -0800 (PST) Message-Id: <199803190726.XAA27324@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-bin@FreeBSD.ORG Subject: cvs commit: src/bin/chio chio.1 src/bin/csh csh.1 src/bin/pax pax.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk charnier 1998/03/18 23:26:39 PST Modified files: bin/chio chio.1 bin/csh csh.1 bin/pax pax.1 Log: .Sh AUTHOR -> .Sh AUTHORS Use .An/.Aq Revision Changes Path 1.4 +5 -4 src/bin/chio/chio.1 1.9 +15 -7 src/bin/csh/csh.1 1.6 +4 -3 src/bin/pax/pax.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 23:34:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA09510 for cvs-all-outgoing; Wed, 18 Mar 1998 23:34:57 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA09504; Wed, 18 Mar 1998 23:34:54 -0800 (PST) (envelope-from charnier@FreeBSD.org) From: Philippe Charnier Received: (from charnier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA27674; Wed, 18 Mar 1998 23:34:23 -0800 (PST) Date: Wed, 18 Mar 1998 23:34:23 -0800 (PST) Message-Id: <199803190734.XAA27674@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/gen getvfsent.3 rand48.3 src/lib/libc/net addr2ascii.3 src/lib/libc/stdlib random.3 strtod.3 src/lib/libc/sys rtprio.2 src/lib/libcalendar calendar.3 src/lib/libcompat/SysV ftok.3 src/lib/libcurses curses.3 ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk charnier 1998/03/18 23:34:23 PST Modified files: lib/libc/gen getvfsent.3 rand48.3 lib/libc/net addr2ascii.3 lib/libc/stdlib random.3 strtod.3 lib/libc/sys rtprio.2 lib/libcalendar calendar.3 lib/libcompat/SysV ftok.3 lib/libcurses curses.3 lib/libdisk libdisk.3 lib/libedit editline.3 editrc.5 lib/libftpio ftpio.3 lib/libmd mdX.3 lib/libskey skey.3 lib/libutil setproctitle.3 lib/libvgl vgl.3 Log: .Sh AUTHOR -> .Sh AUTHORS. Use .An/.Aq Revision Changes Path 1.10 +6 -4 src/lib/libc/gen/getvfsent.3 1.4 +4 -4 src/lib/libc/gen/rand48.3 1.4 +4 -3 src/lib/libc/net/addr2ascii.3 1.9 +2 -2 src/lib/libc/stdlib/random.3 1.2 +2 -1 src/lib/libc/stdlib/strtod.3 1.10 +8 -6 src/lib/libc/sys/rtprio.2 1.4 +3 -3 src/lib/libcalendar/calendar.3 1.9 +3 -5 src/lib/libcompat/SysV/ftok.3 1.4 +1 -1 src/lib/libcurses/curses.3 1.6 +4 -3 src/lib/libdisk/libdisk.3 1.4 +4 -2 src/lib/libedit/editline.3 1.2 +4 -2 src/lib/libedit/editrc.5 1.17 +5 -2 src/lib/libftpio/ftpio.3 1.12 +4 -4 src/lib/libmd/mdX.3 1.7 +6 -4 src/lib/libskey/skey.3 1.10 +3 -3 src/lib/libutil/setproctitle.3 1.4 +3 -3 src/lib/libvgl/vgl.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 23:38:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA09974 for cvs-all-outgoing; Wed, 18 Mar 1998 23:38:15 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA09968; Wed, 18 Mar 1998 23:38:13 -0800 (PST) (envelope-from charnier@FreeBSD.org) From: Philippe Charnier Received: (from charnier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA27784; Wed, 18 Mar 1998 23:37:44 -0800 (PST) Date: Wed, 18 Mar 1998 23:37:44 -0800 (PST) Message-Id: <199803190737.XAA27784@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-libexec@FreeBSD.ORG Subject: cvs commit: src/libexec/mknetid mknetid.8 src/libexec/revnetgroup revnetgroup.8 src/libexec/xtend xtend.8 src/libexec/ypxfr ypxfr.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk charnier 1998/03/18 23:37:43 PST Modified files: libexec/mknetid mknetid.8 libexec/revnetgroup revnetgroup.8 Log: .Sh AUTHOR -. .Sh AUTHORS. Use .An/.Aq. Revision Changes Path 1.5 +2 -2 src/libexec/mknetid/mknetid.8 1.6 +2 -2 src/libexec/revnetgroup/revnetgroup.8 Modified files: libexec/xtend xtend.8 libexec/ypxfr ypxfr.8 Log: .Sh AUTHOR -> .Sh AUTHORS. Use .An/.Aq. Revision Changes Path 1.9 +2 -2 src/libexec/xtend/xtend.8 1.8 +2 -2 src/libexec/ypxfr/ypxfr.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 23:40:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA10574 for cvs-all-outgoing; Wed, 18 Mar 1998 23:40:59 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA10567; Wed, 18 Mar 1998 23:40:58 -0800 (PST) (envelope-from charnier@FreeBSD.org) From: Philippe Charnier Received: (from charnier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA27830; Wed, 18 Mar 1998 23:40:28 -0800 (PST) Date: Wed, 18 Mar 1998 23:40:28 -0800 (PST) Message-Id: <199803190740.XAA27830@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall sysinstall.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk charnier 1998/03/18 23:40:28 PST Modified files: release/sysinstall sysinstall.8 Log: Use .An/.Aq. Revision Changes Path 1.7 +3 -3 src/release/sysinstall/sysinstall.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 23:46:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA12395 for cvs-all-outgoing; Wed, 18 Mar 1998 23:46:39 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA12380; Wed, 18 Mar 1998 23:46:36 -0800 (PST) (envelope-from charnier@FreeBSD.org) From: Philippe Charnier Received: (from charnier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA28114; Wed, 18 Mar 1998 23:46:06 -0800 (PST) Date: Wed, 18 Mar 1998 23:46:06 -0800 (PST) Message-Id: <199803190746.XAA28114@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG Subject: cvs commit: src/sbin/adjkerntz adjkerntz.8 src/sbin/fsirand fsirand.8 src/sbin/ipfw ipfw.8 src/sbin/kldload kldload.8 src/sbin/kldstat kldstat.8 src/sbin/kldunload kldunload.8 src/sbin/modload modload.8 src/sbin/modunload modunload.8 ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk charnier 1998/03/18 23:46:05 PST Modified files: sbin/adjkerntz adjkerntz.8 sbin/fsirand fsirand.8 sbin/ipfw ipfw.8 sbin/kldload kldload.8 sbin/kldstat kldstat.8 sbin/kldunload kldunload.8 sbin/modload modload.8 sbin/modunload modunload.8 sbin/mount_cd9660 mount_cd9660.8 sbin/ping ping.8 sbin/spppcontrol spppcontrol.1 Log: .Sh AUTHOR -> .Sh AUTHORS. Use .An/.Aq. Revision Changes Path 1.14 +3 -3 src/sbin/adjkerntz/adjkerntz.8 1.7 +4 -6 src/sbin/fsirand/fsirand.8 1.39 +7 -5 src/sbin/ipfw/ipfw.8 1.4 +3 -3 src/sbin/kldload/kldload.8 1.4 +3 -3 src/sbin/kldstat/kldstat.8 1.4 +3 -3 src/sbin/kldunload/kldunload.8 1.11 +3 -5 src/sbin/modload/modload.8 1.8 +3 -5 src/sbin/modunload/modunload.8 1.6 +2 -2 src/sbin/mount_cd9660/mount_cd9660.8 1.13 +4 -2 src/sbin/ping/ping.8 1.2 +2 -2 src/sbin/spppcontrol/spppcontrol.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 23:47:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA12500 for cvs-all-outgoing; Wed, 18 Mar 1998 23:47:16 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA12484; Wed, 18 Mar 1998 23:47:11 -0800 (PST) (envelope-from charnier@FreeBSD.org) From: Philippe Charnier Received: (from charnier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA28144; Wed, 18 Mar 1998 23:46:41 -0800 (PST) Date: Wed, 18 Mar 1998 23:46:41 -0800 (PST) Message-Id: <199803190746.XAA28144@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG Subject: cvs commit: src/sbin/i386/comcontrol comcontrol.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk charnier 1998/03/18 23:46:41 PST Modified files: sbin/i386/comcontrol comcontrol.8 Log: Use .An/.Aq. Revision Changes Path 1.13 +3 -3 src/sbin/i386/comcontrol/comcontrol.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 18 23:47:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA12601 for cvs-all-outgoing; Wed, 18 Mar 1998 23:47:45 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA12594; Wed, 18 Mar 1998 23:47:42 -0800 (PST) (envelope-from charnier@FreeBSD.org) From: Philippe Charnier Received: (from charnier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA28174; Wed, 18 Mar 1998 23:47:12 -0800 (PST) Date: Wed, 18 Mar 1998 23:47:12 -0800 (PST) Message-Id: <199803190747.XAA28174@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG Subject: cvs commit: src/sbin/i386/ft ft.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk charnier 1998/03/18 23:47:12 PST Modified files: sbin/i386/ft ft.8 Log: Use .An/.Aq. Revision Changes Path 1.4 +2 -2 src/sbin/i386/ft/ft.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 03:02:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA06040 for cvs-all-outgoing; Thu, 19 Mar 1998 03:02:40 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA06001; Thu, 19 Mar 1998 03:02:28 -0800 (PST) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA28561; Thu, 19 Mar 1998 03:01:56 -0800 (PST) Date: Thu, 19 Mar 1998 03:01:56 -0800 (PST) Message-Id: <199803191101.DAA28561@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data/cgi getmsg.cgi Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/03/19 03:01:56 PST Modified files: data/cgi getmsg.cgi Log: Delete some whitespaces in mail header; cosmetic change. Revision Changes Path 1.8 +5 -5 www/data/cgi/getmsg.cgi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 04:36:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA16803 for cvs-all-outgoing; Thu, 19 Mar 1998 04:36:29 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA16796; Thu, 19 Mar 1998 04:36:28 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA28763; Thu, 19 Mar 1998 04:35:56 -0800 (PST) Date: Thu, 19 Mar 1998 04:35:56 -0800 (PST) Message-Id: <199803191235.EAA28763@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lkm@FreeBSD.ORG Subject: cvs commit: src/lkm/linux Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/03/19 04:35:56 PST Modified files: lkm/linux Makefile Log: Fixed a race to build the `@' and `machine' symlinks early enough for `make -jN'. Revision Changes Path 1.16 +2 -2 src/lkm/linux/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 05:02:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA18717 for cvs-all-outgoing; Thu, 19 Mar 1998 05:02:26 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA18712; Thu, 19 Mar 1998 05:02:23 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA28823; Thu, 19 Mar 1998 05:01:52 -0800 (PST) Date: Thu, 19 Mar 1998 05:01:52 -0800 (PST) Message-Id: <199803191301.FAA28823@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/conf files Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/03/19 05:01:51 PST Modified files: sys/conf files Log: Fixed building of kernels without `options FFS'. ffs_softdep_stub.c is not optional, since several "standard" files in ufs/ufs reference it. Revision Changes Path 1.130 +1 -1 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 Mar 19 05:23:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA20370 for cvs-all-outgoing; Thu, 19 Mar 1998 05:23:24 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA20356; Thu, 19 Mar 1998 05:23:23 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA28874; Thu, 19 Mar 1998 05:22:47 -0800 (PST) Date: Thu, 19 Mar 1998 05:22:47 -0800 (PST) Message-Id: <199803191322.FAA28874@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/mk bsd.kmod.mk Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/03/19 05:22:46 PST Modified files: share/mk bsd.kmod.mk Log: Fixed CLEANFILES. Some temporary files were missing. Revision Changes Path 1.48 +2 -2 src/share/mk/bsd.kmod.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 05:33:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA21219 for cvs-all-outgoing; Thu, 19 Mar 1998 05:33:14 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA21212; Thu, 19 Mar 1998 05:33:11 -0800 (PST) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA29572; Thu, 19 Mar 1998 05:32:39 -0800 (PST) Date: Thu, 19 Mar 1998 05:32:39 -0800 (PST) Message-Id: <199803191332.FAA29572@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data/cgi getmsg.cgi Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/03/19 05:32:39 PST Modified files: data/cgi getmsg.cgi Log: mid.cgi is now in /cgi Revision Changes Path 1.9 +2 -2 www/data/cgi/getmsg.cgi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 05:33:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA21242 for cvs-all-outgoing; Thu, 19 Mar 1998 05:33:17 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA21236; Thu, 19 Mar 1998 05:33:15 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA29600; Thu, 19 Mar 1998 05:32:44 -0800 (PST) Date: Thu, 19 Mar 1998 05:32:44 -0800 (PST) Message-Id: <199803191332.FAA29600@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/mk bsd.own.mk Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/03/19 05:32:44 PST Modified files: share/mk bsd.own.mk Log: Use gzip's -n flag so that simple regression tests of `make world' work better. Revision Changes Path 1.13 +3 -3 src/share/mk/bsd.own.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 06:57:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA29106 for cvs-all-outgoing; Thu, 19 Mar 1998 06:57:55 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA29101; Thu, 19 Mar 1998 06:57:54 -0800 (PST) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA29821; Thu, 19 Mar 1998 06:57:22 -0800 (PST) Date: Thu, 19 Mar 1998 06:57:22 -0800 (PST) Message-Id: <199803191457.GAA29821@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/XFree86 Makefile ports/x11/XFree86/files krb4auth.c krb4auth.h kerberos4.diffs md5 ports/x11/XFree86/scripts configure Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/03/19 06:57:21 PST Modified files: x11/XFree86 Makefile x11/XFree86/files kerberos4.diffs md5 x11/XFree86/scripts configure Added files: x11/XFree86/files krb4auth.c krb4auth.h Log: Enable all sorts of useful security features: o XDM-AUTHORIZATION-1 is more automated for the non-USA case. o PST's KerberosIV patches are reinstated for XDM. This is NOT a full-blown KerberosIV implementation for X - this will just get you a TGT when you log in - THATS ALL! o Enable compilation of SecureRPC. The use of SecureRPC at the moment is frought with danger! I have no idea how safe or good the implementation is. Enable at your own peril!! (Secure RPC is only available for those folk using 3.0-Current). Also allow XF86Setup to use TK-8.0. OK'ed By: JMZ Revision Changes Path 1.39 +22 -1 ports/x11/XFree86/Makefile 1.2 +221 -456 ports/x11/XFree86/files/kerberos4.diffs 1.13 +1 -0 ports/x11/XFree86/files/md5 1.33 +79 -19 ports/x11/XFree86/scripts/configure To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 07:02:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA29744 for cvs-all-outgoing; Thu, 19 Mar 1998 07:02:44 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA29739; Thu, 19 Mar 1998 07:02:43 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA29878; Thu, 19 Mar 1998 07:02:11 -0800 (PST) Date: Thu, 19 Mar 1998 07:02:11 -0800 (PST) Message-Id: <199803191502.HAA29878@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall misc.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/19 07:02:10 PST Modified files: release/sysinstall misc.c Log: Add noatime option to new filesystems to speed up initial extraction. Suggested by: bde Revision Changes Path 1.38 +2 -2 src/release/sysinstall/misc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 07:03:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA29809 for cvs-all-outgoing; Thu, 19 Mar 1998 07:03:30 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA29803; Thu, 19 Mar 1998 07:03:28 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA29914; Thu, 19 Mar 1998 07:02:56 -0800 (PST) Date: Thu, 19 Mar 1998 07:02:56 -0800 (PST) Message-Id: <199803191502.HAA29914@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall misc.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/19 07:02:56 PST Modified files: (Branch: RELENG_2_2) release/sysinstall misc.c Log: MFC: Use noatime Revision Changes Path 1.22.2.12 +2 -2 src/release/sysinstall/misc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 07:07:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA00713 for cvs-all-outgoing; Thu, 19 Mar 1998 07:07:58 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA00708; Thu, 19 Mar 1998 07:07:55 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA29955; Thu, 19 Mar 1998 07:07:23 -0800 (PST) Date: Thu, 19 Mar 1998 07:07:23 -0800 (PST) Message-Id: <199803191507.HAA29955@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall disks.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/19 07:07:22 PST Modified files: release/sysinstall disks.c Log: correct checks for "already written" case. Revision Changes Path 1.96 +9 -7 src/release/sysinstall/disks.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 07:08:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA00824 for cvs-all-outgoing; Thu, 19 Mar 1998 07:08:28 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA00808; Thu, 19 Mar 1998 07:08:23 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA29990; Thu, 19 Mar 1998 07:07:48 -0800 (PST) Date: Thu, 19 Mar 1998 07:07:48 -0800 (PST) Message-Id: <199803191507.HAA29990@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall disks.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/19 07:07:48 PST Modified files: (Branch: RELENG_2_2) release/sysinstall disks.c Log: MFC: DTRT when writing twice. Revision Changes Path 1.70.2.24 +9 -7 src/release/sysinstall/disks.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 07:12:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA01717 for cvs-all-outgoing; Thu, 19 Mar 1998 07:12:40 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA01710; Thu, 19 Mar 1998 07:12:38 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA00246; Thu, 19 Mar 1998 07:12:06 -0800 (PST) Date: Thu, 19 Mar 1998 07:12:06 -0800 (PST) Message-Id: <199803191512.HAA00246@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/xntpd/ntpdate Makefile src/usr.sbin/xntpd/ntpq Makefile src/usr.sbin/xntpd/ntptrace Makefile src/usr.sbin/xntpd/util Makefile src/usr.sbin/xntpd/xntpd Makefile src/usr.sbin/xntpd/xntpdc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/03/19 07:12:06 PST Modified files: usr.sbin/xntpd/ntpdate Makefile usr.sbin/xntpd/ntpq Makefile usr.sbin/xntpd/ntptrace Makefile usr.sbin/xntpd/util Makefile usr.sbin/xntpd/xntpd Makefile usr.sbin/xntpd/xntpdc Makefile Log: Don't use the beforedepend target. It was a no-op here except for helping bsd.dep.mk break `make -jN depend'. Revision Changes Path 1.10 +1 -3 src/usr.sbin/xntpd/ntpdate/Makefile 1.10 +1 -3 src/usr.sbin/xntpd/ntpq/Makefile 1.9 +1 -3 src/usr.sbin/xntpd/ntptrace/Makefile 1.9 +1 -3 src/usr.sbin/xntpd/util/Makefile 1.13 +1 -3 src/usr.sbin/xntpd/xntpd/Makefile 1.9 +1 -3 src/usr.sbin/xntpd/xntpdc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 07:21:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA03383 for cvs-all-outgoing; Thu, 19 Mar 1998 07:21:56 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA03377; Thu, 19 Mar 1998 07:21:53 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA00291; Thu, 19 Mar 1998 07:21:21 -0800 (PST) Date: Thu, 19 Mar 1998 07:21:21 -0800 (PST) Message-Id: <199803191521.HAA00291@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/gdb/gdb Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/03/19 07:21:20 PST Modified files: gnu/usr.bin/gdb/gdb Makefile Log: Removed vestiges of use of beforedepend target. Revision Changes Path 1.31 +3 -3 src/gnu/usr.bin/gdb/gdb/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 07:22:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA03599 for cvs-all-outgoing; Thu, 19 Mar 1998 07:22:21 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from hda.hda.com (hda-bicnet.bicnet.net [208.220.66.37]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA03540 for ; Thu, 19 Mar 1998 07:22:15 -0800 (PST) (envelope-from dufault@hda.hda.com) Received: (from dufault@localhost) by hda.hda.com (8.8.5/8.8.5) id KAA24204 for committers@freebsd.org; Thu, 19 Mar 1998 10:21:15 -0500 (EST) From: Peter Dufault Message-Id: <199803191521.KAA24204@hda.hda.com> Subject: "backing out" changes To: committers@FreeBSD.ORG Date: Thu, 19 Mar 1998 10:21:14 -0500 (EST) X-Mailer: ELM [version 2.4ME+ PL25 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk I've noticed the OID_AUTO in sysconf, and I've switched the p1003.1b stuff to use that. I don't know how I missed this when I first did this a year ago. This means that the recent changes in sys/sysctl.h and lib/libc/gen/sysconf.c are bad and are undone locally. When I see people saying that they are "backing out changes" are they simply overwriting the changes they made or are they doing something else? Peter -- Peter Dufault (dufault@hda.com) Realtime development, Machine control, HD Associates, Inc. Safety critical systems, Agency approval To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 07:27:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA04201 for cvs-all-outgoing; Thu, 19 Mar 1998 07:27:49 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA04195; Thu, 19 Mar 1998 07:27:46 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA00336; Thu, 19 Mar 1998 07:27:09 -0800 (PST) Date: Thu, 19 Mar 1998 07:27:09 -0800 (PST) Message-Id: <199803191527.HAA00336@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libmd Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/03/19 07:27:09 PST Modified files: lib/libmd Makefile Log: Don't use the beforedepend target. It was a no-op here except for helping bsd.dep.mk break `make -jN depend'. Revision Changes Path 1.25 +1 -3 src/lib/libmd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 07:30:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA04748 for cvs-all-outgoing; Thu, 19 Mar 1998 07:30:58 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ns1.yes.no (ns1.yes.no [195.119.24.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA04718; Thu, 19 Mar 1998 07:30:44 -0800 (PST) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [194.198.43.36]) by ns1.yes.no (8.8.7/8.8.7) with ESMTP id PAA29280; Thu, 19 Mar 1998 15:30:42 GMT Received: (from eivind@localhost) by bitbox.follo.net (8.8.6/8.8.6) id QAA07369; Thu, 19 Mar 1998 16:30:42 +0100 (MET) Message-ID: <19980319163042.52677@follo.net> Date: Thu, 19 Mar 1998 16:30:42 +0100 From: Eivind Eklund To: "Jordan K. Hubbard" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: Re: cvs commit: src/release/sysinstall disks.c References: <199803191507.HAA29955@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <199803191507.HAA29955@freefall.freebsd.org>; from Jordan K. Hubbard on Thu, Mar 19, 1998 at 07:07:23AM -0800 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Thu, Mar 19, 1998 at 07:07:23AM -0800, Jordan K. Hubbard wrote: > jkh 1998/03/19 07:07:22 PST > > Modified files: > release/sysinstall disks.c > Log: > correct checks for "already written" case. You wouldn't happen to have a clue how to handle the 're-install on dangerously dedicated' case correctly? It routinely bite people. This is the case where a disk has only a BSD-bootsector on it, and sysinstall never-the-less write a standard DOS MBR over it (after having put up a requester asking the user if he want to, of course). I tried fixing it, but never got it to work properly :-/ Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 07:37:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA05936 for cvs-all-outgoing; Thu, 19 Mar 1998 07:37:10 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA05920; Thu, 19 Mar 1998 07:37:04 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id HAA13805; Thu, 19 Mar 1998 07:37:05 -0800 (PST) (envelope-from jkh@time.cdrom.com) To: Eivind Eklund cc: "Jordan K. Hubbard" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: Re: cvs commit: src/release/sysinstall disks.c In-reply-to: Your message of "Thu, 19 Mar 1998 16:30:42 +0100." <19980319163042.52677@follo.net> Date: Thu, 19 Mar 1998 07:37:04 -0800 Message-ID: <13801.890321824@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > You wouldn't happen to have a clue how to handle the 're-install on > dangerously dedicated' case correctly? It routinely bite people. I'd need a lot more information on how it's biting people. I wasn't aware that there was any problem with this particular scenario > This is the case where a disk has only a BSD-bootsector on it, and > sysinstall never-the-less write a standard DOS MBR over it (after > having put up a requester asking the user if he want to, of course). Erm. So you're saying that the user is asking to be blown away, or what exactly? I'm finding this whole message rather confusing, frankly. :( Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 07:58:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA10599 for cvs-all-outgoing; Thu, 19 Mar 1998 07:58:09 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA10532; Thu, 19 Mar 1998 07:58:02 -0800 (PST) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA23489; Thu, 19 Mar 1998 07:57:29 -0800 (PST) Date: Thu, 19 Mar 1998 07:57:29 -0800 (PST) Message-Id: <199803191557.HAA23489@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/ztelnet/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/03/19 07:57:28 PST Modified files: net/ztelnet/pkg DESCR Log: PR: ports/6062 Submitted by: junker@jazz.snu.ac.kr Revision Changes Path 1.3 +7 -4 ports/net/ztelnet/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 Mar 19 08:19:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA15758 for cvs-all-outgoing; Thu, 19 Mar 1998 08:19:55 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA15743; Thu, 19 Mar 1998 08:19:52 -0800 (PST) (envelope-from hosokawa@FreeBSD.org) From: Tatsumi Hosokawa Received: (from hosokawa@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA23687; Thu, 19 Mar 1998 08:19:19 -0800 (PST) Date: Thu, 19 Mar 1998 08:19:19 -0800 (PST) Message-Id: <199803191619.IAA23687@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pccard pcic.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hosokawa 1998/03/19 08:19:19 PST Modified files: sys/pccard pcic.c Log: Uninitialized pointer reference may happen on particular environment. (for example, it kills my new laptop, Toshiba Libretto 100....) Revision Changes Path 1.57 +6 -1 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 Thu Mar 19 08:25:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA16498 for cvs-all-outgoing; Thu, 19 Mar 1998 08:25:53 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA16489; Thu, 19 Mar 1998 08:25:51 -0800 (PST) (envelope-from hosokawa@FreeBSD.org) From: Tatsumi Hosokawa Received: (from hosokawa@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA23794; Thu, 19 Mar 1998 08:25:18 -0800 (PST) Date: Thu, 19 Mar 1998 08:25:18 -0800 (PST) Message-Id: <199803191625.IAA23794@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc pccard.conf.sample Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hosokawa 1998/03/19 08:25:18 PST Modified files: etc pccard.conf.sample Log: Added U.S. Robotics XJ1560J (X2 X-jack modem) Revision Changes Path 1.18 +7 -1 src/etc/pccard.conf.sample To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 08:43:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA20300 for cvs-all-outgoing; Thu, 19 Mar 1998 08:43:58 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA20291; Thu, 19 Mar 1998 08:43:53 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA23841; Thu, 19 Mar 1998 08:43:20 -0800 (PST) Date: Thu, 19 Mar 1998 08:43:20 -0800 (PST) Message-Id: <199803191643.IAA23841@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-user@FreeBSD.ORG Subject: cvs commit: src Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/03/19 08:43:20 PST Modified files: . Makefile Log: Build the initial `make' in the temporary build tree so that its forced cleaning doesn't affect the normal copy. Save a little time by not doing unnecessary clean, depend nd cleandepend steps. Reviewed by: mckay@freebsd.org Added xargs to build-tools. It may be used for kdump and truss. Revision Changes Path 1.167 +9 -9 src/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 08:57:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA22437 for cvs-all-outgoing; Thu, 19 Mar 1998 08:57:33 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA22431; Thu, 19 Mar 1998 08:57:31 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA23889; Thu, 19 Mar 1998 08:56:59 -0800 (PST) Date: Thu, 19 Mar 1998 08:56:59 -0800 (PST) Message-Id: <199803191656.IAA23889@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/03/19 08:56:58 PST Modified files: lib Makefile Log: Build the libraries in a correct order. Reorganized the ifdefs so that the order is easy to see. Revision Changes Path 1.65 +42 -29 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 Thu Mar 19 09:15:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA24976 for cvs-all-outgoing; Thu, 19 Mar 1998 09:15:31 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA24939 for ; Thu, 19 Mar 1998 09:15:25 -0800 (PST) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id EAA08033; Fri, 20 Mar 1998 04:14:58 +1100 Date: Fri, 20 Mar 1998 04:14:58 +1100 From: Bruce Evans Message-Id: <199803191714.EAA08033@godzilla.zeta.org.au> To: committers@FreeBSD.ORG, dufault@hda.com Subject: Re: "backing out" changes Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >I've noticed the OID_AUTO in sysconf, and I've switched the p1003.1b >stuff to use that. I don't know how I missed this when I first did this >a year ago. > >This means that the recent changes in sys/sysctl.h and >lib/libc/gen/sysconf.c are bad and are undone locally. OID_AUTO was only suitable for the user interface (sysctl(8), not sysctl(3)). That changed when sysctlbyname() was added to the library. However, sysctlbyname() is rarely used. sysctl() could be more efficient that sysctlbyname(), but both are currently almost as inefficient as open() (they take 10000-15000 instructions to read a single integer from the kernel). The CTL_*_NAMES arrays haven't been used for a long time, but are sort of maintained. >When I see people saying that they are "backing out changes" are they >simply overwriting the changes they made or are they doing something >else? I mean simply overwriting. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 10:47:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA13597 for cvs-all-outgoing; Thu, 19 Mar 1998 10:47:36 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA13590; Thu, 19 Mar 1998 10:47:35 -0800 (PST) (envelope-from dyson@FreeBSD.org) From: John Dyson Received: (from dyson@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA24116; Thu, 19 Mar 1998 10:47:01 -0800 (PST) Date: Thu, 19 Mar 1998 10:47:01 -0800 (PST) Message-Id: <199803191847.KAA24116@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern vfs_subr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dyson 1998/03/19 10:47:01 PST Modified files: sys/kern vfs_subr.c Log: Fix an embarassing problem in vtruncbuf. Revision Changes Path 1.144 +2 -2 src/sys/kern/vfs_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 12:58:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA07261 for cvs-all-outgoing; Thu, 19 Mar 1998 12:58:49 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA07250; Thu, 19 Mar 1998 12:58:45 -0800 (PST) (envelope-from eivind@FreeBSD.org) From: Eivind Eklund Received: (from eivind@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA00412; Thu, 19 Mar 1998 12:58:46 -0800 (PST) Date: Thu, 19 Mar 1998 12:58:46 -0800 (PST) Message-Id: <199803192058.MAA00412@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG Subject: cvs commit: src/sbin/ifconfig ifconfig.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk eivind 1998/03/19 12:58:45 PST Modified files: sbin/ifconfig ifconfig.c Log: Make 'ifconfig -l ether' only list Ethernet interfaces. This is useful, intuitive, and match the old comments in the source. Previously, 'ifconfig -l ether' and 'ifconfig -l' were equal. Revision Changes Path 1.35 +9 -5 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 Thu Mar 19 14:26:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA16893 for cvs-all-outgoing; Thu, 19 Mar 1998 14:26:05 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA16856; Thu, 19 Mar 1998 14:25:50 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA00563; Thu, 19 Mar 1998 14:25:48 -0800 (PST) Date: Thu, 19 Mar 1998 14:25:48 -0800 (PST) Message-Id: <199803192225.OAA00563@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/03/19 14:25:47 PST Modified files: (Branch: MP) usr.sbin/ppp bundle.c Log: Don't print negative times in `show timeout' when the link is up with a timeout of 0. Revision Changes Path 1.1.2.30 +2 -2 src/usr.sbin/ppp/Attic/bundle.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 14:49:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA20811 for cvs-all-outgoing; Thu, 19 Mar 1998 14:49:51 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA20806; Thu, 19 Mar 1998 14:49:49 -0800 (PST) (envelope-from dyson@FreeBSD.org) From: John Dyson Received: (from dyson@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA00715; Thu, 19 Mar 1998 14:49:46 -0800 (PST) Date: Thu, 19 Mar 1998 14:49:46 -0800 (PST) Message-Id: <199803192249.OAA00715@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/conf options src/sys/kern kern_physio.c vfs_bio.c vfs_cluster.c vfs_subr.c src/sys/sys buf.h src/sys/ufs/ffs ffs_inode.c ffs_vnops.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dyson 1998/03/19 14:49:45 PST Modified files: sys/conf options Log: Add ENABLE_VFS_IOOPT kernel option. Revision Changes Path 1.68 +2 -1 src/sys/conf/options Modified files: sys/kern kern_physio.c vfs_bio.c vfs_cluster.c vfs_subr.c Log: In kern_physio.c fix tsleep priority messup. In vfs_bio.c, remove b_generation count usage, remove redundant reassignbuf, remove redundant spl(s), manage page PG_ZERO flags more correctly, utilize in invalid value for b_offset until it is properly initialized. Add asserts for #ifdef DIAGNOSTIC, when b_offset is improperly used. when a process is not performing I/O, and just waiting on a buffer generally, make the sleep priority low. only check page validity in getblk for B_VMIO buffers. In vfs_cluster, add b_offset asserts, correct pointer calculation for clustered reads. Improve readability of certain parts of the code. Remove redundant spl(s). In vfs_subr, correct usage of vfs_bio_awrite (From Andrew Gallatin ). More vtruncbuf problems fixed. Revision Changes Path 1.24 +1 -5 src/sys/kern/kern_physio.c 1.159 +71 -41 src/sys/kern/vfs_bio.c 1.60 +22 -11 src/sys/kern/vfs_cluster.c 1.145 +36 -28 src/sys/kern/vfs_subr.c Modified files: sys/sys buf.h Log: Remove b_generation. Revision Changes Path 1.49 +3 -2 src/sys/sys/buf.h Modified files: sys/ufs/ffs ffs_inode.c ffs_vnops.c Log: Fix vfs_bio_awrite usage, and correct vtruncbuf usage. Revision Changes Path 1.38 +8 -5 src/sys/ufs/ffs/ffs_inode.c 1.45 +9 -6 src/sys/ufs/ffs/ffs_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 Mar 19 16:43:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA11385 for cvs-all-outgoing; Thu, 19 Mar 1998 16:43:38 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA11379; Thu, 19 Mar 1998 16:43:35 -0800 (PST) (envelope-from fenner@FreeBSD.org) From: Bill Fenner Received: (from fenner@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA01002; Thu, 19 Mar 1998 16:43:34 -0800 (PST) Date: Thu, 19 Mar 1998 16:43:34 -0800 (PST) Message-Id: <199803200043.QAA01002@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/netinet tcp_input.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk fenner 1998/03/19 16:43:33 PST Modified files: sys/netinet tcp_input.c Log: Remove the check for SYN in SYN_RECEIVED state; it breaks simultaneous connect. This check was added as part of the defense against the "land" attack, to prevent attacks which guess the ISS from going into ESTABLISHED. The "src == dst" check will still prevent the single-homed case of the "land" attack, and guessing ISS's should be hard anyway. Submitted by: David Borman Revision Changes Path 1.71 +4 -10 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 Mar 19 18:06:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA24880 for cvs-all-outgoing; Thu, 19 Mar 1998 18:06:46 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA24838; Thu, 19 Mar 1998 18:06:12 -0800 (PST) (envelope-from cwt@FreeBSD.org) From: Chris Timmons Received: (from cwt@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA00502; Thu, 19 Mar 1998 18:06:11 -0800 (PST) Date: Thu, 19 Mar 1998 18:06:11 -0800 (PST) Message-Id: <199803200206.SAA00502@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/misc/amanda24 Makefile ports/misc/amanda24/files md5 ports/misc/amanda24/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk cwt 1998/03/19 18:06:11 PST Modified files: misc/amanda24 Makefile misc/amanda24/files md5 misc/amanda24/pkg PLIST Log: Build from the latest release candidate. Port update facilitated by: The Grateful Dead Revision Changes Path 1.14 +3 -3 ports/misc/amanda24/Makefile 1.6 +1 -1 ports/misc/amanda24/files/md5 1.6 +5 -5 ports/misc/amanda24/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 Mar 19 18:33:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA00649 for cvs-all-outgoing; Thu, 19 Mar 1998 18:33:46 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA00644; Thu, 19 Mar 1998 18:33:45 -0800 (PST) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA00620; Thu, 19 Mar 1998 18:33:46 -0800 (PST) Date: Thu, 19 Mar 1998 18:33:46 -0800 (PST) Message-Id: <199803200233.SAA00620@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/msdosfs msdosfs_denode.c msdosfs_vfsops.c msdosfs_vnops.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/03/19 18:33:45 PST Modified files: sys/msdosfs msdosfs_denode.c msdosfs_vfsops.c msdosfs_vnops.c Log: Deleted 1024bytes/sector floppy code for PC-98 arch. The 1024bytes/sector code has not worked for long time and it should be re-implemented. Revision Changes Path 1.33 +1 -8 src/sys/msdosfs/msdosfs_denode.c 1.31 +1 -41 src/sys/msdosfs/msdosfs_vfsops.c 1.66 +1 -15 src/sys/msdosfs/msdosfs_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 Mar 19 18:57:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA04740 for cvs-all-outgoing; Thu, 19 Mar 1998 18:57:04 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from dingo.cdrom.com (dingo.cdrom.com [204.216.28.145]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA04678; Thu, 19 Mar 1998 18:56:49 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost [127.0.0.1]) by dingo.cdrom.com (8.8.8/8.8.5) with ESMTP id SAA27548; Thu, 19 Mar 1998 18:53:02 -0800 (PST) Message-Id: <199803200253.SAA27548@dingo.cdrom.com> X-Mailer: exmh version 2.0zeta 7/24/97 To: "Jordan K. Hubbard" cc: Eivind Eklund , "Jordan K. Hubbard" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: Re: cvs commit: src/release/sysinstall disks.c In-reply-to: Your message of "Thu, 19 Mar 1998 07:37:04 PST." <13801.890321824@time.cdrom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 19 Mar 1998 18:53:02 -0800 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > > You wouldn't happen to have a clue how to handle the 're-install on > > dangerously dedicated' case correctly? It routinely bite people. > > I'd need a lot more information on how it's biting people. I wasn't > aware that there was any problem with this particular scenario > > > This is the case where a disk has only a BSD-bootsector on it, and > > sysinstall never-the-less write a standard DOS MBR over it (after > > having put up a requester asking the user if he want to, of course). > > Erm. So you're saying that the user is asking to be blown away, or > what exactly? I'm finding this whole message rather confusing, > frankly. :( Sorry if I'm missing context (150 messages down), but the case here is when the user is doing an upgrade. You only set the "don't ask about the MBR" flag when the user hits 'A' and answers 'yes' to the "incompatible" question. If you're upgrading a disk that was previously created like this, there's no attempt to detect this fact and set the flag accordingly. A "more correct" approach would be to look at the first disk just before putting up the requester, and if the first slice inside the whole disk slice starts at block 1 and is a freebsd slice, ie: if ((disk->slices != NULL) && (disk->slices->part != NULL) && (disk->slices->part->type == freebsd) && (disk->slices->part->offset == 1)) { do-not-ever-install-bootmanager } Finding the "first disk" is a bit of a chore; if wd0 exists use that, else use sd0, else forget looking. Hope that's actually useful. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 20:49:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA20651 for cvs-all-outgoing; Thu, 19 Mar 1998 20:49:24 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA20646; Thu, 19 Mar 1998 20:49:23 -0800 (PST) (envelope-from hosokawa@FreeBSD.org) From: Tatsumi Hosokawa Received: (from hosokawa@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA01075; Thu, 19 Mar 1998 20:49:23 -0800 (PST) Date: Thu, 19 Mar 1998 20:49:23 -0800 (PST) Message-Id: <199803200449.UAA01075@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pccard/pccardd readcis.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hosokawa 1998/03/19 20:49:22 PST Modified files: usr.sbin/pccard/pccardd readcis.c Log: Some parameter was left uninitialized when the card with incomplete "Version 1" CIS tupple is plugged after normal card. Revision Changes Path 1.12 +6 -1 src/usr.sbin/pccard/pccardd/readcis.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 19 21:39:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA27012 for cvs-all-outgoing; Thu, 19 Mar 1998 21:39:29 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA26992; Thu, 19 Mar 1998 21:39:25 -0800 (PST) (envelope-from hanai@FreeBSD.org) From: Hanai Hiroyuki Received: (from hanai@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA01242; Thu, 19 Mar 1998 21:39:24 -0800 (PST) Date: Thu, 19 Mar 1998 21:39:24 -0800 (PST) Message-Id: <199803200539.VAA01242@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/ja/man/man1 rdist.1 rtprio.1 uulog.1 doc/ja/man/man8 adduser.8 newsyslog.8 ppp.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hanai 1998/03/19 21:39:23 PST Modified files: ja/man/man1 rdist.1 rtprio.1 uulog.1 ja/man/man8 adduser.8 newsyslog.8 ppp.8 Log: Now, the Japanese Manual is for RELENG_2_2 980318. Reviewed by: Japanese Manual Project Submitted by: horikawa@jp.freebsd.org Revision Changes Path 1.3 +1 -0 doc/ja/man/man1/rdist.1 1.3 +2 -3 doc/ja/man/man1/rtprio.1 1.2 +1 -1 doc/ja/man/man1/uulog.1 1.3 +10 -10 doc/ja/man/man8/adduser.8 1.3 +8 -1 doc/ja/man/man8/newsyslog.8 1.6 +1 -1 doc/ja/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 Fri Mar 20 01:28:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA24910 for cvs-all-outgoing; Fri, 20 Mar 1998 01:28:20 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA24905; Fri, 20 Mar 1998 01:28:19 -0800 (PST) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA01858; Fri, 20 Mar 1998 01:28:17 -0800 (PST) Date: Fri, 20 Mar 1998 01:28:17 -0800 (PST) Message-Id: <199803200928.BAA01858@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/mail/exmh2 Makefile ports/mail/exmh2/files config.mh config.nmh config ports/mail/exmh2/pkg PLIST ports/mail/exmh2/scripts build Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/03/20 01:28:16 PST Modified files: mail/exmh2 Makefile mail/exmh2/pkg PLIST mail/exmh2/scripts build Added files: mail/exmh2/files config.mh config.nmh Removed files: mail/exmh2/files config Log: Allow this port to use NMH if USE_NMH is set. Revision Changes Path 1.27 +7 -2 ports/mail/exmh2/Makefile 1.9 +166 -166 ports/mail/exmh2/pkg/PLIST 1.6 +7 -2 ports/mail/exmh2/scripts/build To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 01:42:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA27157 for cvs-all-outgoing; Fri, 20 Mar 1998 01:42:59 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA27150; Fri, 20 Mar 1998 01:42:57 -0800 (PST) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA01914; Fri, 20 Mar 1998 01:42:55 -0800 (PST) Date: Fri, 20 Mar 1998 01:42:55 -0800 (PST) Message-Id: <199803200942.BAA01914@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/mail/exmh2/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/03/20 01:42:55 PST Modified files: mail/exmh2/pkg PLIST Log: Damn. Forgot to log that I fixed the PLIST as well. Revision Changes Path 1.10 +0 -0 ports/mail/exmh2/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 Mar 20 01:59:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA29510 for cvs-all-outgoing; Fri, 20 Mar 1998 01:59:54 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA29502; Fri, 20 Mar 1998 01:59:52 -0800 (PST) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA01991; Fri, 20 Mar 1998 01:59:50 -0800 (PST) Date: Fri, 20 Mar 1998 01:59:50 -0800 (PST) Message-Id: <199803200959.BAA01991@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/misc/ical Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/03/20 01:59:50 PST Modified files: misc/ical Makefile Log: Back out last change, use tcl8.0. Revision Changes Path 1.18 +7 -7 ports/misc/ical/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 03:08:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA07333 for cvs-all-outgoing; Fri, 20 Mar 1998 03:08:58 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA07328; Fri, 20 Mar 1998 03:08:57 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA02384; Fri, 20 Mar 1998 03:08:54 -0800 (PST) Date: Fri, 20 Mar 1998 03:08:54 -0800 (PST) Message-Id: <199803201108.DAA02384@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/groff Makefile.cfg Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/03/20 03:08:54 PST Modified files: gnu/usr.bin/groff Makefile.cfg Log: Removed bogus -I path. The correct path is in all subdir Makefiles where it matters. Revision Changes Path 2.6 +2 -2 src/gnu/usr.bin/groff/Makefile.cfg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 04:06:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA14153 for cvs-all-outgoing; Fri, 20 Mar 1998 04:06:04 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA14110; Fri, 20 Mar 1998 04:06:00 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA02609; Fri, 20 Mar 1998 04:05:54 -0800 (PST) Date: Fri, 20 Mar 1998 04:05:54 -0800 (PST) Message-Id: <199803201205.EAA02609@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/groff/eqn Makefile src/gnu/usr.bin/groff/pic Makefile src/gnu/usr.bin/groff/refer Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/03/20 04:05:53 PST Modified files: gnu/usr.bin/groff/eqn Makefile Log: Don't use beforedepend to complicate and break things. Just put generated source files in SRCS. Don't use MANDEPEND to complicate things. Just set MAN1 and put generated man pages in CLEANFILES. Added temporary files to CLEANFILES. Partly fixed a potentially fatal bug involving the yacc header. We generate eqn.cc (even if there is a version of it in the source directory older than eqn.y) and a matching eqn.tab.h, but only use the possibly-non-matching eqn.tab.h in the source directory. This works because Cygnus's yacc happened to generate a y.tab.h identical to the current generated one. The correct version will be used when the wrong version is deleted from the source tree. Kludge to get the header generated early enough. Yacc headers are mishandled everywhere they are renamed (and used). Generate neqn at build time, not at install time. Fixed some style bugs. Revision Changes Path 1.10 +14 -15 src/gnu/usr.bin/groff/eqn/Makefile Modified files: gnu/usr.bin/groff/pic Makefile Log: Don't use beforedepend to complicate and break things. Just put generated source files in SRCS. Don't use MANDEPEND to complicate things. Just put the generated man page in CLEANFILES. Partly fixed yacc header brokenness, as in ../eqn/Makefile. Added temporary files to CLEANFILES. Fixed some style bugs. Revision Changes Path 1.6 +8 -10 src/gnu/usr.bin/groff/pic/Makefile Modified files: gnu/usr.bin/groff/refer Makefile Log: Put generated source files in SRCS. This fixes races generating the source files. E.g., the stale version of locate.cc in the source directory was sometimes used. We didn't even use beforedepend. Added temporary files to CLEANFILES. Fixed some style bugs. Revision Changes Path 1.6 +6 -9 src/gnu/usr.bin/groff/refer/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 04:13:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA14686 for cvs-all-outgoing; Fri, 20 Mar 1998 04:13:17 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA14681; Fri, 20 Mar 1998 04:13:15 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA02654; Fri, 20 Mar 1998 04:13:12 -0800 (PST) Date: Fri, 20 Mar 1998 04:13:12 -0800 (PST) Message-Id: <199803201213.EAA02654@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/man/lib Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/03/20 04:13:12 PST Modified files: gnu/usr.bin/man/lib Makefile Log: Don't use beforedepend to complicate and break things. Just put generated source files in SRCS. Revision Changes Path 1.11 +1 -1 src/gnu/usr.bin/man/lib/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 04:20:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA16143 for cvs-all-outgoing; Fri, 20 Mar 1998 04:20:54 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA16137; Fri, 20 Mar 1998 04:20:48 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA02701; Fri, 20 Mar 1998 04:20:45 -0800 (PST) Date: Fri, 20 Mar 1998 04:20:45 -0800 (PST) Message-Id: <199803201220.EAA02701@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/mkdosfs Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/03/20 04:20:45 PST Modified files: usr.sbin/mkdosfs Makefile Log: Don't use beforedepend to complicate and break things. Just put generated source files in SRCS. Revision Changes Path 1.5 +2 -3 src/usr.sbin/mkdosfs/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 04:34:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA18172 for cvs-all-outgoing; Fri, 20 Mar 1998 04:34:30 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA18142; Fri, 20 Mar 1998 04:34:25 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA02763; Fri, 20 Mar 1998 04:34:22 -0800 (PST) Date: Fri, 20 Mar 1998 04:34:22 -0800 (PST) Message-Id: <199803201234.EAA02763@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/03/20 04:34:22 PST Modified files: usr.bin Makefile Log: Updated MISSING list. Revision Changes Path 1.95 +2 -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 Fri Mar 20 05:16:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA23416 for cvs-all-outgoing; Fri, 20 Mar 1998 05:16:51 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA23411; Fri, 20 Mar 1998 05:16:50 -0800 (PST) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA02872; Fri, 20 Mar 1998 05:16:46 -0800 (PST) Date: Fri, 20 Mar 1998 05:16:46 -0800 (PST) Message-Id: <199803201316.FAA02872@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/security/john/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/03/20 05:16:46 PST Modified files: security/john/pkg PLIST Log: Fixed dir names. Revision Changes Path 1.2 +6 -6 ports/security/john/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 Mar 20 05:57:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA27830 for cvs-all-outgoing; Fri, 20 Mar 1998 05:57:53 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA27816; Fri, 20 Mar 1998 05:57:49 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA03338; Fri, 20 Mar 1998 05:57:45 -0800 (PST) Date: Fri, 20 Mar 1998 05:57:45 -0800 (PST) Message-Id: <199803201357.FAA03338@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/squid11-novm Makefile ports/www/squid11-novm/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/20 05:57:44 PST Modified files: www/squid11-novm Makefile www/squid11-novm/files md5 Log: Update squid 1.NOVM.20 -> 1.NOVM.21 Revision Changes Path 1.12 +8 -5 ports/www/squid11-novm/Makefile 1.11 +2 -1 ports/www/squid11-novm/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 05:59:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA28086 for cvs-all-outgoing; Fri, 20 Mar 1998 05:59:01 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA28081; Fri, 20 Mar 1998 05:58:59 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA03403; Fri, 20 Mar 1998 05:58:56 -0800 (PST) Date: Fri, 20 Mar 1998 05:58:56 -0800 (PST) Message-Id: <199803201358.FAA03403@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/squid11 Makefile ports/www/squid11/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/20 05:58:56 PST Modified files: www/squid11 Makefile www/squid11/files md5 Log: Update squid 1.1.20 -> 1.1.21 Revision Changes Path 1.36 +4 -4 ports/www/squid11/Makefile 1.33 +1 -1 ports/www/squid11/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 06:01:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA28480 for cvs-all-outgoing; Fri, 20 Mar 1998 06:01:04 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA28454; Fri, 20 Mar 1998 06:00:59 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA03472; Fri, 20 Mar 1998 06:00:53 -0800 (PST) Date: Fri, 20 Mar 1998 06:00:53 -0800 (PST) Message-Id: <199803201400.GAA03472@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/squid12 Makefile ports/www/squid12/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/20 06:00:53 PST Modified files: www/squid12 Makefile www/squid12/files md5 Log: Update squid 1.2.beta16 -> 1.2.beta17 Revision Changes Path 1.47 +7 -7 ports/www/squid12/Makefile 1.39 +1 -2 ports/www/squid12/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 06:35:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA03661 for cvs-all-outgoing; Fri, 20 Mar 1998 06:35:38 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA03656; Fri, 20 Mar 1998 06:35:35 -0800 (PST) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA04619; Fri, 20 Mar 1998 06:35:31 -0800 (PST) Date: Fri, 20 Mar 1998 06:35:31 -0800 (PST) Message-Id: <199803201435.GAA04619@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/SpecTcl Makefile ports/devel/SpecTcl/patches patch-aa patch-ab ports/graphics/cqcam Makefile ports/graphics/cqcam/patches patch-aa ports/mail/exmh Makefile ports/mbone/imm Makefile ports/mbone/imm/files Makefile.freebsd ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/03/20 06:35:31 PST Modified files: devel/SpecTcl Makefile devel/SpecTcl/patches patch-aa patch-ab graphics/cqcam Makefile graphics/cqcam/patches patch-aa mail/exmh Makefile mbone/imm Makefile mbone/imm/files Makefile.freebsd misc/tkcron Makefile misc/tkcron/files Makefile devel/tkcvs Makefile devel/tkcvs/patches patch-aa misc/tkinfo Makefile misc/tkinfo/patches patch-aa devel/tkref Makefile games/tksol Makefile games/tksol/patches patch-a devel/vtcl Makefile devel/vtcl/patches patch-aa patch-ab audio/xcd Makefile audio/xcd/scripts configure converters/xdeview Makefile audio/xmpeg3 Makefile audio/xmpeg3/patches patch-aa misc/zorro Makefile misc/zorro/patches patch-aa Log: Back out changes to use tcl81. I have left out zircon, which seems to have provisions for tcl81, and hfsutils and filerunner, which have been upgraded and probably checked in the meantime. Revision Changes Path 1.5 +2 -2 ports/devel/SpecTcl/Makefile 1.3 +1 -1 ports/devel/SpecTcl/patches/patch-aa 1.3 +1 -1 ports/devel/SpecTcl/patches/patch-ab 1.4 +2 -3 ports/graphics/cqcam/Makefile 1.3 +2 -2 ports/graphics/cqcam/patches/patch-aa 1.12 +4 -4 ports/mail/exmh/Makefile 1.17 +2 -2 ports/mbone/imm/Makefile 1.4 +2 -2 ports/mbone/imm/files/Makefile.freebsd 1.7 +2 -2 ports/misc/tkcron/Makefile 1.4 +1 -1 ports/misc/tkcron/files/Makefile 1.13 +2 -2 ports/devel/tkcvs/Makefile 1.4 +2 -2 ports/devel/tkcvs/patches/patch-aa 1.18 +2 -2 ports/misc/tkinfo/Makefile 1.7 +1 -1 ports/misc/tkinfo/patches/patch-aa 1.5 +3 -3 ports/devel/tkref/Makefile 1.11 +2 -2 ports/games/tksol/Makefile 1.9 +1 -1 ports/games/tksol/patches/patch-a 1.8 +2 -2 ports/devel/vtcl/Makefile 1.5 +1 -1 ports/devel/vtcl/patches/patch-aa 1.4 +1 -1 ports/devel/vtcl/patches/patch-ab 1.20 +2 -2 ports/audio/xcd/Makefile 1.4 +1 -1 ports/audio/xcd/scripts/configure 1.12 +3 -3 ports/converters/xdeview/Makefile 1.6 +2 -2 ports/audio/xmpeg3/Makefile 1.5 +1 -1 ports/audio/xmpeg3/patches/patch-aa 1.11 +2 -2 ports/misc/zorro/Makefile 1.4 +1 -1 ports/misc/zorro/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 06:54:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA06198 for cvs-all-outgoing; Fri, 20 Mar 1998 06:54:59 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA06193; Fri, 20 Mar 1998 06:54:56 -0800 (PST) (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA04769; Fri, 20 Mar 1998 06:54:52 -0800 (PST) Date: Fri, 20 Mar 1998 06:54:52 -0800 (PST) Message-Id: <199803201454.GAA04769@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/japanese/vflib Makefile ports/japanese/vflib/files md5 ports/japanese/vflib/patches patch-aa ports/japanese/vflib/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/03/20 06:54:52 PST Modified files: japanese/vflib Makefile japanese/vflib/files md5 japanese/vflib/patches patch-aa japanese/vflib/pkg DESCR Log: freetype support patch added. (depends on ports/print/freetype) Submitted by: mita@jp.freebsd.org Revision Changes Path 1.12 +35 -8 ports/japanese/vflib/Makefile 1.6 +2 -1 ports/japanese/vflib/files/md5 1.8 +204 -239 ports/japanese/vflib/patches/patch-aa 1.2 +14 -0 ports/japanese/vflib/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 Mar 20 06:56:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA06335 for cvs-all-outgoing; Fri, 20 Mar 1998 06:56:16 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA06330; Fri, 20 Mar 1998 06:56:14 -0800 (PST) (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA04809; Fri, 20 Mar 1998 06:56:11 -0800 (PST) Date: Fri, 20 Mar 1998 06:56:11 -0800 (PST) Message-Id: <199803201456.GAA04809@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/japanese/vflib/patches patch-ac Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/03/20 06:56:10 PST Added files: japanese/vflib/patches patch-ac Log: freetype support patch added. (depends on ports/print/freetype) Submitted by: mita@jp.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 Mar 20 07:05:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA07259 for cvs-all-outgoing; Fri, 20 Mar 1998 07:05:33 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA07252; Fri, 20 Mar 1998 07:05:32 -0800 (PST) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA04870; Fri, 20 Mar 1998 07:05:28 -0800 (PST) Date: Fri, 20 Mar 1998 07:05:28 -0800 (PST) Message-Id: <199803201505.HAA04870@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/mail/fetchmail Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/03/20 07:05:28 PST Modified files: mail/fetchmail Makefile Log: Clean up the KerberosIV workings Revision Changes Path 1.57 +3 -3 ports/mail/fetchmail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 07:11:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA07686 for cvs-all-outgoing; Fri, 20 Mar 1998 07:11:09 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA07671; Fri, 20 Mar 1998 07:11:05 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA04937; Fri, 20 Mar 1998 07:11:01 -0800 (PST) Date: Fri, 20 Mar 1998 07:11:01 -0800 (PST) Message-Id: <199803201511.HAA04937@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/lib/libstdc++ Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/03/20 07:11:01 PST Modified files: gnu/lib/libstdc++ Makefile Log: Don't use beforedepend to complicate and break things. The usual fix of putting generated source files in SRCS breaks many special cases (many dependencies had to be incomplete for ${.ALLSRC} not to give .h files that would break compiling with c++ -c). Reduce these special cases to the general case so that SRCS works normally and bsd.lib.mk handles most of the complications. Now we only have to duplicate rules from bsd.lib.mk to add special CFLAGS in some cases. Revision Changes Path 1.9 +65 -140 src/gnu/lib/libstdc++/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 07:12:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA07787 for cvs-all-outgoing; Fri, 20 Mar 1998 07:12:08 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA07778; Fri, 20 Mar 1998 07:12:05 -0800 (PST) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA04952; Fri, 20 Mar 1998 07:12:02 -0800 (PST) Date: Fri, 20 Mar 1998 07:12:02 -0800 (PST) Message-Id: <199803201512.HAA04952@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/xlockmore/patches patch-ab Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/03/20 07:12:01 PST Added files: x11/xlockmore/patches patch-ab Log: Rats. A broken remote commit fouled up the rest of this commit. Makefile is also affected. Make kerberos 4 work. Now if MAKE_KERBEROS4 is set, xlock will get a TGT for the user whn she types in her (kerberos) password. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 08:21:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA18372 for cvs-all-outgoing; Fri, 20 Mar 1998 08:21:47 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA18357; Fri, 20 Mar 1998 08:21:45 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA28081; Fri, 20 Mar 1998 08:21:41 -0800 (PST) Date: Fri, 20 Mar 1998 08:21:41 -0800 (PST) Message-Id: <199803201621.IAA28081@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/compile_et Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/03/20 08:21:40 PST Modified files: usr.bin/compile_et Makefile Log: Don't use beforedepend to break things. The usual fix of putting generated sources in SRCS breaks because compile_et uses an evil include of one .c file in another. Use a worse fix. Perhaps DPSRCS is useful after all. Don't put *.y in SRCS. Put the generated file in SRCS instead. This fixes incomplete dependencies (mkdep can't work on *.y). Don't override the default .l.c rule. Just use LFLAGS. Fixed some style bugs. Revision Changes Path 1.8 +9 -11 src/usr.bin/compile_et/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 08:30:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA20819 for cvs-all-outgoing; Fri, 20 Mar 1998 08:30:50 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA20791; Fri, 20 Mar 1998 08:30:37 -0800 (PST) (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA28221; Fri, 20 Mar 1998 08:30:31 -0800 (PST) Date: Fri, 20 Mar 1998 08:30:31 -0800 (PST) Message-Id: <199803201630.IAA28221@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/japanese/man-doc Makefile ports/japanese/man-doc/files install-man.tmpl md5 ports/japanese/man-doc/patches patch-aa patch-ab ports/japanese/man-doc/pkg PLIST COMMENT DESCR MESSAGE ports/japanese/man-doc/scripts configure Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/03/20 08:30:31 PST Modified files: japanese/man-doc Makefile japanese/man-doc/pkg COMMENT DESCR MESSAGE japanese/man-doc/scripts configure Added files: japanese/man-doc/patches patch-aa patch-ab japanese/man-doc/pkg PLIST Removed files: japanese/man-doc/files install-man.tmpl md5 Log: Makefile simplifications. PR: 6050 Revision Changes Path 1.18 +34 -25 ports/japanese/man-doc/Makefile 1.3 +1 -1 ports/japanese/man-doc/pkg/COMMENT 1.3 +9 -1 ports/japanese/man-doc/pkg/DESCR 1.2 +4 -3 ports/japanese/man-doc/pkg/MESSAGE 1.3 +0 -14 ports/japanese/man-doc/scripts/configure To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 08:36:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA22029 for cvs-all-outgoing; Fri, 20 Mar 1998 08:36:05 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA21950; Fri, 20 Mar 1998 08:35:57 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA28371; Fri, 20 Mar 1998 08:35:49 -0800 (PST) Date: Fri, 20 Mar 1998 08:35:49 -0800 (PST) Message-Id: <199803201635.IAA28371@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern subr_diskslice.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/20 08:35:49 PST Modified files: (Branch: RELENG_2_2) sys/kern subr_diskslice.c Log: MFC: fix a compatibility slice aliasing bug Requested by: bde Revision Changes Path 1.30.2.2 +13 -3 src/sys/kern/subr_diskslice.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 08:41:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA23454 for cvs-all-outgoing; Fri, 20 Mar 1998 08:41:37 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA23427; Fri, 20 Mar 1998 08:41:22 -0800 (PST) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA28451; Fri, 20 Mar 1998 08:41:17 -0800 (PST) Date: Fri, 20 Mar 1998 08:41:17 -0800 (PST) Message-Id: <199803201641.IAA28451@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook kernelconfig.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/03/20 08:41:16 PST Modified files: handbook kernelconfig.sgml Log: Mention EXT2FS in the list of filesystem options. Revision Changes Path 1.31 +8 -1 doc/handbook/kernelconfig.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 08:49:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA26211 for cvs-all-outgoing; Fri, 20 Mar 1998 08:49:55 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA26185; Fri, 20 Mar 1998 08:49:50 -0800 (PST) (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA28605; Fri, 20 Mar 1998 08:49:45 -0800 (PST) Date: Fri, 20 Mar 1998 08:49:45 -0800 (PST) Message-Id: <199803201649.IAA28605@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/japanese/man Makefile ports/japanese/man/files md5 jman.el patch-noxpg4 patch-xpg4.tmpl ports/japanese/man/patches patch-aa patch-ab ports/japanese/man/pkg INSTALL PLIST DEINSTALL Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/03/20 08:49:44 PST Modified files: japanese/man Makefile japanese/man/files md5 japanese/man/pkg INSTALL PLIST Added files: japanese/man/patches patch-aa patch-ab Removed files: japanese/man/files jman.el patch-noxpg4 patch-xpg4.tmpl japanese/man/pkg DEINSTALL Log: original distribution updated to 1.1f. simplify xpg4 related things. do not depend on emacs. PR: 5251 Revision Changes Path 1.14 +9 -52 ports/japanese/man/Makefile 1.5 +1 -1 ports/japanese/man/files/md5 1.4 +10 -24 ports/japanese/man/pkg/INSTALL 1.4 +21 -9 ports/japanese/man/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 Mar 20 08:50:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA26405 for cvs-all-outgoing; Fri, 20 Mar 1998 08:50:29 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA26344; Fri, 20 Mar 1998 08:50:18 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA28643; Fri, 20 Mar 1998 08:50:11 -0800 (PST) Date: Fri, 20 Mar 1998 08:50:11 -0800 (PST) Message-Id: <199803201650.IAA28643@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libncurses Makefile lib_options.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/03/20 08:50:11 PST Modified files: lib/libncurses Makefile lib_options.c Log: Renamed the generated include file keys.tries to keys.tries.h so that it can be put in SRCS for dependency generation to work properly. Don't use beforedepend, as usual. Revision Changes Path 1.25 +6 -10 src/lib/libncurses/Makefile 1.4 +2 -2 src/lib/libncurses/lib_options.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 08:53:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA27299 for cvs-all-outgoing; Fri, 20 Mar 1998 08:53:13 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA27282; Fri, 20 Mar 1998 08:53:09 -0800 (PST) (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA28701; Fri, 20 Mar 1998 08:53:05 -0800 (PST) Date: Fri, 20 Mar 1998 08:53:05 -0800 (PST) Message-Id: <199803201653.IAA28701@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc/mtree BSD.local.dist BSD.x11.dist Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/03/20 08:53:05 PST Modified files: etc/mtree BSD.local.dist BSD.x11.dist Log: /usr/local/man/ja_JP.EUC -> /usr/local/man/ja PR: 5251 Revision Changes Path 1.37 +2 -2 src/etc/mtree/BSD.local.dist 1.3 +2 -2 src/etc/mtree/BSD.x11.dist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 08:54:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA27611 for cvs-all-outgoing; Fri, 20 Mar 1998 08:54:46 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA27605; Fri, 20 Mar 1998 08:54:40 -0800 (PST) (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA28750; Fri, 20 Mar 1998 08:54:34 -0800 (PST) Date: Fri, 20 Mar 1998 08:54:34 -0800 (PST) Message-Id: <199803201654.IAA28750@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc/mtree BSD.local.dist BSD.x11.dist Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/03/20 08:54:34 PST Modified files: (Branch: RELENG_2_2) etc/mtree BSD.local.dist BSD.x11.dist Log: /usr/local/man/ja_JP.EUC -> /usr/local/man/ja PR: 5251 Revision Changes Path 1.17.2.12 +2 -2 src/etc/mtree/BSD.local.dist 1.1.2.3 +2 -2 src/etc/mtree/BSD.x11.dist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 09:18:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA04233 for cvs-all-outgoing; Fri, 20 Mar 1998 09:18:03 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA04221; Fri, 20 Mar 1998 09:18:02 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA28981; Fri, 20 Mar 1998 09:17:58 -0800 (PST) Date: Fri, 20 Mar 1998 09:17:58 -0800 (PST) Message-Id: <199803201717.JAA28981@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall/help readme.hlp upgrade.hlp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/20 09:17:57 PST Modified files: (Branch: RELENG_2_2) release/sysinstall/help readme.hlp upgrade.hlp Log: 2.2.5 -> 2.2.6 Revision Changes Path 1.12.2.13 +6 -6 src/release/sysinstall/help/readme.hlp 1.6.2.9 +1 -1 src/release/sysinstall/help/upgrade.hlp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 09:40:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA09071 for cvs-all-outgoing; Fri, 20 Mar 1998 09:40:35 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA09045; Fri, 20 Mar 1998 09:40:26 -0800 (PST) (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA29267; Fri, 20 Mar 1998 09:40:14 -0800 (PST) Date: Fri, 20 Mar 1998 09:40:14 -0800 (PST) Message-Id: <199803201740.JAA29267@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/japanese/mnews Makefile ports/japanese/mnews/files Makefile.in md5 site_dep.h.in Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/03/20 09:40:14 PST Modified files: japanese/mnews Makefile japanese/mnews/files Makefile.in md5 site_dep.h.in Log: original distribution version-up( -> 1.21) PR: 6033 Revision Changes Path 1.10 +25 -14 ports/japanese/mnews/Makefile 1.3 +69 -45 ports/japanese/mnews/files/Makefile.in 1.3 +1 -1 ports/japanese/mnews/files/md5 1.4 +28 -7 ports/japanese/mnews/files/site_dep.h.in To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 09:48:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA11669 for cvs-all-outgoing; Fri, 20 Mar 1998 09:48:22 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA11657; Fri, 20 Mar 1998 09:48:21 -0800 (PST) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA29589; Fri, 20 Mar 1998 09:48:16 -0800 (PST) Date: Fri, 20 Mar 1998 09:48:16 -0800 (PST) Message-Id: <199803201748.JAA29589@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-kerberosIV@FreeBSD.ORG Subject: cvs commit: src/kerberosIV Makefile.inc src/kerberosIV/lib/libkrb Makefile src/kerberosIV/usr.bin/kadmin Makefile src/kerberosIV/usr.sbin/kadmind Makefile src/kerberosIV/usr.sbin/ksrvutil Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/03/20 09:48:15 PST Modified files: kerberosIV Makefile.inc kerberosIV/lib/libkrb Makefile kerberosIV/usr.bin/kadmin Makefile kerberosIV/usr.sbin/kadmind Makefile kerberosIV/usr.sbin/ksrvutil Makefile Log: More fixes to help fix race bags in "make -jN". Submitted by: BDE (Mostly) Revision Changes Path 1.2 +2 -2 src/kerberosIV/Makefile.inc 1.2 +2 -3 src/kerberosIV/lib/libkrb/Makefile 1.5 +2 -3 src/kerberosIV/usr.bin/kadmin/Makefile 1.2 +1 -3 src/kerberosIV/usr.sbin/kadmind/Makefile 1.4 +3 -4 src/kerberosIV/usr.sbin/ksrvutil/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 09:51:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA12379 for cvs-all-outgoing; Fri, 20 Mar 1998 09:51:46 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA12361 for ; Fri, 20 Mar 1998 09:51:38 -0800 (PST) (envelope-from j@uriah.heep.sax.de) Received: (from uucp@localhost) by sax.sax.de (8.8.8/8.8.8) with UUCP id SAA02278; Fri, 20 Mar 1998 18:51:25 +0100 (CET) (envelope-from j@uriah.heep.sax.de) Received: (from j@localhost) by uriah.heep.sax.de (8.8.8/8.8.5) id SAA18279; Fri, 20 Mar 1998 18:39:19 +0100 (MET) Message-ID: <19980320183919.62224@uriah.heep.sax.de> Date: Fri, 20 Mar 1998 18:39:19 +0100 From: J Wunsch To: "Jordan K. Hubbard" Cc: Eivind Eklund , cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: src/release/sysinstall disks.c Reply-To: Joerg Wunsch References: <19980319163042.52677@follo.net> <13801.890321824@time.cdrom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.88 In-Reply-To: <13801.890321824@time.cdrom.com>; from Jordan K. Hubbard on Thu, Mar 19, 1998 at 07:37:04AM -0800 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk As Jordan K. Hubbard wrote: > > You wouldn't happen to have a clue how to handle the 're-install on > > dangerously dedicated' case correctly? It routinely bite people. > > I'd need a lot more information on how it's biting people. I wasn't > aware that there was any problem with this particular scenario That's simple. The way sysinstall `detects' that a user is running `DD' mode is by just remembering the historical event that this user has been answering `A)ll FreeBSD', followed by `no'. Only in this case (and after this sequence in the fdisk manager), the final question about to install which MBR is being skipped. Needless to say, that doesn't actually count as `detection' of a DD case, so in case you've actually decided for a DD system previously (be it half a year ago, or just five minutes ago in a previous fdisk manager run), it'll offer the MBR menue again, defaulting to booteasy. Installing booteasy (or a standard MBR) over a DD disk shoots the user into his foot. I didn't find an easy solution to this problem back in the days when i hacked DD mode into sysinstall, short of rewriting a bunch of code. I've punted on that option since there has been the promise for years now that sysinstall will be abandoned some day... -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 10:00:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA13417 for cvs-all-outgoing; Fri, 20 Mar 1998 10:00:18 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA13395; Fri, 20 Mar 1998 10:00:12 -0800 (PST) (envelope-from joerg@FreeBSD.org) From: Joerg Wunsch Received: (from joerg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA29643; Fri, 20 Mar 1998 10:00:07 -0800 (PST) Date: Fri, 20 Mar 1998 10:00:07 -0800 (PST) Message-Id: <199803201800.KAA29643@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/scsi scsi_base.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk joerg 1998/03/20 10:00:07 PST Modified files: (Branch: RELENG_2_2) sys/scsi scsi_base.c Log: Partial merge of rev 1.52: bump the timeout in scsi_start_unit() to 30 seconds since some drives are slow enough to come up. Requested by: Leif Neland Revision Changes Path 1.39.4.6 +2 -2 src/sys/scsi/scsi_base.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 10:07:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA15579 for cvs-all-outgoing; Fri, 20 Mar 1998 10:07:16 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA15562; Fri, 20 Mar 1998 10:07:10 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA29691; Fri, 20 Mar 1998 10:07:04 -0800 (PST) Date: Fri, 20 Mar 1998 10:07:04 -0800 (PST) Message-Id: <199803201807.KAA29691@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall devices.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/20 10:07:04 PST Modified files: release/sysinstall devices.c Log: My face is red - make the code for creating slices actually work now. Revision Changes Path 1.73 +4 -3 src/release/sysinstall/devices.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 10:07:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA15718 for cvs-all-outgoing; Fri, 20 Mar 1998 10:07:43 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA15688; Fri, 20 Mar 1998 10:07:34 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA29727; Fri, 20 Mar 1998 10:07:29 -0800 (PST) Date: Fri, 20 Mar 1998 10:07:29 -0800 (PST) Message-Id: <199803201807.KAA29727@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall devices.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/20 10:07:29 PST Modified files: (Branch: RELENG_2_2) release/sysinstall devices.c Log: MFC: fix slice entries. Revision Changes Path 1.49.2.18 +4 -3 src/release/sysinstall/devices.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 10:26:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA19960 for cvs-all-outgoing; Fri, 20 Mar 1998 10:26:17 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA19952; Fri, 20 Mar 1998 10:26:12 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA29825; Fri, 20 Mar 1998 10:26:06 -0800 (PST) Date: Fri, 20 Mar 1998 10:26:06 -0800 (PST) Message-Id: <199803201826.KAA29825@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall devices.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/20 10:26:06 PST Modified files: release/sysinstall devices.c Log: Ack, fix typo in last commit. Revision Changes Path 1.74 +2 -2 src/release/sysinstall/devices.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 10:26:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA19988 for cvs-all-outgoing; Fri, 20 Mar 1998 10:26:31 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA19982; Fri, 20 Mar 1998 10:26:29 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA29861; Fri, 20 Mar 1998 10:26:24 -0800 (PST) Date: Fri, 20 Mar 1998 10:26:24 -0800 (PST) Message-Id: <199803201826.KAA29861@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall devices.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/20 10:26:24 PST Modified files: (Branch: RELENG_2_2) release/sysinstall devices.c Log: MFC: I suck. Fix typo. Revision Changes Path 1.49.2.19 +2 -2 src/release/sysinstall/devices.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 11:25:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA04629 for cvs-all-outgoing; Fri, 20 Mar 1998 11:25:55 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA04603; Fri, 20 Mar 1998 11:25:47 -0800 (PST) (envelope-from fenner@FreeBSD.org) From: Bill Fenner Received: (from fenner@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA00176; Fri, 20 Mar 1998 11:25:41 -0800 (PST) Date: Fri, 20 Mar 1998 11:25:41 -0800 (PST) Message-Id: <199803201925.LAA00176@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/math/xplot Makefile ports/math/xplot/files md5 ports/math/xplot/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk fenner 1998/03/20 11:25:41 PST Modified files: math/xplot Makefile math/xplot/files md5 math/xplot/pkg PLIST Log: Upgrade to 0.90 Revision Changes Path 1.2 +3 -3 ports/math/xplot/Makefile 1.2 +1 -1 ports/math/xplot/files/md5 1.2 +2 -0 ports/math/xplot/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 Mar 20 11:47:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA09575 for cvs-all-outgoing; Fri, 20 Mar 1998 11:47:20 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA09570; Fri, 20 Mar 1998 11:47:19 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA00300; Fri, 20 Mar 1998 11:47:14 -0800 (PST) Date: Fri, 20 Mar 1998 11:47:14 -0800 (PST) Message-Id: <199803201947.LAA00300@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp ccp.c fsm.c fsm.h ipcp.c lcp.c lcp.h lqr.c ppp.8 vars.c vars.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/03/20 11:47:13 PST Modified files: (Branch: MP) usr.sbin/ppp ccp.c fsm.c fsm.h ipcp.c lcp.c lcp.h lqr.c ppp.8 vars.c vars.h Log: o Check the LCP Identifier field for correctness and drop dodgy packets by default. The old behaviour is still available with ``disable idcheck''. o Make all FSM diagnostics consistent and tidy up the way we build our LCP/CCP/IPCP requests. o Don't assume sizeof(u_long) == 4. Revision Changes Path 1.30.2.26 +14 -16 src/usr.sbin/ppp/ccp.c 1.27.2.23 +94 -87 src/usr.sbin/ppp/fsm.c 1.16.2.11 +3 -3 src/usr.sbin/ppp/fsm.h 1.50.2.25 +24 -40 src/usr.sbin/ppp/ipcp.c 1.55.2.31 +36 -105 src/usr.sbin/ppp/lcp.c 1.16.2.15 +8 -3 src/usr.sbin/ppp/lcp.h 1.22.2.15 +3 -3 src/usr.sbin/ppp/lqr.c 1.97.2.7 +11 -1 src/usr.sbin/ppp/ppp.8 1.45.2.16 +3 -2 src/usr.sbin/ppp/vars.c 1.42.2.14 +3 -2 src/usr.sbin/ppp/vars.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 11:47:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA09608 for cvs-all-outgoing; Fri, 20 Mar 1998 11:47:34 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA09602; Fri, 20 Mar 1998 11:47:32 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA00339; Fri, 20 Mar 1998 11:47:27 -0800 (PST) Date: Fri, 20 Mar 1998 11:47:27 -0800 (PST) Message-Id: <199803201947.LAA00339@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp modem.c physical.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/03/20 11:47:27 PST Modified files: (Branch: MP) usr.sbin/ppp modem.c physical.h Log: Remove struct physical::abort. Revision Changes Path 1.77.2.39 +3 -8 src/usr.sbin/ppp/modem.c 1.1.2.16 +1 -2 src/usr.sbin/ppp/Attic/physical.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 11:47:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA09634 for cvs-all-outgoing; Fri, 20 Mar 1998 11:47:39 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA09627; Fri, 20 Mar 1998 11:47:37 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA00370; Fri, 20 Mar 1998 11:47:31 -0800 (PST) Date: Fri, 20 Mar 1998 11:47:31 -0800 (PST) Message-Id: <199803201947.LAA00370@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp lqr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/03/20 11:47:31 PST Modified files: (Branch: MP) usr.sbin/ppp lqr.c Log: Don't show ECHO LQRs in the LQM log - they're already show in the LCP log. Revision Changes Path 1.22.2.16 +1 -4 src/usr.sbin/ppp/lqr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 11:48:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA09940 for cvs-all-outgoing; Fri, 20 Mar 1998 11:48:42 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA09926; Fri, 20 Mar 1998 11:48:40 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA00520; Fri, 20 Mar 1998 11:48:35 -0800 (PST) Date: Fri, 20 Mar 1998 11:48:35 -0800 (PST) Message-Id: <199803201948.LAA00520@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp arp.c bundle.c bundle.h ccp.c chat.c command.c datalink.c descriptor.h ip.c ipcp.c lcp.c link.c main.c modem.c physical.c physical.h prompt.c route.c server.c tun.c vjcomp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/03/20 11:48:35 PST Modified files: (Branch: MP) usr.sbin/ppp arp.c bundle.c bundle.h ccp.c chat.c command.c datalink.c descriptor.h ip.c ipcp.c lcp.c link.c main.c modem.c physical.c physical.h prompt.c route.c server.c tun.c vjcomp.c Log: Make struct bundle into a sort of `struct descriptor'. It does the fdsets/reads/writes for each of it's datalinks. Revision Changes Path 1.27.2.9 +2 -1 src/usr.sbin/ppp/arp.c 1.1.2.31 +58 -18 src/usr.sbin/ppp/Attic/bundle.c 1.1.2.20 +5 -3 src/usr.sbin/ppp/Attic/bundle.h 1.30.2.27 +2 -2 src/usr.sbin/ppp/ccp.c 1.44.2.17 +2 -2 src/usr.sbin/ppp/chat.c 1.131.2.42 +2 -2 src/usr.sbin/ppp/command.c 1.1.2.27 +2 -2 src/usr.sbin/ppp/Attic/datalink.c 1.1.2.8 +3 -2 src/usr.sbin/ppp/Attic/descriptor.h 1.38.2.15 +2 -1 src/usr.sbin/ppp/ip.c 1.50.2.26 +2 -2 src/usr.sbin/ppp/ipcp.c 1.55.2.32 +2 -2 src/usr.sbin/ppp/lcp.c 1.1.2.14 +2 -2 src/usr.sbin/ppp/Attic/link.c 1.121.2.36 +8 -8 src/usr.sbin/ppp/main.c 1.77.2.40 +2 -2 src/usr.sbin/ppp/modem.c 1.1.2.19 +2 -2 src/usr.sbin/ppp/Attic/physical.c 1.1.2.17 +2 -2 src/usr.sbin/ppp/Attic/physical.h 1.1.2.16 +2 -2 src/usr.sbin/ppp/Attic/prompt.c 1.42.2.13 +2 -2 src/usr.sbin/ppp/route.c 1.16.2.9 +2 -2 src/usr.sbin/ppp/server.c 1.6.4.9 +2 -1 src/usr.sbin/ppp/tun.c 1.16.2.10 +2 -1 src/usr.sbin/ppp/vjcomp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 14:01:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA05799 for cvs-all-outgoing; Fri, 20 Mar 1998 14:01:15 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA05736; Fri, 20 Mar 1998 14:01:10 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA00861; Fri, 20 Mar 1998 14:01:04 -0800 (PST) Date: Fri, 20 Mar 1998 14:01:04 -0800 (PST) Message-Id: <199803202201.OAA00861@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall devices.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/20 14:01:03 PST Modified files: (Branch: RELENG_2_2) release/sysinstall devices.c Log: Change major number for wfd device. Revision Changes Path 1.49.2.20 +2 -2 src/release/sysinstall/devices.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 15:15:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA24442 for cvs-all-outgoing; Fri, 20 Mar 1998 15:15:20 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA24340; Fri, 20 Mar 1998 15:15:06 -0800 (PST) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA01034; Fri, 20 Mar 1998 15:14:54 -0800 (PST) Date: Fri, 20 Mar 1998 15:14:54 -0800 (PST) Message-Id: <199803202314.PAA01034@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa wfd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/03/20 15:14:53 PST Modified files: sys/i386/isa wfd.c Log: Remove unuseful (and annoying) ENXIO printf. Revision Changes Path 1.9 +3 -6 src/sys/i386/isa/wfd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 15:16:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA24723 for cvs-all-outgoing; Fri, 20 Mar 1998 15:16:17 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA24590; Fri, 20 Mar 1998 15:15:40 -0800 (PST) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA01070; Fri, 20 Mar 1998 15:15:32 -0800 (PST) Date: Fri, 20 Mar 1998 15:15:32 -0800 (PST) Message-Id: <199803202315.PAA01070@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa wfd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/03/20 15:15:31 PST Modified files: (Branch: RELENG_2_2) sys/i386/isa wfd.c Log: MFC - remove ENXIO printf Revision Changes Path 1.1.2.5 +3 -6 src/sys/i386/isa/wfd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 15:27:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA28707 for cvs-all-outgoing; Fri, 20 Mar 1998 15:27:42 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA28678; Fri, 20 Mar 1998 15:27:34 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA01121; Fri, 20 Mar 1998 15:27:24 -0800 (PST) Date: Fri, 20 Mar 1998 15:27:24 -0800 (PST) Message-Id: <199803202327.PAA01121@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libdisk create_chunk.c disk.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/20 15:27:23 PST Modified files: (Branch: RELENG_2_2) lib/libdisk create_chunk.c disk.c Log: Teach libdisk about wfd drives. Revision Changes Path 1.24.2.3 +3 -1 src/lib/libdisk/create_chunk.c 1.22.2.7 +2 -2 src/lib/libdisk/disk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 15:40:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA01926 for cvs-all-outgoing; Fri, 20 Mar 1998 15:40:13 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA01920; Fri, 20 Mar 1998 15:40:08 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA01180; Fri, 20 Mar 1998 15:40:01 -0800 (PST) Date: Fri, 20 Mar 1998 15:40:01 -0800 (PST) Message-Id: <199803202340.PAA01180@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall devices.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/20 15:40:00 PST Modified files: release/sysinstall devices.c Log: MF22: create raw slice entries. Revision Changes Path 1.75 +9 -3 src/release/sysinstall/devices.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 15:40:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA02033 for cvs-all-outgoing; Fri, 20 Mar 1998 15:40:35 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA02000; Fri, 20 Mar 1998 15:40:26 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA01214; Fri, 20 Mar 1998 15:40:19 -0800 (PST) Date: Fri, 20 Mar 1998 15:40:19 -0800 (PST) Message-Id: <199803202340.PAA01214@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall devices.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/20 15:40:19 PST Modified files: (Branch: RELENG_2_2) release/sysinstall devices.c Log: create raw slices correctly. Revision Changes Path 1.49.2.21 +8 -2 src/release/sysinstall/devices.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 15:43:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA02389 for cvs-all-outgoing; Fri, 20 Mar 1998 15:43:14 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA02384; Fri, 20 Mar 1998 15:43:12 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA01261; Fri, 20 Mar 1998 15:43:05 -0800 (PST) Date: Fri, 20 Mar 1998 15:43:05 -0800 (PST) Message-Id: <199803202343.PAA01261@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libdisk create_chunk.c disk.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/20 15:43:05 PST Modified files: lib/libdisk create_chunk.c disk.c Log: MF22: teach about LS-120 devices. Revision Changes Path 1.30 +3 -1 src/lib/libdisk/create_chunk.c 1.32 +2 -2 src/lib/libdisk/disk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 16:32:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA09945 for cvs-all-outgoing; Fri, 20 Mar 1998 16:32:31 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA09938; Fri, 20 Mar 1998 16:32:29 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA01367; Fri, 20 Mar 1998 16:32:22 -0800 (PST) Date: Fri, 20 Mar 1998 16:32:22 -0800 (PST) Message-Id: <199803210032.QAA01367@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libdisk create_chunk.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/20 16:32:22 PST Modified files: (Branch: RELENG_2_2) lib/libdisk create_chunk.c Log: Deal with device names > 2 chars in length. Revision Changes Path 1.24.2.4 +5 -6 src/lib/libdisk/create_chunk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 17:24:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA18127 for cvs-all-outgoing; Fri, 20 Mar 1998 17:24:39 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA18078; Fri, 20 Mar 1998 17:24:36 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from baloon.mimi.com (sjx-ca126-11.ix.netcom.com [207.92.177.203]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id RAA29473; Fri, 20 Mar 1998 17:24:35 -0800 (PST) Received: (from asami@localhost) by baloon.mimi.com (8.8.8/8.8.8) id RAA01040; Fri, 20 Mar 1998 17:24:32 -0800 (PST) (envelope-from asami) Date: Fri, 20 Mar 1998 17:24:32 -0800 (PST) Message-Id: <199803210124.RAA01040@baloon.mimi.com> To: committers@FreeBSD.ORG, ports@FreeBSD.ORG In-reply-to: <199803050702.XAA17975@silvia.HIP.Berkeley.EDU> (asami@freebsd.org) Subject: Re: When: 2.2.5-stable branch freeze and beginning of 2.2.6-BETA From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Ok. The ports freeze will be at 20th, if the 2.2.6 beta proceeds as * scheduled. It seems everything is on schedule, so the freeze will happen tonight. It is going to be the midnight between 20th and 21st in U.S. Pacific Standard Time. (We are 8 hours behind GMT and 17 hours behind Japan, in case anyone is planning to break the tree in the last moment. :) In case you haven't been around for previous releases: after the freeze, all commits (no exceptions) to the ports tree will have to be authorized by me. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 17:36:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA20114 for cvs-all-outgoing; Fri, 20 Mar 1998 17:36:57 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA20106; Fri, 20 Mar 1998 17:36:55 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA01477; Fri, 20 Mar 1998 17:36:43 -0800 (PST) Date: Fri, 20 Mar 1998 17:36:43 -0800 (PST) Message-Id: <199803210136.RAA01477@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall disks.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/20 17:36:43 PST Modified files: (Branch: RELENG_2_2) release/sysinstall disks.c Log: Don't ask for a boot manager if the last time we came through was with a dedicated disk. That's fatal. Eivind: You may now be happy. :) Submitted by: msmith Revision Changes Path 1.70.2.25 +11 -1 src/release/sysinstall/disks.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 17:50:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA22399 for cvs-all-outgoing; Fri, 20 Mar 1998 17:50:21 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA22390; Fri, 20 Mar 1998 17:50:18 -0800 (PST) (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA01609; Fri, 20 Mar 1998 17:50:11 -0800 (PST) Date: Fri, 20 Mar 1998 17:50:11 -0800 (PST) Message-Id: <199803210150.RAA01609@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/japanese/gn-gnspool Makefile ports/japanese/gn-gnspool/files Makefile.patch md5 ports/japanese/gn-gnspool/patches patch-aa patch-ab ports/japanese/gn-gnspool/pkg DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/03/20 17:50:11 PST Modified files: japanese/gn-gnspool Makefile japanese/gn-gnspool/files md5 japanese/gn-gnspool/patches patch-aa japanese/gn-gnspool/pkg DESCR PLIST Added files: japanese/gn-gnspool/files Makefile.patch Removed files: japanese/gn-gnspool/patches patch-ab Log: original distribution updated to 1.36. PR: 6034 Revision Changes Path 1.3 +8 -6 ports/japanese/gn-gnspool/Makefile 1.2 +1 -1 ports/japanese/gn-gnspool/files/md5 1.2 +13 -30 ports/japanese/gn-gnspool/patches/patch-aa 1.2 +0 -1 ports/japanese/gn-gnspool/pkg/DESCR 1.2 +44 -42 ports/japanese/gn-gnspool/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 Mar 20 18:06:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA25467 for cvs-all-outgoing; Fri, 20 Mar 1998 18:06:28 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA25461; Fri, 20 Mar 1998 18:06:20 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA01828; Fri, 20 Mar 1998 18:06:12 -0800 (PST) Date: Fri, 20 Mar 1998 18:06:12 -0800 (PST) Message-Id: <199803210206.SAA01828@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/p5-File-Sync Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/20 18:06:12 PST Modified files: devel/p5-File-Sync Makefile Log: NO_PATCH is a no-op. Revision Changes Path 1.2 +1 -3 ports/devel/p5-File-Sync/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 18:08:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA25733 for cvs-all-outgoing; Fri, 20 Mar 1998 18:08:42 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA25728; Fri, 20 Mar 1998 18:08:41 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA01880; Fri, 20 Mar 1998 18:08:34 -0800 (PST) Date: Fri, 20 Mar 1998 18:08:34 -0800 (PST) Message-Id: <199803210208.SAA01880@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall installUpgrade.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/20 18:08:34 PST Modified files: (Branch: RELENG_2_2) release/sysinstall installUpgrade.c Log: An overly conservative choice prevented the new kernel from landing in the right place after an upgrade. Fix that. Revision Changes Path 1.33.2.18 +6 -5 src/release/sysinstall/installUpgrade.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 18:09:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA25824 for cvs-all-outgoing; Fri, 20 Mar 1998 18:09:03 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA25811; Fri, 20 Mar 1998 18:09:00 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA01909; Fri, 20 Mar 1998 18:08:52 -0800 (PST) Date: Fri, 20 Mar 1998 18:08:52 -0800 (PST) Message-Id: <199803210208.SAA01909@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall installUpgrade.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/20 18:08:52 PST Modified files: release/sysinstall installUpgrade.c Log: MF22: install correct kernel Revision Changes Path 1.55 +6 -5 src/release/sysinstall/installUpgrade.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 18:25:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA27581 for cvs-all-outgoing; Fri, 20 Mar 1998 18:25:15 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA27564; Fri, 20 Mar 1998 18:25:14 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA01982; Fri, 20 Mar 1998 18:25:06 -0800 (PST) Date: Fri, 20 Mar 1998 18:25:06 -0800 (PST) Message-Id: <199803210225.SAA01982@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/emulators/hfsutils Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/20 18:25:05 PST Modified files: emulators/hfsutils Makefile Log: Mark this port BROKEN, I can't fetch it. Revision Changes Path 1.7 +3 -1 ports/emulators/hfsutils/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 18:28:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA28235 for cvs-all-outgoing; Fri, 20 Mar 1998 18:28:28 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA28211; Fri, 20 Mar 1998 18:28:05 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from baloon.mimi.com (sjx-ca126-11.ix.netcom.com [207.92.177.203]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id SAA29584; Fri, 20 Mar 1998 18:28:04 -0800 (PST) Received: (from asami@localhost) by baloon.mimi.com (8.8.8/8.8.8) id SAA01249; Fri, 20 Mar 1998 18:28:01 -0800 (PST) (envelope-from asami) Date: Fri, 20 Mar 1998 18:28:01 -0800 (PST) Message-Id: <199803210228.SAA01249@baloon.mimi.com> To: vanilla@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <199803120805.AAA08775@freefall.freebsd.org> (vanilla@FreeBSD.ORG) Subject: Re: cvs commit: ports/emulators/hfsutils Makefile ports/emulators/hfsutils/files md5 ports/emulators/hfsutils/patches patch-ab patch-aa From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Upgrade to 3.2. Thanks, but can't fetch. Can you put the distfile in /f/users/asami/ports/distfiles? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 18:29:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA28440 for cvs-all-outgoing; Fri, 20 Mar 1998 18:29:40 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA28338; Fri, 20 Mar 1998 18:29:25 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from baloon.mimi.com (sjx-ca126-11.ix.netcom.com [207.92.177.203]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id SAA29592; Fri, 20 Mar 1998 18:29:23 -0800 (PST) Received: (from asami@localhost) by baloon.mimi.com (8.8.8/8.8.8) id SAA01254; Fri, 20 Mar 1998 18:29:21 -0800 (PST) (envelope-from asami) Date: Fri, 20 Mar 1998 18:29:21 -0800 (PST) Message-Id: <199803210229.SAA01254@baloon.mimi.com> To: vanilla@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <199803110754.XAA08662@freefall.freebsd.org> (vanilla@FreeBSD.ORG) Subject: Re: cvs commit: ports/emulators/xzx Makefile ports/emulators/xzx/files md5 ports/emulators/xzx/patches patch-aa patch-ac patch-ad ports/emulators/xzx/pkg PLIST From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Upgrade to 2.4.4. Thanks, but doesn't compile. It dies here (after a few dozen lines of similar warnings in the gccmakedep stage). ======= ===> Building for xzx-2.4.4 making all in ./src... cc -O2 -I. -I./z80 -I./audio -I./free -I/usr/local/X11R6/include -I/usr/X11R6/include -I/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c debug.c In file included from debug.c:26: config.h:33: endian.h: No such file or directory *** Error code 1 ======= Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 18:29:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA28533 for cvs-all-outgoing; Fri, 20 Mar 1998 18:29:58 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA28515; Fri, 20 Mar 1998 18:29:57 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA02020; Fri, 20 Mar 1998 18:29:49 -0800 (PST) Date: Fri, 20 Mar 1998 18:29:49 -0800 (PST) Message-Id: <199803210229.SAA02020@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/emulators/xzx Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/20 18:29:49 PST Modified files: emulators/xzx Makefile Log: Mark this port broken, can't find endian.h. Revision Changes Path 1.4 +3 -1 ports/emulators/xzx/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 20:11:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA10173 for cvs-all-outgoing; Fri, 20 Mar 1998 20:11:16 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA10164; Fri, 20 Mar 1998 20:11:13 -0800 (PST) (envelope-from adam@FreeBSD.org) From: Adam David Received: (from adam@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA03755; Fri, 20 Mar 1998 20:11:05 -0800 (PST) Date: Fri, 20 Mar 1998 20:11:05 -0800 (PST) Message-Id: <199803210411.UAA03755@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/dgd Makefile ports/net/dgd/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk adam 1998/03/20 20:11:05 PST Modified files: net/dgd Makefile net/dgd/files md5 Log: 1.1p4 --> 1.1p5 Revision Changes Path 1.76 +4 -3 ports/net/dgd/Makefile 1.40 +1 -0 ports/net/dgd/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 20:44:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA13559 for cvs-all-outgoing; Fri, 20 Mar 1998 20:44:16 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA13547; Fri, 20 Mar 1998 20:44:14 -0800 (PST) (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA03871; Fri, 20 Mar 1998 20:44:06 -0800 (PST) Date: Fri, 20 Mar 1998 20:44:06 -0800 (PST) Message-Id: <199803210444.UAA03871@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/03/20 20:44:01 PST Modified files: . modules Log: ja-netscape4 --> ports/japanese/netscape4 Revision Changes Path 1.1884 +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 Mar 20 20:45:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA13798 for cvs-all-outgoing; Fri, 20 Mar 1998 20:45:51 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA13787; Fri, 20 Mar 1998 20:45:49 -0800 (PST) (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA03889; Fri, 20 Mar 1998 20:45:41 -0800 (PST) Date: Fri, 20 Mar 1998 20:45:41 -0800 (PST) Message-Id: <199803210445.UAA03889@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/japanese/netscape4 - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/03/20 20:45:41 PST ports/japanese/netscape4 - Imported sources Update of /home/ncvs/ports/japanese/netscape4 In directory freefall.freebsd.org:/c/users/itojun/work/netscape4 Log Message: ports/japanese/netscape4, a famous web browser. netscape ver 4 web-surfboard with Japanese resources NOTE: PR is not closed because it has small glitche I need to confirm with the contributor. PR: 6045 Status: Vendor Tag: SADA Release Tags: v4_04 N ports/japanese/netscape4/Makefile I ports/japanese/netscape4/CVS N ports/japanese/netscape4/files/mailcap N ports/japanese/netscape4/files/netscape.sh N ports/japanese/netscape4/files/ja-netscape.sh N ports/japanese/netscape4/files/md5.ja-navigator-4.04 N ports/japanese/netscape4/files/patch.XLC_LOCALE N ports/japanese/netscape4/files/setup.doc N ports/japanese/netscape4/files/md5.ja-communicator-us-4.04 N ports/japanese/netscape4/files/setup.pl N ports/japanese/netscape4/files/md5.ja-navigator-us-4.04 N ports/japanese/netscape4/files/md5.ja-communicator-4.04 N ports/japanese/netscape4/pkg/COMMENT N ports/japanese/netscape4/pkg/DESCR N ports/japanese/netscape4/pkg/PLIST.ja-communicator-us-4.04 N ports/japanese/netscape4/pkg/MESSAGE N ports/japanese/netscape4/pkg/PLIST.ja-communicator-4.04 N ports/japanese/netscape4/pkg/PLIST.ja-navigator-4.04 N ports/japanese/netscape4/pkg/PLIST.ja-navigator-us-4.04 No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 20:48:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA14363 for cvs-all-outgoing; Fri, 20 Mar 1998 20:48:30 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA14345; Fri, 20 Mar 1998 20:48:29 -0800 (PST) (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA03933; Fri, 20 Mar 1998 20:48:21 -0800 (PST) Date: Fri, 20 Mar 1998 20:48:21 -0800 (PST) Message-Id: <199803210448.UAA03933@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/japanese/netscape4 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/03/20 20:48:20 PST Modified files: japanese/netscape4 Makefile Log: add comment on k{10,12} dependency. PR: 6045 Revision Changes Path 1.2 +2 -1 ports/japanese/netscape4/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 20:49:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA14493 for cvs-all-outgoing; Fri, 20 Mar 1998 20:49:03 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA14473; Fri, 20 Mar 1998 20:49:01 -0800 (PST) (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA03965; Fri, 20 Mar 1998 20:48:53 -0800 (PST) Date: Fri, 20 Mar 1998 20:48:53 -0800 (PST) Message-Id: <199803210448.UAA03965@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/japanese Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/03/20 20:48:53 PST Modified files: japanese Makefile Log: enable ports/japanese/netscape4, a famous web browser PR: 6045 Revision Changes Path 1.109 +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 Fri Mar 20 20:58:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA16407 for cvs-all-outgoing; Fri, 20 Mar 1998 20:58:52 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA16402; Fri, 20 Mar 1998 20:58:51 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA04079; Fri, 20 Mar 1998 20:58:43 -0800 (PST) Date: Fri, 20 Mar 1998 20:58:43 -0800 (PST) Message-Id: <199803210458.UAA04079@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/zircon Makefile ports/net/zircon/files md5 ports/net/zircon/patches patch-aa ports/net/zircon/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/03/20 20:58:42 PST Modified files: net/zircon Makefile net/zircon/files md5 net/zircon/patches patch-aa net/zircon/pkg PLIST Log: Upgrade to zircon-1.18.109. Revert to tk-8.0. Revision Changes Path 1.26 +6 -6 ports/net/zircon/Makefile 1.13 +1 -1 ports/net/zircon/files/md5 1.3 +1 -1 ports/net/zircon/patches/patch-aa 1.9 +8 -13 ports/net/zircon/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 Mar 20 21:05:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA17097 for cvs-all-outgoing; Fri, 20 Mar 1998 21:05:06 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA17089; Fri, 20 Mar 1998 21:05:03 -0800 (PST) (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA04153; Fri, 20 Mar 1998 21:04:55 -0800 (PST) Date: Fri, 20 Mar 1998 21:04:55 -0800 (PST) Message-Id: <199803210504.VAA04153@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/japanese/netscape4 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/03/20 21:04:54 PST Modified files: japanese/netscape4 Makefile Log: the contributor confirmed that dependency to k{10,12} is necessary at this moment. PR closed. PR: 6045 Revision Changes Path 1.3 +1 -2 ports/japanese/netscape4/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 21:16:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA18130 for cvs-all-outgoing; Fri, 20 Mar 1998 21:16:20 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA18121; Fri, 20 Mar 1998 21:16:19 -0800 (PST) (envelope-from dyson@FreeBSD.org) From: John Dyson Received: (from dyson@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA04262; Fri, 20 Mar 1998 21:16:10 -0800 (PST) Date: Fri, 20 Mar 1998 21:16:10 -0800 (PST) Message-Id: <199803210516.VAA04262@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/ufs/ffs ffs_vnops.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dyson 1998/03/20 21:16:10 PST Modified files: sys/ufs/ffs ffs_vnops.c Log: Softdep_sync_metadata appears to expect that it is called at splbio, so make it so... Revision Changes Path 1.46 +17 -12 src/sys/ufs/ffs/ffs_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 Mar 20 21:17:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA18533 for cvs-all-outgoing; Fri, 20 Mar 1998 21:17:42 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA18508; Fri, 20 Mar 1998 21:17:40 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA04292; Fri, 20 Mar 1998 21:17:31 -0800 (PST) Date: Fri, 20 Mar 1998 21:17:31 -0800 (PST) Message-Id: <199803210517.VAA04292@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa si.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/20 21:17:31 PST Modified files: sys/i386/isa si.c Log: Merge from 2.2, plus some other changes. In the config file entry, 'vector siintr' isn't used since the handler is assigned internally. Revision Changes Path 1.68 +66 -48 src/sys/i386/isa/si.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 22:17:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA27490 for cvs-all-outgoing; Fri, 20 Mar 1998 22:17:29 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA27485; Fri, 20 Mar 1998 22:17:27 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA04448; Fri, 20 Mar 1998 22:17:18 -0800 (PST) Date: Fri, 20 Mar 1998 22:17:18 -0800 (PST) Message-Id: <199803210617.WAA04448@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/include si.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/20 22:17:17 PST Modified files: sys/i386/include si.h Log: merge from 2.2 Revision Changes Path 1.11 +3 -2 src/sys/i386/include/si.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 22:21:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA28274 for cvs-all-outgoing; Fri, 20 Mar 1998 22:21:15 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA28269; Fri, 20 Mar 1998 22:21:14 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA04492; Fri, 20 Mar 1998 22:21:05 -0800 (PST) Date: Fri, 20 Mar 1998 22:21:05 -0800 (PST) Message-Id: <199803210621.WAA04492@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/conf LINT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/20 22:21:05 PST Modified files: sys/i386/conf LINT Log: zap 'vector siintr' from example si0 config Revision Changes Path 1.419 +2 -2 src/sys/i386/conf/LINT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 22:47:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA02103 for cvs-all-outgoing; Fri, 20 Mar 1998 22:47:45 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA02098; Fri, 20 Mar 1998 22:47:43 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA04550; Fri, 20 Mar 1998 22:47:34 -0800 (PST) Date: Fri, 20 Mar 1998 22:47:34 -0800 (PST) Message-Id: <199803210647.WAA04550@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/emulators/hfsutils Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/03/20 22:47:34 PST Modified files: emulators/hfsutils Makefile Log: Remove BROKEN tag, and put a copy on my page. Revision Changes Path 1.8 +3 -4 ports/emulators/hfsutils/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 20 22:54:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA02800 for cvs-all-outgoing; Fri, 20 Mar 1998 22:54:58 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA02795; Fri, 20 Mar 1998 22:54:56 -0800 (PST) (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA04623; Fri, 20 Mar 1998 22:54:48 -0800 (PST) Date: Fri, 20 Mar 1998 22:54:48 -0800 (PST) Message-Id: <199803210654.WAA04623@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/japanese/netscape4/pkg PLIST.ja-communicator-4.04 PLIST.ja-communicator-us-4.04 PLIST.ja-navigator-4.04 PLIST.ja-navigator-us-4.04 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/03/20 22:54:47 PST Modified files: japanese/netscape4/pkg PLIST.ja-communicator-4.04 PLIST.ja-communicator-us-4.04 PLIST.ja-navigator-4.04 PLIST.ja-navigator-us-4.04 Log: invoke font setup script on installation from "package" Submitted by: sada Revision Changes Path 1.2 +2 -0 ports/japanese/netscape4/pkg/PLIST.ja-communicator-4.04 1.2 +2 -0 ports/japanese/netscape4/pkg/PLIST.ja-communicator-us-4.04 1.2 +2 -0 ports/japanese/netscape4/pkg/PLIST.ja-navigator-4.04 1.2 +2 -0 ports/japanese/netscape4/pkg/PLIST.ja-navigator-us-4.04 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 00:19:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA10695 for cvs-all-outgoing; Sat, 21 Mar 1998 00:19:09 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA10689; Sat, 21 Mar 1998 00:19:08 -0800 (PST) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA04944; Sat, 21 Mar 1998 00:18:59 -0800 (PST) Date: Sat, 21 Mar 1998 00:18:59 -0800 (PST) Message-Id: <199803210818.AAA04944@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/03/21 00:18:58 PST Modified files: lib Makefile Log: Build both libscrypt and libdescrypt. There is no point in letting libscrypt stagnate, even if it is superceded by libdescrypt. It is a tiny library anyway, and building it is inexpensive. Revision Changes Path 1.66 +4 -7 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 Sat Mar 21 00:43:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA13090 for cvs-all-outgoing; Sat, 21 Mar 1998 00:43:46 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA13085; Sat, 21 Mar 1998 00:43:45 -0800 (PST) (envelope-from adam@FreeBSD.org) From: Adam David Received: (from adam@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA05027; Sat, 21 Mar 1998 00:43:36 -0800 (PST) Date: Sat, 21 Mar 1998 00:43:36 -0800 (PST) Message-Id: <199803210843.AAA05027@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/dgd-net Makefile ports/net/dgd-net/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk adam 1998/03/21 00:43:35 PST Modified files: net/dgd-net Makefile net/dgd-net/files md5 Log: hmm, I committed this 4 hours ago, wonder what happened Revision Changes Path 1.29 +4 -3 ports/net/dgd-net/Makefile 1.28 +1 -0 ports/net/dgd-net/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 01:19:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA16230 for cvs-all-outgoing; Sat, 21 Mar 1998 01:19:22 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA16225; Sat, 21 Mar 1998 01:19:19 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from baloon.mimi.com (sjx-ca126-11.ix.netcom.com [207.92.177.203]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id BAA00103; Sat, 21 Mar 1998 01:19:18 -0800 (PST) Received: (from asami@localhost) by baloon.mimi.com (8.8.8/8.8.8) id BAA02021; Sat, 21 Mar 1998 01:19:12 -0800 (PST) (envelope-from asami) Date: Sat, 21 Mar 1998 01:19:12 -0800 (PST) Message-Id: <199803210919.BAA02021@baloon.mimi.com> To: committers@FreeBSD.ORG CC: ports@FreeBSD.ORG Subject: Ports tree FROZEN From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk The ports tree is frozen now. All commits between now and the release should be either: (1) explicitly authorized by me, or (2) a response to "this is broken, please fix" message from me Thanks for your cooperation, Adam. :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 01:26:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA17270 for cvs-all-outgoing; Sat, 21 Mar 1998 01:26:23 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA17265; Sat, 21 Mar 1998 01:26:22 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA05299; Sat, 21 Mar 1998 01:26:12 -0800 (PST) Date: Sat, 21 Mar 1998 01:26:12 -0800 (PST) Message-Id: <199803210926.BAA05299@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/graphics/gimp-devel Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/21 01:26:12 PST Modified files: graphics/gimp-devel Makefile Log: Mark this port broken, can't fetch. Revision Changes Path 1.22 +3 -1 ports/graphics/gimp-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 Mar 21 01:27:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA17374 for cvs-all-outgoing; Sat, 21 Mar 1998 01:27:26 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA17359; Sat, 21 Mar 1998 01:27:20 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from baloon.mimi.com (sjx-ca126-11.ix.netcom.com [207.92.177.203]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id BAA00123; Sat, 21 Mar 1998 01:27:19 -0800 (PST) Received: (from asami@localhost) by baloon.mimi.com (8.8.8/8.8.8) id BAA02053; Sat, 21 Mar 1998 01:27:16 -0800 (PST) (envelope-from asami) Date: Sat, 21 Mar 1998 01:27:16 -0800 (PST) Message-Id: <199803210927.BAA02053@baloon.mimi.com> To: erich@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <199803172252.OAA26498@freefall.freebsd.org> (erich@FreeBSD.ORG) Subject: Re: cvs commit: ports/graphics/gimp-devel Makefile ports/graphics/gimp-devel/files md5 ports/graphics/gimp-devel/patches patch-ai patch-ah ports/graphics/gimp-devel/pkg PLIST From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * upgrade to 0.99.21, there'll be another port containing the ``unstable'' * plug-ins soon. Thanks, but can't fetch the .21 tarballs. Someone (anyone!) please upgrade the port to .22 or put the following two files in /f/users/asami/ports/distfiles: +MD5 (gimp-0.99.21.tar.gz) = e1544aec645d7be6586485e6a131ece7 +MD5 (gimp-plugins-unstable-0.99.21.tar.gz) = 3dcd9c1d27557aebeceeb6f3fa6b7f9a Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 02:07:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA20777 for cvs-all-outgoing; Sat, 21 Mar 1998 02:07:18 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA20764; Sat, 21 Mar 1998 02:07:14 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA06066; Sat, 21 Mar 1998 02:07:04 -0800 (PST) Date: Sat, 21 Mar 1998 02:07:04 -0800 (PST) Message-Id: <199803211007.CAA06066@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-contrib@FreeBSD.ORG Subject: cvs commit: src/contrib/ipfilter - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 02:07:03 PST src/contrib/ipfilter - Imported sources Update of /home/ncvs/src/contrib/ipfilter In directory freefall.freebsd.org:/tmp/cvs-serv5354 Log Message: Import ipfilter 3.2.3 Status: Vendor Tag: DARRENR Release Tags: v3_2_3 U src/contrib/ipfilter/BNF U src/contrib/ipfilter/BugReport U src/contrib/ipfilter/COMPILE.2.5 U src/contrib/ipfilter/FAQ.FreeBSD U src/contrib/ipfilter/HISTORY U src/contrib/ipfilter/IMPORTANT U src/contrib/ipfilter/INST.FreeBSD-2.2 N src/contrib/ipfilter/INSTALL.BSDOS3 U src/contrib/ipfilter/INSTALL.FreeBSD U src/contrib/ipfilter/LICENCE N src/contrib/ipfilter/INSTALL.IRIX N src/contrib/ipfilter/INSTALL.Linux U src/contrib/ipfilter/INSTALL.NetBSD U src/contrib/ipfilter/INSTALL.Sol2 U src/contrib/ipfilter/INSTALL.SunOS U src/contrib/ipfilter/INSTALL.xBSD U src/contrib/ipfilter/NAT.FreeBSD U src/contrib/ipfilter/Makefile U src/contrib/ipfilter/README U src/contrib/ipfilter/bsdinstall N src/contrib/ipfilter/buildlinux U src/contrib/ipfilter/ipl.h U src/contrib/ipfilter/buildsunos U src/contrib/ipfilter/fil.c U src/contrib/ipfilter/fils.c U src/contrib/ipfilter/inet_addr.c U src/contrib/ipfilter/ip_auth.c U src/contrib/ipfilter/ip_auth.h U src/contrib/ipfilter/ip_compat.h U src/contrib/ipfilter/ip_fil.c U src/contrib/ipfilter/ip_fil.h U src/contrib/ipfilter/ip_frag.c U src/contrib/ipfilter/ip_frag.h U src/contrib/ipfilter/ip_ftp_pxy.c U src/contrib/ipfilter/ip_lfil.c U src/contrib/ipfilter/ip_log.c U src/contrib/ipfilter/ip_nat.c U src/contrib/ipfilter/ip_nat.h U src/contrib/ipfilter/ip_proxy.c U src/contrib/ipfilter/ip_proxy.h U src/contrib/ipfilter/ip_sfil.c U src/contrib/ipfilter/ip_state.c U src/contrib/ipfilter/ip_state.h U src/contrib/ipfilter/ipf.c U src/contrib/ipfilter/ipf.h U src/contrib/ipfilter/ipft_ef.c U src/contrib/ipfilter/ipft_hx.c U src/contrib/ipfilter/ipft_pc.c U src/contrib/ipfilter/ipft_sn.c U src/contrib/ipfilter/ipft_td.c U src/contrib/ipfilter/ipft_tx.c U src/contrib/ipfilter/mkfilters U src/contrib/ipfilter/ipmon.c U src/contrib/ipfilter/ipnat.c U src/contrib/ipfilter/ipt.c U src/contrib/ipfilter/ipt.h U src/contrib/ipfilter/kmem.c U src/contrib/ipfilter/kmem.h U src/contrib/ipfilter/linux.h U src/contrib/ipfilter/misc.c U src/contrib/ipfilter/ml_ipl.c U src/contrib/ipfilter/mlf_ipl.c U src/contrib/ipfilter/mli_ipl.c U src/contrib/ipfilter/mln_ipl.c U src/contrib/ipfilter/relay.c U src/contrib/ipfilter/mls_ipl.c U src/contrib/ipfilter/opt.c U src/contrib/ipfilter/parse.c U src/contrib/ipfilter/pcap.h U src/contrib/ipfilter/todo U src/contrib/ipfilter/snoop.h U src/contrib/ipfilter/solaris.c U src/contrib/ipfilter/FWTK/Index U src/contrib/ipfilter/FWTK/README U src/contrib/ipfilter/FWTK/README.ipfilter U src/contrib/ipfilter/FWTK/fwtkp U src/contrib/ipfilter/FWTK/ftp-gw.diff U src/contrib/ipfilter/FWTK/fwtk_transparent.diff U src/contrib/ipfilter/FreeBSD-2.2/files.diffs U src/contrib/ipfilter/FreeBSD-2.2/files.newconf.diffs U src/contrib/ipfilter/FreeBSD-2.2/in_proto.c.diffs U src/contrib/ipfilter/FreeBSD-2.2/ip_input.c.diffs U src/contrib/ipfilter/FreeBSD-2.2/ip_output.c.diffs U src/contrib/ipfilter/FreeBSD-2.2/kinstall U src/contrib/ipfilter/FreeBSD-2.2/minstall U src/contrib/ipfilter/FreeBSD-2.2/unkinstall U src/contrib/ipfilter/FreeBSD-2.2/unminstall U src/contrib/ipfilter/etc/protocols U src/contrib/ipfilter/etc/services U src/contrib/ipfilter/iplang/BNF U src/contrib/ipfilter/iplang/Makefile U src/contrib/ipfilter/iplang/iplang.h U src/contrib/ipfilter/iplang/iplang.tst U src/contrib/ipfilter/iplang/iplang_l.l U src/contrib/ipfilter/iplang/iplang_y.y U src/contrib/ipfilter/ipsd/Makefile U src/contrib/ipfilter/ipsd/README U src/contrib/ipfilter/ipsd/ipsd.h U src/contrib/ipfilter/ipsd/ipsd.c U src/contrib/ipfilter/ipsd/linux.h U src/contrib/ipfilter/ipsd/ipsdr.c U src/contrib/ipfilter/ipsd/sbpf.c U src/contrib/ipfilter/ipsd/sdlpi.c U src/contrib/ipfilter/ipsd/slinux.c U src/contrib/ipfilter/ipsd/snit.c U src/contrib/ipfilter/ipsend/44arp.c U src/contrib/ipfilter/ipsend/Crashable U src/contrib/ipfilter/ipsend/Makefile U src/contrib/ipfilter/ipsend/README U src/contrib/ipfilter/ipsend/dlcommon.c U src/contrib/ipfilter/ipsend/arp.c U src/contrib/ipfilter/ipsend/dltest.h U src/contrib/ipfilter/ipsend/hpux.c U src/contrib/ipfilter/ipsend/in_var.h U src/contrib/ipfilter/ipsend/ip_var.h U src/contrib/ipfilter/ipsend/ip.c U src/contrib/ipfilter/ipsend/ipresend.1 U src/contrib/ipfilter/ipsend/ipsend.1 U src/contrib/ipfilter/ipsend/ipresend.c U src/contrib/ipfilter/ipsend/ipsend.5 U src/contrib/ipfilter/ipsend/ipsend.h U src/contrib/ipfilter/ipsend/ipsend.c U src/contrib/ipfilter/ipsend/iptest.1 U src/contrib/ipfilter/ipsend/ipsopt.c U src/contrib/ipfilter/ipsend/linux.h U src/contrib/ipfilter/ipsend/iptest.c U src/contrib/ipfilter/ipsend/iptests.c U src/contrib/ipfilter/ipsend/larp.c U src/contrib/ipfilter/ipsend/sirix.c U src/contrib/ipfilter/ipsend/lsock.c U src/contrib/ipfilter/ipsend/resend.c U src/contrib/ipfilter/ipsend/sbpf.c U src/contrib/ipfilter/ipsend/sdlpi.c U src/contrib/ipfilter/ipsend/ultrix.c U src/contrib/ipfilter/ipsend/slinux.c U src/contrib/ipfilter/ipsend/snit.c U src/contrib/ipfilter/ipsend/sock.c U src/contrib/ipfilter/ipsend/tcpip.h U src/contrib/ipfilter/man/Makefile U src/contrib/ipfilter/man/ipf.4 U src/contrib/ipfilter/man/ipf.5 U src/contrib/ipfilter/man/ipf.8 U src/contrib/ipfilter/man/ipfilter.5 U src/contrib/ipfilter/man/ipfstat.8 U src/contrib/ipfilter/man/ipftest.1 U src/contrib/ipfilter/man/ipl.4 U src/contrib/ipfilter/man/ipmon.8 U src/contrib/ipfilter/man/ipnat.1 U src/contrib/ipfilter/man/ipnat.4 U src/contrib/ipfilter/man/ipnat.5 U src/contrib/ipfilter/man/mkfilters.1 U src/contrib/ipfilter/rules/BASIC.NAT U src/contrib/ipfilter/rules/BASIC_1.FW U src/contrib/ipfilter/rules/BASIC_2.FW U src/contrib/ipfilter/rules/example.1 U src/contrib/ipfilter/rules/example.10 U src/contrib/ipfilter/rules/example.11 U src/contrib/ipfilter/rules/example.12 U src/contrib/ipfilter/rules/example.13 U src/contrib/ipfilter/rules/example.2 U src/contrib/ipfilter/rules/example.3 U src/contrib/ipfilter/rules/example.4 U src/contrib/ipfilter/rules/example.5 U src/contrib/ipfilter/rules/example.6 U src/contrib/ipfilter/rules/example.7 U src/contrib/ipfilter/rules/example.8 U src/contrib/ipfilter/rules/example.9 U src/contrib/ipfilter/rules/example.sr U src/contrib/ipfilter/rules/firewall U src/contrib/ipfilter/rules/ftp-proxy U src/contrib/ipfilter/rules/ftppxy U src/contrib/ipfilter/rules/nat-setup U src/contrib/ipfilter/rules/nat.eg U src/contrib/ipfilter/rules/server U src/contrib/ipfilter/rules/tcpstate U src/contrib/ipfilter/samples/Makefile U src/contrib/ipfilter/samples/proxy.c U src/contrib/ipfilter/samples/userauth.c U src/contrib/ipfilter/test/Makefile U src/contrib/ipfilter/test/dotest U src/contrib/ipfilter/test/hextest U src/contrib/ipfilter/test/itest U src/contrib/ipfilter/test/expected/1 U src/contrib/ipfilter/test/expected/10 U src/contrib/ipfilter/test/expected/11 U src/contrib/ipfilter/test/expected/12 U src/contrib/ipfilter/test/expected/14 U src/contrib/ipfilter/test/expected/2 U src/contrib/ipfilter/test/expected/3 U src/contrib/ipfilter/test/expected/4 U src/contrib/ipfilter/test/expected/5 U src/contrib/ipfilter/test/expected/6 U src/contrib/ipfilter/test/expected/7 U src/contrib/ipfilter/test/expected/8 U src/contrib/ipfilter/test/expected/9 U src/contrib/ipfilter/test/expected/i1 U src/contrib/ipfilter/test/expected/i10 U src/contrib/ipfilter/test/expected/i11 U src/contrib/ipfilter/test/expected/i2 U src/contrib/ipfilter/test/expected/i3 U src/contrib/ipfilter/test/expected/i4 U src/contrib/ipfilter/test/expected/i5 U src/contrib/ipfilter/test/expected/i6 U src/contrib/ipfilter/test/expected/i7 U src/contrib/ipfilter/test/expected/i8 U src/contrib/ipfilter/test/expected/i9 U src/contrib/ipfilter/test/input/1 U src/contrib/ipfilter/test/input/10 U src/contrib/ipfilter/test/input/11 U src/contrib/ipfilter/test/input/12 U src/contrib/ipfilter/test/input/13 U src/contrib/ipfilter/test/input/14 U src/contrib/ipfilter/test/input/2 U src/contrib/ipfilter/test/input/3 U src/contrib/ipfilter/test/input/4 U src/contrib/ipfilter/test/input/5 U src/contrib/ipfilter/test/input/6 U src/contrib/ipfilter/test/input/7 U src/contrib/ipfilter/test/input/8 U src/contrib/ipfilter/test/input/9 U src/contrib/ipfilter/test/regress/1 U src/contrib/ipfilter/test/regress/10 U src/contrib/ipfilter/test/regress/11 U src/contrib/ipfilter/test/regress/12 U src/contrib/ipfilter/test/regress/13 U src/contrib/ipfilter/test/regress/14 U src/contrib/ipfilter/test/regress/2 U src/contrib/ipfilter/test/regress/3 U src/contrib/ipfilter/test/regress/4 U src/contrib/ipfilter/test/regress/5 U src/contrib/ipfilter/test/regress/6 U src/contrib/ipfilter/test/regress/7 U src/contrib/ipfilter/test/regress/8 U src/contrib/ipfilter/test/regress/9 U src/contrib/ipfilter/test/regress/i1 U src/contrib/ipfilter/test/regress/i10 U src/contrib/ipfilter/test/regress/i11 U src/contrib/ipfilter/test/regress/i2 U src/contrib/ipfilter/test/regress/i3 U src/contrib/ipfilter/test/regress/i4 U src/contrib/ipfilter/test/regress/i5 U src/contrib/ipfilter/test/regress/i6 U src/contrib/ipfilter/test/regress/i7 U src/contrib/ipfilter/test/regress/i8 U src/contrib/ipfilter/test/regress/i9 No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 02:12:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA21378 for cvs-all-outgoing; Sat, 21 Mar 1998 02:12:09 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA21373; Sat, 21 Mar 1998 02:12:07 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA06167; Sat, 21 Mar 1998 02:11:57 -0800 (PST) Date: Sat, 21 Mar 1998 02:11:57 -0800 (PST) Message-Id: <199803211011.CAA06167@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/netinet - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 02:11:57 PST src/sys/netinet - Imported sources Update of /home/ncvs/src/sys/netinet In directory freefall.freebsd.org:/tmp/cvs-serv6083 Log Message: Import kernel parts of ipfilter v3.2.3 Status: Vendor Tag: DARRENR Release Tags: v3_2_3 U src/sys/netinet/ip_fil.c U src/sys/netinet/ip_fil.h U src/sys/netinet/ip_nat.c U src/sys/netinet/ip_nat.h U src/sys/netinet/ip_frag.c U src/sys/netinet/ip_frag.h U src/sys/netinet/ip_state.c U src/sys/netinet/ip_state.h U src/sys/netinet/fil.c U src/sys/netinet/ip_proxy.c U src/sys/netinet/ip_proxy.h U src/sys/netinet/ip_ftp_pxy.c C src/sys/netinet/mlf_ipl.c U src/sys/netinet/ipl.h U src/sys/netinet/ip_compat.h U src/sys/netinet/ip_auth.c U src/sys/netinet/ip_auth.h U src/sys/netinet/ip_log.c 1 conflicts created by this import. Use the following command to help the merge: cvs checkout -jDARRENR:yesterday -jDARRENR src/sys/netinet To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 02:19:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA21786 for cvs-all-outgoing; Sat, 21 Mar 1998 02:19:13 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from burka.rdy.com (dima@burka.rdy.com [205.149.163.30]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA21768; Sat, 21 Mar 1998 02:18:58 -0800 (PST) (envelope-from dima@burka.rdy.com) Received: by burka.rdy.com id CAA05062; (8.8.8/RDY) Sat, 21 Mar 1998 02:18:56 -0800 (PST) Message-Id: <199803211018.CAA05062@burka.rdy.com> Subject: Re: cvs commit: src/contrib/ipfilter - Imported sources In-Reply-To: <199803211007.CAA06066@freefall.freebsd.org> from Peter Wemm at "Mar 21, 98 02:07:04 am" To: peter@FreeBSD.ORG (Peter Wemm) Date: Sat, 21 Mar 1998 02:18:53 -0800 (PST) Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-contrib@FreeBSD.ORG X-Class: Fast Organization: HackerDome Reply-To: dima@best.net From: dima@best.net (Dima Ruban) X-Mailer: ELM [version 2.4ME+ PL38 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Hey guys! When ipfilter will be brought to -stable or will it ever? :-) Peter Wemm writes: > peter 1998/03/21 02:07:03 PST > > src/contrib/ipfilter - Imported sources > Update of /home/ncvs/src/contrib/ipfilter > In directory freefall.freebsd.org:/tmp/cvs-serv5354 > > Log Message: > Import ipfilter 3.2.3 > > Status: > > Vendor Tag: DARRENR > Release Tags: v3_2_3 > > U src/contrib/ipfilter/BNF > U src/contrib/ipfilter/BugReport > U src/contrib/ipfilter/COMPILE.2.5 > U src/contrib/ipfilter/FAQ.FreeBSD > U src/contrib/ipfilter/HISTORY > U src/contrib/ipfilter/IMPORTANT > U src/contrib/ipfilter/INST.FreeBSD-2.2 > N src/contrib/ipfilter/INSTALL.BSDOS3 > U src/contrib/ipfilter/INSTALL.FreeBSD > U src/contrib/ipfilter/LICENCE > N src/contrib/ipfilter/INSTALL.IRIX > N src/contrib/ipfilter/INSTALL.Linux > U src/contrib/ipfilter/INSTALL.NetBSD > U src/contrib/ipfilter/INSTALL.Sol2 > U src/contrib/ipfilter/INSTALL.SunOS > U src/contrib/ipfilter/INSTALL.xBSD > U src/contrib/ipfilter/NAT.FreeBSD > U src/contrib/ipfilter/Makefile > U src/contrib/ipfilter/README > U src/contrib/ipfilter/bsdinstall > N src/contrib/ipfilter/buildlinux > U src/contrib/ipfilter/ipl.h > U src/contrib/ipfilter/buildsunos > U src/contrib/ipfilter/fil.c > U src/contrib/ipfilter/fils.c > U src/contrib/ipfilter/inet_addr.c > U src/contrib/ipfilter/ip_auth.c > U src/contrib/ipfilter/ip_auth.h > U src/contrib/ipfilter/ip_compat.h > U src/contrib/ipfilter/ip_fil.c > U src/contrib/ipfilter/ip_fil.h > U src/contrib/ipfilter/ip_frag.c > U src/contrib/ipfilter/ip_frag.h > U src/contrib/ipfilter/ip_ftp_pxy.c > U src/contrib/ipfilter/ip_lfil.c > U src/contrib/ipfilter/ip_log.c > U src/contrib/ipfilter/ip_nat.c > U src/contrib/ipfilter/ip_nat.h > U src/contrib/ipfilter/ip_proxy.c > U src/contrib/ipfilter/ip_proxy.h > U src/contrib/ipfilter/ip_sfil.c > U src/contrib/ipfilter/ip_state.c > U src/contrib/ipfilter/ip_state.h > U src/contrib/ipfilter/ipf.c > U src/contrib/ipfilter/ipf.h > U src/contrib/ipfilter/ipft_ef.c > U src/contrib/ipfilter/ipft_hx.c > U src/contrib/ipfilter/ipft_pc.c > U src/contrib/ipfilter/ipft_sn.c > U src/contrib/ipfilter/ipft_td.c > U src/contrib/ipfilter/ipft_tx.c > U src/contrib/ipfilter/mkfilters > U src/contrib/ipfilter/ipmon.c > U src/contrib/ipfilter/ipnat.c > U src/contrib/ipfilter/ipt.c > U src/contrib/ipfilter/ipt.h > U src/contrib/ipfilter/kmem.c > U src/contrib/ipfilter/kmem.h > U src/contrib/ipfilter/linux.h > U src/contrib/ipfilter/misc.c > U src/contrib/ipfilter/ml_ipl.c > U src/contrib/ipfilter/mlf_ipl.c > U src/contrib/ipfilter/mli_ipl.c > U src/contrib/ipfilter/mln_ipl.c > U src/contrib/ipfilter/relay.c > U src/contrib/ipfilter/mls_ipl.c > U src/contrib/ipfilter/opt.c > U src/contrib/ipfilter/parse.c > U src/contrib/ipfilter/pcap.h > U src/contrib/ipfilter/todo > U src/contrib/ipfilter/snoop.h > U src/contrib/ipfilter/solaris.c > U src/contrib/ipfilter/FWTK/Index > U src/contrib/ipfilter/FWTK/README > U src/contrib/ipfilter/FWTK/README.ipfilter > U src/contrib/ipfilter/FWTK/fwtkp > U src/contrib/ipfilter/FWTK/ftp-gw.diff > U src/contrib/ipfilter/FWTK/fwtk_transparent.diff > U src/contrib/ipfilter/FreeBSD-2.2/files.diffs > U src/contrib/ipfilter/FreeBSD-2.2/files.newconf.diffs > U src/contrib/ipfilter/FreeBSD-2.2/in_proto.c.diffs > U src/contrib/ipfilter/FreeBSD-2.2/ip_input.c.diffs > U src/contrib/ipfilter/FreeBSD-2.2/ip_output.c.diffs > U src/contrib/ipfilter/FreeBSD-2.2/kinstall > U src/contrib/ipfilter/FreeBSD-2.2/minstall > U src/contrib/ipfilter/FreeBSD-2.2/unkinstall > U src/contrib/ipfilter/FreeBSD-2.2/unminstall > U src/contrib/ipfilter/etc/protocols > U src/contrib/ipfilter/etc/services > U src/contrib/ipfilter/iplang/BNF > U src/contrib/ipfilter/iplang/Makefile > U src/contrib/ipfilter/iplang/iplang.h > U src/contrib/ipfilter/iplang/iplang.tst > U src/contrib/ipfilter/iplang/iplang_l.l > U src/contrib/ipfilter/iplang/iplang_y.y > U src/contrib/ipfilter/ipsd/Makefile > U src/contrib/ipfilter/ipsd/README > U src/contrib/ipfilter/ipsd/ipsd.h > U src/contrib/ipfilter/ipsd/ipsd.c > U src/contrib/ipfilter/ipsd/linux.h > U src/contrib/ipfilter/ipsd/ipsdr.c > U src/contrib/ipfilter/ipsd/sbpf.c > U src/contrib/ipfilter/ipsd/sdlpi.c > U src/contrib/ipfilter/ipsd/slinux.c > U src/contrib/ipfilter/ipsd/snit.c > U src/contrib/ipfilter/ipsend/44arp.c > U src/contrib/ipfilter/ipsend/Crashable > U src/contrib/ipfilter/ipsend/Makefile > U src/contrib/ipfilter/ipsend/README > U src/contrib/ipfilter/ipsend/dlcommon.c > U src/contrib/ipfilter/ipsend/arp.c > U src/contrib/ipfilter/ipsend/dltest.h > U src/contrib/ipfilter/ipsend/hpux.c > U src/contrib/ipfilter/ipsend/in_var.h > U src/contrib/ipfilter/ipsend/ip_var.h > U src/contrib/ipfilter/ipsend/ip.c > U src/contrib/ipfilter/ipsend/ipresend.1 > U src/contrib/ipfilter/ipsend/ipsend.1 > U src/contrib/ipfilter/ipsend/ipresend.c > U src/contrib/ipfilter/ipsend/ipsend.5 > U src/contrib/ipfilter/ipsend/ipsend.h > U src/contrib/ipfilter/ipsend/ipsend.c > U src/contrib/ipfilter/ipsend/iptest.1 > U src/contrib/ipfilter/ipsend/ipsopt.c > U src/contrib/ipfilter/ipsend/linux.h > U src/contrib/ipfilter/ipsend/iptest.c > U src/contrib/ipfilter/ipsend/iptests.c > U src/contrib/ipfilter/ipsend/larp.c > U src/contrib/ipfilter/ipsend/sirix.c > U src/contrib/ipfilter/ipsend/lsock.c > U src/contrib/ipfilter/ipsend/resend.c > U src/contrib/ipfilter/ipsend/sbpf.c > U src/contrib/ipfilter/ipsend/sdlpi.c > U src/contrib/ipfilter/ipsend/ultrix.c > U src/contrib/ipfilter/ipsend/slinux.c > U src/contrib/ipfilter/ipsend/snit.c > U src/contrib/ipfilter/ipsend/sock.c > U src/contrib/ipfilter/ipsend/tcpip.h > U src/contrib/ipfilter/man/Makefile > U src/contrib/ipfilter/man/ipf.4 > U src/contrib/ipfilter/man/ipf.5 > U src/contrib/ipfilter/man/ipf.8 > U src/contrib/ipfilter/man/ipfilter.5 > U src/contrib/ipfilter/man/ipfstat.8 > U src/contrib/ipfilter/man/ipftest.1 > U src/contrib/ipfilter/man/ipl.4 > U src/contrib/ipfilter/man/ipmon.8 > U src/contrib/ipfilter/man/ipnat.1 > U src/contrib/ipfilter/man/ipnat.4 > U src/contrib/ipfilter/man/ipnat.5 > U src/contrib/ipfilter/man/mkfilters.1 > U src/contrib/ipfilter/rules/BASIC.NAT > U src/contrib/ipfilter/rules/BASIC_1.FW > U src/contrib/ipfilter/rules/BASIC_2.FW > U src/contrib/ipfilter/rules/example.1 > U src/contrib/ipfilter/rules/example.10 > U src/contrib/ipfilter/rules/example.11 > U src/contrib/ipfilter/rules/example.12 > U src/contrib/ipfilter/rules/example.13 > U src/contrib/ipfilter/rules/example.2 > U src/contrib/ipfilter/rules/example.3 > U src/contrib/ipfilter/rules/example.4 > U src/contrib/ipfilter/rules/example.5 > U src/contrib/ipfilter/rules/example.6 > U src/contrib/ipfilter/rules/example.7 > U src/contrib/ipfilter/rules/example.8 > U src/contrib/ipfilter/rules/example.9 > U src/contrib/ipfilter/rules/example.sr > U src/contrib/ipfilter/rules/firewall > U src/contrib/ipfilter/rules/ftp-proxy > U src/contrib/ipfilter/rules/ftppxy > U src/contrib/ipfilter/rules/nat-setup > U src/contrib/ipfilter/rules/nat.eg > U src/contrib/ipfilter/rules/server > U src/contrib/ipfilter/rules/tcpstate > U src/contrib/ipfilter/samples/Makefile > U src/contrib/ipfilter/samples/proxy.c > U src/contrib/ipfilter/samples/userauth.c > U src/contrib/ipfilter/test/Makefile > U src/contrib/ipfilter/test/dotest > U src/contrib/ipfilter/test/hextest > U src/contrib/ipfilter/test/itest > U src/contrib/ipfilter/test/expected/1 > U src/contrib/ipfilter/test/expected/10 > U src/contrib/ipfilter/test/expected/11 > U src/contrib/ipfilter/test/expected/12 > U src/contrib/ipfilter/test/expected/14 > U src/contrib/ipfilter/test/expected/2 > U src/contrib/ipfilter/test/expected/3 > U src/contrib/ipfilter/test/expected/4 > U src/contrib/ipfilter/test/expected/5 > U src/contrib/ipfilter/test/expected/6 > U src/contrib/ipfilter/test/expected/7 > U src/contrib/ipfilter/test/expected/8 > U src/contrib/ipfilter/test/expected/9 > U src/contrib/ipfilter/test/expected/i1 > U src/contrib/ipfilter/test/expected/i10 > U src/contrib/ipfilter/test/expected/i11 > U src/contrib/ipfilter/test/expected/i2 > U src/contrib/ipfilter/test/expected/i3 > U src/contrib/ipfilter/test/expected/i4 > U src/contrib/ipfilter/test/expected/i5 > U src/contrib/ipfilter/test/expected/i6 > U src/contrib/ipfilter/test/expected/i7 > U src/contrib/ipfilter/test/expected/i8 > U src/contrib/ipfilter/test/expected/i9 > U src/contrib/ipfilter/test/input/1 > U src/contrib/ipfilter/test/input/10 > U src/contrib/ipfilter/test/input/11 > U src/contrib/ipfilter/test/input/12 > U src/contrib/ipfilter/test/input/13 > U src/contrib/ipfilter/test/input/14 > U src/contrib/ipfilter/test/input/2 > U src/contrib/ipfilter/test/input/3 > U src/contrib/ipfilter/test/input/4 > U src/contrib/ipfilter/test/input/5 > U src/contrib/ipfilter/test/input/6 > U src/contrib/ipfilter/test/input/7 > U src/contrib/ipfilter/test/input/8 > U src/contrib/ipfilter/test/input/9 > U src/contrib/ipfilter/test/regress/1 > U src/contrib/ipfilter/test/regress/10 > U src/contrib/ipfilter/test/regress/11 > U src/contrib/ipfilter/test/regress/12 > U src/contrib/ipfilter/test/regress/13 > U src/contrib/ipfilter/test/regress/14 > U src/contrib/ipfilter/test/regress/2 > U src/contrib/ipfilter/test/regress/3 > U src/contrib/ipfilter/test/regress/4 > U src/contrib/ipfilter/test/regress/5 > U src/contrib/ipfilter/test/regress/6 > U src/contrib/ipfilter/test/regress/7 > U src/contrib/ipfilter/test/regress/8 > U src/contrib/ipfilter/test/regress/9 > U src/contrib/ipfilter/test/regress/i1 > U src/contrib/ipfilter/test/regress/i10 > U src/contrib/ipfilter/test/regress/i11 > U src/contrib/ipfilter/test/regress/i2 > U src/contrib/ipfilter/test/regress/i3 > U src/contrib/ipfilter/test/regress/i4 > U src/contrib/ipfilter/test/regress/i5 > U src/contrib/ipfilter/test/regress/i6 > U src/contrib/ipfilter/test/regress/i7 > U src/contrib/ipfilter/test/regress/i8 > U src/contrib/ipfilter/test/regress/i9 > > No conflicts created by this import > > -- dima To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 02:20:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA21895 for cvs-all-outgoing; Sat, 21 Mar 1998 02:20:28 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA21889; Sat, 21 Mar 1998 02:20:27 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA06208; Sat, 21 Mar 1998 02:20:17 -0800 (PST) Date: Sat, 21 Mar 1998 02:20:17 -0800 (PST) Message-Id: <199803211020.CAA06208@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/netinet mlf_ipl.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 02:20:16 PST Modified files: sys/netinet mlf_ipl.c Log: Merge vendor changes from 3.2.1 -> 3.2.3 onto mainline Revision Changes Path 1.3 +33 -19 src/sys/netinet/mlf_ipl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 02:45:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA23097 for cvs-all-outgoing; Sat, 21 Mar 1998 02:45:23 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mail.cs.tu-berlin.de (root@mail.cs.tu-berlin.de [130.149.17.13]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA23074; Sat, 21 Mar 1998 02:45:14 -0800 (PST) (envelope-from wosch@cs.tu-berlin.de) Received: from panke.panke.de (anonymous225.ppp.cs.tu-berlin.de [130.149.17.225]) by mail.cs.tu-berlin.de (8.8.6/8.8.8) with ESMTP id LAA10072; Sat, 21 Mar 1998 11:39:56 +0100 (MET) Received: (from wosch@localhost) by panke.panke.de (8.8.5/8.6.12) id BAA00901; Sat, 21 Mar 1998 01:23:23 +0100 (MET) To: Tim Vanderhoek Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: Re: cvs commit: src/usr.sbin/adduser adduser.8 References: <199803181614.IAA22813@freefall.freebsd.org> From: Wolfram Schneider Date: 21 Mar 1998 01:23:21 +0100 In-Reply-To: Tim Vanderhoek's message of Wed, 18 Mar 1998 08:14:50 -0800 (PST) Message-ID: Lines: 12 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Tim Vanderhoek writes: > hoek 1998/03/18 08:14:49 PST > Modified files: (Branch: RELENG_2_2) > usr.sbin/adduser adduser.8 > Log: > Trim username examples to <= 8 characters (in -STABLE only). > > This strikes me as a somewhat hypocritical mistake given that > the document includes a 1/2-page paragraph explaining why usernames > should not be in excess of 8 characters... What would Freud say? ;) Nuke adduser. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 02:53:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA23772 for cvs-all-outgoing; Sat, 21 Mar 1998 02:53:57 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA23757; Sat, 21 Mar 1998 02:53:43 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from baloon.mimi.com (sjx-ca126-11.ix.netcom.com [207.92.177.203]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id CAA00231; Sat, 21 Mar 1998 02:53:41 -0800 (PST) Received: (from asami@localhost) by baloon.mimi.com (8.8.8/8.8.8) id CAA02187; Sat, 21 Mar 1998 02:53:34 -0800 (PST) (envelope-from asami) Date: Sat, 21 Mar 1998 02:53:34 -0800 (PST) Message-Id: <199803211053.CAA02187@baloon.mimi.com> To: itojun@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <199803121605.IAA27594@freefall.freebsd.org> (message from Jun-ichiro Itoh on Thu, 12 Mar 1998 08:05:03 -0800 (PST)) Subject: Re: cvs commit: ports/japanese/skkinput - Imported sources From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * "A SKK-like Japanese input method for X11." Thanks, but can't fetch. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 02:54:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA23832 for cvs-all-outgoing; Sat, 21 Mar 1998 02:54:37 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA23827; Sat, 21 Mar 1998 02:54:36 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA06359; Sat, 21 Mar 1998 02:54:26 -0800 (PST) Date: Sat, 21 Mar 1998 02:54:26 -0800 (PST) Message-Id: <199803211054.CAA06359@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/japanese/skkinput Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/21 02:54:25 PST Modified files: japanese/skkinput Makefile Log: Mark this port broken, can't fetch. Revision Changes Path 1.2 +3 -1 ports/japanese/skkinput/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 03:01:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA24290 for cvs-all-outgoing; Sat, 21 Mar 1998 03:01:45 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA24285; Sat, 21 Mar 1998 03:01:42 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA06422; Sat, 21 Mar 1998 03:01:32 -0800 (PST) Date: Sat, 21 Mar 1998 03:01:32 -0800 (PST) Message-Id: <199803211101.DAA06422@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/japanese/zipcodes Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/21 03:01:32 PST Modified files: japanese/zipcodes Makefile Log: Doesn't build: ===> Building for ja-zipcodes-19980130 make: don't know how to make 01hokkai.euc-csv. Stop *** Error code 2 Stop. Revision Changes Path 1.5 +3 -1 ports/japanese/zipcodes/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 03:33:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA25701 for cvs-all-outgoing; Sat, 21 Mar 1998 03:33:56 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA25688; Sat, 21 Mar 1998 03:33:47 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA06626; Sat, 21 Mar 1998 03:33:36 -0800 (PST) Date: Sat, 21 Mar 1998 03:33:36 -0800 (PST) Message-Id: <199803211133.DAA06626@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/lang/STk/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/21 03:33:35 PST Modified files: lang/STk/pkg PLIST Log: There are some version numbers in file/directory names. (Please test packaging before commits!) Revision Changes Path 1.5 +3 -3 ports/lang/STk/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 Mar 21 03:34:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA25762 for cvs-all-outgoing; Sat, 21 Mar 1998 03:34:47 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA25757; Sat, 21 Mar 1998 03:34:42 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA06747; Sat, 21 Mar 1998 03:34:31 -0800 (PST) Date: Sat, 21 Mar 1998 03:34:31 -0800 (PST) Message-Id: <199803211134.DAA06747@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/conf files options src/sys/netinet fil.c in_proto.c ip_auth.c ip_fil.c ip_frag.c ip_ftp_pxy.c ip_input.c ip_log.c ip_nat.c ip_output.c ip_proxy.c ip_state.c mlf_ipl.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 03:34:31 PST Modified files: sys/conf files options sys/netinet fil.c in_proto.c ip_auth.c ip_fil.c ip_frag.c ip_ftp_pxy.c ip_input.c ip_log.c ip_nat.c ip_output.c ip_proxy.c ip_state.c mlf_ipl.c Log: Make this compile.. There are some unpleasing hacks in here. A major unifdef session is sorely tempting but would destroy any remaining chance of tracking the original sources. Revision Changes Path 1.131 +9 -7 src/sys/conf/files 1.69 +4 -1 src/sys/conf/options 1.2 +742 -193 src/sys/netinet/fil.c 1.46 +1 -7 src/sys/netinet/in_proto.c 1.2 +9 -1 src/sys/netinet/ip_auth.c 1.2 +663 -297 src/sys/netinet/ip_fil.c 1.2 +251 -62 src/sys/netinet/ip_frag.c 1.2 +102 -48 src/sys/netinet/ip_ftp_pxy.c 1.80 +7 -3 src/sys/netinet/ip_input.c 1.2 +5 -5 src/sys/netinet/ip_log.c 1.2 +650 -163 src/sys/netinet/ip_nat.c 1.66 +10 -15 src/sys/netinet/ip_output.c 1.2 +77 -26 src/sys/netinet/ip_proxy.c 1.2 +223 -48 src/sys/netinet/ip_state.c 1.4 +3 -3 src/sys/netinet/mlf_ipl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 03:35:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA25827 for cvs-all-outgoing; Sat, 21 Mar 1998 03:35:35 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA25809; Sat, 21 Mar 1998 03:35:24 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from baloon.mimi.com (sjx-ca126-11.ix.netcom.com [207.92.177.203]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id DAA00300; Sat, 21 Mar 1998 03:35:23 -0800 (PST) Received: (from asami@localhost) by baloon.mimi.com (8.8.8/8.8.8) id DAA02296; Sat, 21 Mar 1998 03:35:20 -0800 (PST) (envelope-from asami) Date: Sat, 21 Mar 1998 03:35:20 -0800 (PST) Message-Id: <199803211135.DAA02296@baloon.mimi.com> To: obrien@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <199803111149.DAA09323@freefall.freebsd.org> (obrien@FreeBSD.ORG) Subject: Re: cvs commit: ports/lang/gcc28 Makefile ports/lang/gcc28/patches patch-01 patch-02 From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/03/11 03:49:16 PST Not sure if it's related, but got this on pkg_delete. Can you take a look? Thanks Satoshi ------- install-info: No input file specified pkg_delete: unexec command for `install-info --delete' failed pkg_delete: couldn't entirely delete package (perhaps the packing list is incorrectly specified?) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 03:35:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA25880 for cvs-all-outgoing; Sat, 21 Mar 1998 03:35:50 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA25857; Sat, 21 Mar 1998 03:35:45 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA06766; Sat, 21 Mar 1998 03:35:35 -0800 (PST) Date: Sat, 21 Mar 1998 03:35:35 -0800 (PST) Message-Id: <199803211135.DAA06766@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/emulators/xzx/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/03/21 03:35:34 PST Modified files: emulators/xzx/patches patch-aa Log: Fix endian.h error. Revision Changes Path 1.3 +12 -3 ports/emulators/xzx/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 03:36:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA26114 for cvs-all-outgoing; Sat, 21 Mar 1998 03:36:59 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA26086; Sat, 21 Mar 1998 03:36:51 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA06793; Sat, 21 Mar 1998 03:36:39 -0800 (PST) Date: Sat, 21 Mar 1998 03:36:39 -0800 (PST) Message-Id: <199803211136.DAA06793@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/netinet mln_ipl.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 03:36:38 PST Removed files: sys/netinet mln_ipl.c Log: replaced by FreeBSD specific version To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 03:48:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA27198 for cvs-all-outgoing; Sat, 21 Mar 1998 03:48:00 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA27183; Sat, 21 Mar 1998 03:47:50 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from baloon.mimi.com (sjx-ca126-11.ix.netcom.com [207.92.177.203]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id DAA00315; Sat, 21 Mar 1998 03:47:49 -0800 (PST) Received: (from asami@localhost) by baloon.mimi.com (8.8.8/8.8.8) id DAA02342; Sat, 21 Mar 1998 03:46:59 -0800 (PST) (envelope-from asami) Date: Sat, 21 Mar 1998 03:46:59 -0800 (PST) Message-Id: <199803211146.DAA02342@baloon.mimi.com> To: obrien@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <199803111149.DAA09323@freefall.freebsd.org> (obrien@FreeBSD.ORG) Subject: Re: cvs commit: ports/lang/gcc28 Makefile ports/lang/gcc28/patches patch-01 patch-02 From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk This port compiles stuff with -g and no -O. Can you fix it or add NO_PACKAGE? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 03:53:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA28272 for cvs-all-outgoing; Sat, 21 Mar 1998 03:53:45 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA28231; Sat, 21 Mar 1998 03:53:24 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from baloon.mimi.com (sjx-ca126-11.ix.netcom.com [207.92.177.203]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id DAA00333; Sat, 21 Mar 1998 03:53:21 -0800 (PST) Received: (from asami@localhost) by baloon.mimi.com (8.8.8/8.8.8) id DAA02375; Sat, 21 Mar 1998 03:53:19 -0800 (PST) (envelope-from asami) Date: Sat, 21 Mar 1998 03:53:19 -0800 (PST) Message-Id: <199803211153.DAA02375@baloon.mimi.com> To: obrien@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <199803211146.DAA02342@baloon.mimi.com> (asami@cs.berkeley.edu) Subject: Re: cvs commit: ports/lang/gcc28 Makefile ports/lang/gcc28/patches patch-01 patch-02 From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * This port compiles stuff with -g and no -O. Can you fix it or add * NO_PACKAGE? Never mind, I see that it adds -O after stage1. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 04:00:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA28934 for cvs-all-outgoing; Sat, 21 Mar 1998 04:00:58 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA28818; Sat, 21 Mar 1998 04:00:43 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA06863; Sat, 21 Mar 1998 04:00:31 -0800 (PST) Date: Sat, 21 Mar 1998 04:00:31 -0800 (PST) Message-Id: <199803211200.EAA06863@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/emulators/xzx Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/21 04:00:30 PST Modified files: emulators/xzx Makefile Log: Remove BROKEN, it's fixed now. (Folks, you can remove these lines if you believe you fixed the port!) Revision Changes Path 1.5 +1 -3 ports/emulators/xzx/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 04:08:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA02353 for cvs-all-outgoing; Sat, 21 Mar 1998 04:08:11 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA02336; Sat, 21 Mar 1998 04:08:08 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA06931; Sat, 21 Mar 1998 04:07:57 -0800 (PST) Date: Sat, 21 Mar 1998 04:07:57 -0800 (PST) Message-Id: <199803211207.EAA06931@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/korean/vim Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/21 04:07:56 PST Modified files: korean/vim Makefile Log: Don't use "-" to delimit version numbers, it will confuse the "Latest" link. Only use Motif if PACKAGE_BUILDING is not defined, we don't want to ship statically Motif packages if the port can be built without it. Revision Changes Path 1.2 +3 -3 ports/korean/vim/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 04:13:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA03491 for cvs-all-outgoing; Sat, 21 Mar 1998 04:13:10 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA03486; Sat, 21 Mar 1998 04:13:08 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA06966; Sat, 21 Mar 1998 04:12:57 -0800 (PST) Date: Sat, 21 Mar 1998 04:12:57 -0800 (PST) Message-Id: <199803211212.EAA06966@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/groff/tmac Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/03/21 04:12:56 PST Modified files: gnu/usr.bin/groff/tmac Makefile Log: Generate files at build time, not at install time. This should be the last fix of this type. Installing from a read-only object tree should work now. Install files using a single install command where this is easy; don't use shell loops. Don't use MANDEPEND to complicate things. Revision Changes Path 1.15 +23 -24 src/gnu/usr.bin/groff/tmac/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 04:24:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA04135 for cvs-all-outgoing; Sat, 21 Mar 1998 04:24:52 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA04130; Sat, 21 Mar 1998 04:24:50 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA07017; Sat, 21 Mar 1998 04:24:40 -0800 (PST) Date: Sat, 21 Mar 1998 04:24:40 -0800 (PST) Message-Id: <199803211224.EAA07017@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/lftp Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/21 04:24:39 PST Modified files: net/lftp Makefile Log: Mark this port broken, can't fetch. Revision Changes Path 1.6 +3 -1 ports/net/lftp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 04:25:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA04290 for cvs-all-outgoing; Sat, 21 Mar 1998 04:25:29 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA04226; Sat, 21 Mar 1998 04:25:17 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from baloon.mimi.com (sjx-ca126-11.ix.netcom.com [207.92.177.203]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id EAA00377; Sat, 21 Mar 1998 04:25:16 -0800 (PST) Received: (from asami@localhost) by baloon.mimi.com (8.8.8/8.8.8) id EAA02457; Sat, 21 Mar 1998 04:25:13 -0800 (PST) (envelope-from asami) Date: Sat, 21 Mar 1998 04:25:13 -0800 (PST) Message-Id: <199803211225.EAA02457@baloon.mimi.com> To: vanilla@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <199803120239.SAA05655@freefall.freebsd.org> (vanilla@FreeBSD.ORG) Subject: Re: cvs commit: ports/net/lftp Makefile ports/net/lftp/files md5 ports/net/lftp/patches patch-ab patch-aa From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Upgrade to 0.14.3. Thanks, but can't fetch. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 04:29:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA04770 for cvs-all-outgoing; Sat, 21 Mar 1998 04:29:26 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA04765; Sat, 21 Mar 1998 04:29:25 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA07077; Sat, 21 Mar 1998 04:29:14 -0800 (PST) Date: Sat, 21 Mar 1998 04:29:14 -0800 (PST) Message-Id: <199803211229.EAA07077@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/omi/pkg COMMENT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/21 04:29:13 PST Modified files: net/omi/pkg COMMENT Log: No need for "omi" in front of COMMENT. Revision Changes Path 1.2 +1 -1 ports/net/omi/pkg/COMMENT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 04:40:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA05496 for cvs-all-outgoing; Sat, 21 Mar 1998 04:40:32 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA05483; Sat, 21 Mar 1998 04:40:24 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from baloon.mimi.com (sjx-ca126-11.ix.netcom.com [207.92.177.203]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id EAA00407; Sat, 21 Mar 1998 04:40:23 -0800 (PST) Received: (from asami@localhost) by baloon.mimi.com (8.8.8/8.8.8) id EAA02508; Sat, 21 Mar 1998 04:40:20 -0800 (PST) (envelope-from asami) Date: Sat, 21 Mar 1998 04:40:20 -0800 (PST) Message-Id: <199803211240.EAA02508@baloon.mimi.com> To: andreas@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <199803141636.IAA29147@freefall.freebsd.org> (message from Andreas Klemm on Sat, 14 Mar 1998 08:36:01 -0800 (PST)) Subject: Re: cvs commit: ports/news/knews Makefile ports/news/knews/files md5 ports/news/knews/patches patch-aa patch-ab patch-ac ports/news/knews/scripts pre-configure From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * update to new version 1.0b.0 Thanks, but doesn't compile. jpeglib.h is in /usr/local/include. Satoshi ------- cc -O2 -I../Widgets -I/usr/X11R6/include -I/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c jpeg.c jpeg.c:22: jpeglib.h: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 04:41:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA05612 for cvs-all-outgoing; Sat, 21 Mar 1998 04:41:09 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA05591; Sat, 21 Mar 1998 04:41:06 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA07134; Sat, 21 Mar 1998 04:40:55 -0800 (PST) Date: Sat, 21 Mar 1998 04:40:55 -0800 (PST) Message-Id: <199803211240.EAA07134@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/news/knews Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/21 04:40:55 PST Modified files: news/knews Makefile Log: mark this port broken Revision Changes Path 1.11 +3 -1 ports/news/knews/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 04:44:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA06259 for cvs-all-outgoing; Sat, 21 Mar 1998 04:44:25 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA06252; Sat, 21 Mar 1998 04:44:22 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA07181; Sat, 21 Mar 1998 04:44:11 -0800 (PST) Date: Sat, 21 Mar 1998 04:44:11 -0800 (PST) Message-Id: <199803211244.EAA07181@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/scotty Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/21 04:44:10 PST Modified files: net/scotty Makefile Log: Mark this port broken: ===> Installing for scotty-2.1.8 ===> scotty-2.1.8 depends on shared library: tk80\.1\. - found Installing ntping Installing straps Making directory /usr/local/lib/tnm2.1.8 Installing scotty2.1.8 and tnm2.1.8.so Making directory /usr/local/lib/tnm2.1.8/library Installing ./../tnm/library/README Installing ./../tnm/library/dialog.tcl Installing ./../tnm/library/output.tcl Installing ./../tnm/library/snmp.tcl Installing ./../tnm/library/monitor.tcl Installing ./../tnm/library/obsolete.tcl Installing ./../tnm/library/init.tcl initialization failed: couldn't load file "/usr/local/lib/tnm2.1.8": bad magic number in "/usr/local/lib/tnm2.1.8" *** Error code 1 Revision Changes Path 1.26 +4 -1 ports/net/scotty/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 04:50:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA06658 for cvs-all-outgoing; Sat, 21 Mar 1998 04:50:00 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA06653; Sat, 21 Mar 1998 04:49:56 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA07225; Sat, 21 Mar 1998 04:49:45 -0800 (PST) Date: Sat, 21 Mar 1998 04:49:45 -0800 (PST) Message-Id: <199803211249.EAA07225@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/textproc/tth Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/21 04:49:44 PST Modified files: textproc/tth Makefile Log: Mark this port broken, checksum mismatches and directory structure is different. Revision Changes Path 1.5 +3 -1 ports/textproc/tth/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 04:52:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA07067 for cvs-all-outgoing; Sat, 21 Mar 1998 04:52:05 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA07045; Sat, 21 Mar 1998 04:51:59 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA07260; Sat, 21 Mar 1998 04:51:49 -0800 (PST) Date: Sat, 21 Mar 1998 04:51:49 -0800 (PST) Message-Id: <199803211251.EAA07260@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/doscmd Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/03/21 04:51:48 PST Modified files: usr.bin/doscmd Makefile Log: Honour -static in LDFLAGS. Install using ${INSTALL}, not `install'. Install generated files using ${COPY}, not -c. Install using a single command when this is easy. Revision Changes Path 1.10 +8 -9 src/usr.bin/doscmd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 04:54:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA07522 for cvs-all-outgoing; Sat, 21 Mar 1998 04:54:58 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA07517; Sat, 21 Mar 1998 04:54:57 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA07299; Sat, 21 Mar 1998 04:54:46 -0800 (PST) Date: Sat, 21 Mar 1998 04:54:46 -0800 (PST) Message-Id: <199803211254.EAA07299@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/lynx-current Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/21 04:54:45 PST Modified files: www/lynx-current Makefile Log: Add NO_LATEST_LINK. Revision Changes Path 1.85 +2 -1 ports/www/lynx-current/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 04:58:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA07758 for cvs-all-outgoing; Sat, 21 Mar 1998 04:58:09 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA07753; Sat, 21 Mar 1998 04:58:08 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA07350; Sat, 21 Mar 1998 04:57:57 -0800 (PST) Date: Sat, 21 Mar 1998 04:57:57 -0800 (PST) Message-Id: <199803211257.EAA07350@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/lftp Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/21 04:57:56 PST Modified files: net/lftp Makefile Log: Thanks to vanilla, I got the distfile. Revision Changes Path 1.7 +1 -3 ports/net/lftp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 05:35:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA09360 for cvs-all-outgoing; Sat, 21 Mar 1998 05:35:22 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA09355; Sat, 21 Mar 1998 05:35:19 -0800 (PST) (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA07467; Sat, 21 Mar 1998 05:35:08 -0800 (PST) Date: Sat, 21 Mar 1998 05:35:08 -0800 (PST) Message-Id: <199803211335.FAA07467@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/news/knews Makefile ports/news/knews/scripts pre-configure Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/03/21 05:35:08 PST Modified files: news/knews Makefile news/knews/scripts pre-configure Log: remove BROKENNESS forgot to add patch-ac tested packaging Reviewed by: as requested by Satoshi Revision Changes Path 1.12 +1 -3 ports/news/knews/Makefile 1.4 +1 -1 ports/news/knews/scripts/pre-configure To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 05:36:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA09433 for cvs-all-outgoing; Sat, 21 Mar 1998 05:36:35 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA09428; Sat, 21 Mar 1998 05:36:33 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA07508; Sat, 21 Mar 1998 05:36:22 -0800 (PST) Date: Sat, 21 Mar 1998 05:36:22 -0800 (PST) Message-Id: <199803211336.FAA07508@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/net if.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 05:36:21 PST Modified files: sys/net if.h Log: On most other systems "out there", does not require the caller to #include first. I've lost count of the number of times I've had to patch this in porting code. The problem is the "struct timeval ifi_lastchange" in the mib stats. (most other systems don't have this, until 4.4bsd anyway). Revision Changes Path 1.49 +9 -1 src/sys/net/if.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 05:36:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA09485 for cvs-all-outgoing; Sat, 21 Mar 1998 05:36:54 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA09473; Sat, 21 Mar 1998 05:36:53 -0800 (PST) (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA07536; Sat, 21 Mar 1998 05:36:42 -0800 (PST) Date: Sat, 21 Mar 1998 05:36:42 -0800 (PST) Message-Id: <199803211336.FAA07536@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/news/knews/patches patch-ac Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/03/21 05:36:41 PST Added files: news/knews/patches patch-ac Log: hell, what's going on ... again forgot patch-ac, but now ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 05:38:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA09605 for cvs-all-outgoing; Sat, 21 Mar 1998 05:38:00 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA09593; Sat, 21 Mar 1998 05:37:58 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA07578; Sat, 21 Mar 1998 05:37:46 -0800 (PST) Date: Sat, 21 Mar 1998 05:37:46 -0800 (PST) Message-Id: <199803211337.FAA07578@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/netinet ip_auth.c ip_fil.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 05:37:46 PST Modified files: sys/netinet ip_auth.c ip_fil.h Log: Some patchups for when this code is compiled in userland (!). Revision Changes Path 1.3 +4 -1 src/sys/netinet/ip_auth.c 1.2 +303 -74 src/sys/netinet/ip_fil.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 05:39:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA09833 for cvs-all-outgoing; Sat, 21 Mar 1998 05:39:27 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA09828; Sat, 21 Mar 1998 05:39:26 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA07678; Sat, 21 Mar 1998 05:39:15 -0800 (PST) Date: Sat, 21 Mar 1998 05:39:15 -0800 (PST) Message-Id: <199803211339.FAA07678@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-contrib@FreeBSD.ORG Subject: cvs commit: src/contrib/ipfilter ipmon.c src/contrib/ipfilter/ipsend ipsend.c sbpf.c sock.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 05:39:14 PST Modified files: contrib/ipfilter ipmon.c contrib/ipfilter/ipsend ipsend.c sbpf.c sock.c Log: Some tweaks to get this to compile for the userland tools. Revision Changes Path 1.2 +511 -256 src/contrib/ipfilter/ipmon.c 1.2 +91 -42 src/contrib/ipfilter/ipsend/ipsend.c 1.2 +9 -9 src/contrib/ipfilter/ipsend/sbpf.c 1.2 +82 -55 src/contrib/ipfilter/ipsend/sock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 05:43:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA10248 for cvs-all-outgoing; Sat, 21 Mar 1998 05:43:23 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA10243; Sat, 21 Mar 1998 05:43:22 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA07701; Sat, 21 Mar 1998 05:43:11 -0800 (PST) Date: Sat, 21 Mar 1998 05:43:11 -0800 (PST) Message-Id: <199803211343.FAA07701@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/camltk41 Makefile ports/www/mmm Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/21 05:43:11 PST Modified files: x11/camltk41 Makefile www/mmm Makefile Log: Mark camltk41 and mmm (depends on camltk41) broken. Maintainer doesn't know what to do. Revision Changes Path 1.9 +3 -1 ports/x11/camltk41/Makefile 1.8 +3 -1 ports/www/mmm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 05:45:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA10446 for cvs-all-outgoing; Sat, 21 Mar 1998 05:45:58 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from news1.gtn.com (news1.gtn.com [194.77.0.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA10435; Sat, 21 Mar 1998 05:45:50 -0800 (PST) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by news1.gtn.com (8.8.6/8.8.6) with UUCP id OAA27287; Sat, 21 Mar 1998 14:30:19 +0100 (MET) Received: (from andreas@localhost) by klemm.gtn.com (8.8.8/8.8.7) id OAA19278; Sat, 21 Mar 1998 14:16:50 +0100 (CET) (envelope-from andreas) Message-ID: <19980321141650.60520@klemm.gtn.com> Date: Sat, 21 Mar 1998 14:16:50 +0100 From: Andreas Klemm To: Satoshi Asami , andreas@FreeBSD.ORG Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/news/knews Makefile ports/news/knews/files md5 ports/news/knews/patches patch-aa patch-ab patch-ac ports/news/knews/scripts pre-configure References: <199803141636.IAA29147@freefall.freebsd.org> <199803211240.EAA02508@baloon.mimi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <199803211240.EAA02508@baloon.mimi.com>; from Satoshi Asami on Sat, Mar 21, 1998 at 04:40:20AM -0800 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sat, Mar 21, 1998 at 04:40:20AM -0800, Satoshi Asami wrote: > * update to new version 1.0b.0 > > Thanks, but doesn't compile. jpeglib.h is in /usr/local/include. > > Satoshi > ------- > cc -O2 -I../Widgets -I/usr/X11R6/include -I/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c jpeg.c > jpeg.c:22: jpeglib.h: No such file or directory Will fix it asap. -- Andreas Klemm http://www.FreeBSD.ORG/~andreas powered by ,,symmetric multiprocessor FreeBSD'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 05:48:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA10737 for cvs-all-outgoing; Sat, 21 Mar 1998 05:48:56 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA10726; Sat, 21 Mar 1998 05:48:52 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA07811; Sat, 21 Mar 1998 05:48:37 -0800 (PST) Date: Sat, 21 Mar 1998 05:48:37 -0800 (PST) Message-Id: <199803211348.FAA07811@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/editors/gvim Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/21 05:48:37 PST Removed files: editors/gvim Makefile Log: DavidO forgot to remove this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 05:53:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA11234 for cvs-all-outgoing; Sat, 21 Mar 1998 05:53:33 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA11228; Sat, 21 Mar 1998 05:53:31 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA08094; Sat, 21 Mar 1998 05:53:19 -0800 (PST) Date: Sat, 21 Mar 1998 05:53:19 -0800 (PST) Message-Id: <199803211353.FAA08094@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/sbin Makefile src/usr.sbin Makefile src/sbin/ipf Makefile src/usr.sbin/ipfstat Makefile src/usr.sbin/ipftest Makefile src/usr.sbin/ipmon Makefile src/usr.sbin/ipnat Makefile src/usr.sbin/ipresend Makefile src/usr.sbin/ipsend Makefile ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 05:53:19 PST Modified files: sbin Makefile usr.sbin Makefile Added files: sbin/ipf Makefile usr.sbin/ipfstat Makefile usr.sbin/ipftest Makefile usr.sbin/ipmon Makefile usr.sbin/ipnat Makefile usr.sbin/ipresend Makefile usr.sbin/ipsend Makefile usr.sbin/iptest Makefile Log: Initial bmake scaffolding for ipfilter userland stuff. Obtained from: large chunks stolen from OpenBSD and NetBSD Revision Changes Path 1.44 +2 -0 src/sbin/Makefile 1.117 +3 -1 src/usr.sbin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 05:54:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA11319 for cvs-all-outgoing; Sat, 21 Mar 1998 05:54:35 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA11311; Sat, 21 Mar 1998 05:54:33 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA08143; Sat, 21 Mar 1998 05:54:22 -0800 (PST) Date: Sat, 21 Mar 1998 05:54:22 -0800 (PST) Message-Id: <199803211354.FAA08143@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/comms Makefile ports/devel Makefile ports/games Makefile ports/security Makefile ports/www Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/21 05:54:21 PST Modified files: comms Makefile devel Makefile games Makefile security Makefile www Makefile Log: Add comms/kpilot, devel/p5-File-Sync, games/tank, security/pgp5 and www/checkbot. Forgotten or misspelled by: various people :p Revision Changes Path 1.29 +2 -1 ports/comms/Makefile 1.96 +2 -2 ports/devel/Makefile 1.114 +2 -1 ports/games/Makefile 1.28 +2 -1 ports/security/Makefile 1.71 +2 -1 ports/www/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 05:59:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA11689 for cvs-all-outgoing; Sat, 21 Mar 1998 05:59:05 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from news1.gtn.com (news1.gtn.com [194.77.0.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA11679; Sat, 21 Mar 1998 05:58:58 -0800 (PST) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by news1.gtn.com (8.8.6/8.8.6) with UUCP id OAA01057; Sat, 21 Mar 1998 14:45:08 +0100 (MET) Received: (from andreas@localhost) by klemm.gtn.com (8.8.8/8.8.7) id OAA28029; Sat, 21 Mar 1998 14:28:27 +0100 (CET) (envelope-from andreas) Message-ID: <19980321142827.47094@klemm.gtn.com> Date: Sat, 21 Mar 1998 14:28:27 +0100 From: Andreas Klemm To: Satoshi Asami , andreas@FreeBSD.ORG Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/news/knews Makefile ports/news/knews/files md5 ports/news/knews/patches patch-aa patch-ab patch-ac ports/news/knews/scripts pre-configure References: <199803141636.IAA29147@freefall.freebsd.org> <199803211240.EAA02508@baloon.mimi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <199803211240.EAA02508@baloon.mimi.com>; from Satoshi Asami on Sat, Mar 21, 1998 at 04:40:20AM -0800 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sat, Mar 21, 1998 at 04:40:20AM -0800, Satoshi Asami wrote: > * update to new version 1.0b.0 > > Thanks, but doesn't compile. jpeglib.h is in /usr/local/include. Oh, I see, a pach wasn't included, damn :-( I surely forgot a cvs add. Wait ... it's fixed in a few minutes. -- Andreas Klemm http://www.FreeBSD.ORG/~andreas powered by ,,symmetric multiprocessor FreeBSD'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 06:03:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA12018 for cvs-all-outgoing; Sat, 21 Mar 1998 06:03:24 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA12002; Sat, 21 Mar 1998 06:03:19 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from baloon.mimi.com (sjx-ca126-11.ix.netcom.com [207.92.177.203]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id GAA00491; Sat, 21 Mar 1998 06:03:18 -0800 (PST) Received: (from asami@localhost) by baloon.mimi.com (8.8.8/8.8.8) id GAA02755; Sat, 21 Mar 1998 06:03:15 -0800 (PST) (envelope-from asami) Date: Sat, 21 Mar 1998 06:03:15 -0800 (PST) Message-Id: <199803211403.GAA02755@baloon.mimi.com> To: andreas@klemm.gtn.com CC: andreas@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <19980321142827.47094@klemm.gtn.com> (message from Andreas Klemm on Sat, 21 Mar 1998 14:28:27 +0100) Subject: Re: cvs commit: ports/news/knews Makefile ports/news/knews/files md5 ports/news/knews/patches patch-aa patch-ab patch-ac ports/news/knews/scripts pre-configure From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Oh, I see, a pach wasn't included, damn :-( * I surely forgot a cvs add. Wait ... it's fixed in a few minutes. Works fine now, thanks. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 06:14:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA12714 for cvs-all-outgoing; Sat, 21 Mar 1998 06:14:03 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA12709; Sat, 21 Mar 1998 06:14:02 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA08227; Sat, 21 Mar 1998 06:13:50 -0800 (PST) Date: Sat, 21 Mar 1998 06:13:50 -0800 (PST) Message-Id: <199803211413.GAA08227@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/conf LINT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 06:13:50 PST Modified files: sys/i386/conf LINT Log: Add IPFILTER, IPFILTER_LOG and note IPFILTER_LKM. Revision Changes Path 1.420 +8 -1 src/sys/i386/conf/LINT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 06:26:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA13604 for cvs-all-outgoing; Sat, 21 Mar 1998 06:26:17 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA13599; Sat, 21 Mar 1998 06:26:16 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA08277; Sat, 21 Mar 1998 06:26:05 -0800 (PST) Date: Sat, 21 Mar 1998 06:26:05 -0800 (PST) Message-Id: <199803211426.GAA08277@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc/etc.i386 MAKEDEV Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 06:26:04 PST Modified files: etc/etc.i386 MAKEDEV Log: /dev nodes for ipfilter Revision Changes Path 1.159 +12 -2 src/etc/etc.i386/MAKEDEV To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 06:43:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA14352 for cvs-all-outgoing; Sat, 21 Mar 1998 06:43:02 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA14347; Sat, 21 Mar 1998 06:43:01 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA10352; Sat, 21 Mar 1998 06:42:49 -0800 (PST) Date: Sat, 21 Mar 1998 06:42:49 -0800 (PST) Message-Id: <199803211442.GAA10352@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/netinet ip_log.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 06:42:49 PST Modified files: sys/netinet ip_log.c Log: Make it compile.. missing "opt_ipfilter.h" and missing Revision Changes Path 1.3 +5 -3 src/sys/netinet/ip_log.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 06:50:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA15026 for cvs-all-outgoing; Sat, 21 Mar 1998 06:50:29 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA15021; Sat, 21 Mar 1998 06:50:28 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA10392; Sat, 21 Mar 1998 06:50:16 -0800 (PST) Date: Sat, 21 Mar 1998 06:50:16 -0800 (PST) Message-Id: <199803211450.GAA10392@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ipsend Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 06:50:16 PST Modified files: usr.sbin/ipsend Makefile Log: Fix pathname to contrib/ipfilter botch. Revision Changes Path 1.2 +8 -8 src/usr.sbin/ipsend/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 06:57:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA15808 for cvs-all-outgoing; Sat, 21 Mar 1998 06:57:26 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au (spinner.netplex.com.au [202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA15773; Sat, 21 Mar 1998 06:57:08 -0800 (PST) (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.8.8/8.8.8/Spinner) with ESMTP id WAA24873; Sat, 21 Mar 1998 22:56:25 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199803211456.WAA24873@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: dima@best.net cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-contrib@FreeBSD.ORG Subject: Re: cvs commit: src/contrib/ipfilter - Imported sources In-reply-to: Your message of "Sat, 21 Mar 1998 02:18:53 PST." <199803211018.CAA05062@burka.rdy.com> Date: Sat, 21 Mar 1998 22:56:21 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Dima Ruban wrote: > Hey guys! > > When ipfilter will be brought to -stable or will it ever? :-) Not while 2.2.6-beta is on our doorstep... (not by me, anyway).. It needs a good thrashing in it's present form anyway, there are bound to be more than a few problems waiting to jump out.. Cheers, -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 07:03:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA16216 for cvs-all-outgoing; Sat, 21 Mar 1998 07:03:48 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA16211; Sat, 21 Mar 1998 07:03:47 -0800 (PST) (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA10543; Sat, 21 Mar 1998 07:03:36 -0800 (PST) Date: Sat, 21 Mar 1998 07:03:36 -0800 (PST) Message-Id: <199803211503.HAA10543@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/kirc Makefile ports/net/kirc/files md5 ports/net/kirc/patches patch-aa patch-ab patch-ac patch-a0 ports/net/kirc/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/03/21 07:03:36 PST Modified files: net/kirc Makefile net/kirc/files md5 net/kirc/patches patch-aa patch-ab patch-ac net/kirc/pkg PLIST Removed files: net/kirc/patches patch-a0 Log: update broken kirc port to newest version added dirrm's to PLIST file portlint ok, tested make package and pkg_add's/pkg_delete's Reviewed by: ok'd by Satoshi (thanks) Revision Changes Path 1.5 +12 -9 ports/net/kirc/Makefile 1.3 +1 -1 ports/net/kirc/files/md5 1.2 +31 -41 ports/net/kirc/patches/patch-aa 1.2 +12 -3 ports/net/kirc/patches/patch-ab 1.2 +26 -11 ports/net/kirc/patches/patch-ac 1.2 +15 -8 ports/net/kirc/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 Mar 21 07:08:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA16509 for cvs-all-outgoing; Sat, 21 Mar 1998 07:08:10 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ns1.yes.no (ns1.yes.no [195.119.24.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA16470; Sat, 21 Mar 1998 07:08:00 -0800 (PST) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [194.198.43.36]) by ns1.yes.no (8.8.7/8.8.7) with ESMTP id PAA19642; Sat, 21 Mar 1998 15:07:55 GMT Received: (from eivind@localhost) by bitbox.follo.net (8.8.6/8.8.6) id QAA20490; Sat, 21 Mar 1998 16:07:54 +0100 (MET) Message-ID: <19980321160749.23483@follo.net> Date: Sat, 21 Mar 1998 16:07:49 +0100 From: Eivind Eklund To: Satoshi Asami , erich@FreeBSD.ORG Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/graphics/gimp-devel Makefile ports/graphics/gimp-devel/files md5 ports/graphics/gimp-devel/patches patch-ai patch-ah ports/graphics/gimp-devel/pkg PLIST References: <199803172252.OAA26498@freefall.freebsd.org> <199803210927.BAA02053@baloon.mimi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <199803210927.BAA02053@baloon.mimi.com>; from Satoshi Asami on Sat, Mar 21, 1998 at 01:27:16AM -0800 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sat, Mar 21, 1998 at 01:27:16AM -0800, Satoshi Asami wrote: > * upgrade to 0.99.21, there'll be another port containing the ``unstable'' > * plug-ins soon. > > Thanks, but can't fetch the .21 tarballs. Someone (anyone!) please > upgrade the port to .22 or put the following two files in > /f/users/asami/ports/distfiles: > > +MD5 (gimp-0.99.21.tar.gz) = e1544aec645d7be6586485e6a131ece7 > +MD5 (gimp-plugins-unstable-0.99.21.tar.gz) = 3dcd9c1d27557aebeceeb6f3fa6b7f9a I've found them and I'm presently copying them to freefall. Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 07:19:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA17031 for cvs-all-outgoing; Sat, 21 Mar 1998 07:19:42 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA17026; Sat, 21 Mar 1998 07:19:41 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA10707; Sat, 21 Mar 1998 07:19:24 -0800 (PST) Date: Sat, 21 Mar 1998 07:19:24 -0800 (PST) Message-Id: <199803211519.HAA10707@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pppd - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 07:19:24 PST src/usr.sbin/pppd - Imported sources Update of /home/ncvs/src/usr.sbin/pppd In directory freefall.freebsd.org:/tmp/cvs-serv10574 Log Message: Import ppp-2.3.3 onto vendor branch. Obtained from: ftp://cs.anu.edu.au/pub/software/ppp Status: Vendor Tag: MACKERRAS Release Tags: ppp_2_3_3 C src/usr.sbin/pppd/options.c C src/usr.sbin/pppd/ipcp.h C src/usr.sbin/pppd/auth.c C src/usr.sbin/pppd/cbcp.c C src/usr.sbin/pppd/cbcp.h C src/usr.sbin/pppd/ccp.c C src/usr.sbin/pppd/ccp.h C src/usr.sbin/pppd/chap.c C src/usr.sbin/pppd/chap.h C src/usr.sbin/pppd/chap_ms.c C src/usr.sbin/pppd/chap_ms.h C src/usr.sbin/pppd/demand.c C src/usr.sbin/pppd/fsm.c C src/usr.sbin/pppd/fsm.h C src/usr.sbin/pppd/ipcp.c C src/usr.sbin/pppd/ipxcp.c C src/usr.sbin/pppd/ipxcp.h C src/usr.sbin/pppd/lcp.c C src/usr.sbin/pppd/lcp.h C src/usr.sbin/pppd/magic.c C src/usr.sbin/pppd/magic.h C src/usr.sbin/pppd/main.c C src/usr.sbin/pppd/patchlevel.h C src/usr.sbin/pppd/pathnames.h C src/usr.sbin/pppd/pppd.8 C src/usr.sbin/pppd/pppd.h C src/usr.sbin/pppd/sys-bsd.c C src/usr.sbin/pppd/upap.c C src/usr.sbin/pppd/upap.h 29 conflicts created by this import. Use the following command to help the merge: cvs checkout -jMACKERRAS:yesterday -jMACKERRAS src/usr.sbin/pppd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 10:01:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA03442 for cvs-all-outgoing; Sat, 21 Mar 1998 10:01:54 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au (spinner.netplex.com.au [202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA03413; Sat, 21 Mar 1998 10:01:20 -0800 (PST) (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.8.8/8.8.8/Spinner) with ESMTP id CAA01534; Sun, 22 Mar 1998 02:01:13 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199803211801.CAA01534@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: Peter Wemm cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: Re: cvs commit: src/usr.sbin/pppd - Imported sources In-reply-to: Your message of "Sat, 21 Mar 1998 07:19:24 PST." <199803211519.HAA10707@freefall.freebsd.org> Date: Sun, 22 Mar 1998 02:01:09 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Peter Wemm wrote: > Log Message: > Import ppp-2.3.3 onto vendor branch. > > C src/usr.sbin/pppd/options.c > C src/usr.sbin/pppd/ipcp.h [..] > C src/usr.sbin/pppd/upap.h > > 29 conflicts created by this import. Argh!! The vendor branch is on 1.1.2 on these files! :-( cvsup is going to hate me for this, but this is going to be undone.... -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 10:02:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA03562 for cvs-all-outgoing; Sat, 21 Mar 1998 10:02:15 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA03556; Sat, 21 Mar 1998 10:02:13 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA04433; Sat, 21 Mar 1998 10:02:00 -0800 (PST) Date: Sat, 21 Mar 1998 10:02:00 -0800 (PST) Message-Id: <199803211802.KAA04433@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pppd - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 10:02:00 PST src/usr.sbin/pppd - Imported sources Update of /home/ncvs/src/usr.sbin/pppd In directory freefall.freebsd.org:/tmp/cvs-serv4174 Log Message: Import pppd from ppp-2.3.3 onto the vendor branch (on 1.1.2 hopefully) Status: Vendor Tag: MACKERRAS Release Tags: ppp_2_3_3 C src/usr.sbin/pppd/options.c U src/usr.sbin/pppd/ipcp.h C src/usr.sbin/pppd/auth.c U src/usr.sbin/pppd/cbcp.c U src/usr.sbin/pppd/cbcp.h U src/usr.sbin/pppd/ccp.c U src/usr.sbin/pppd/ccp.h C src/usr.sbin/pppd/chap.c U src/usr.sbin/pppd/chap.h C src/usr.sbin/pppd/chap_ms.c C src/usr.sbin/pppd/chap_ms.h C src/usr.sbin/pppd/demand.c U src/usr.sbin/pppd/fsm.c U src/usr.sbin/pppd/fsm.h U src/usr.sbin/pppd/ipcp.c U src/usr.sbin/pppd/ipxcp.c U src/usr.sbin/pppd/ipxcp.h C src/usr.sbin/pppd/lcp.c U src/usr.sbin/pppd/lcp.h U src/usr.sbin/pppd/magic.c U src/usr.sbin/pppd/magic.h C src/usr.sbin/pppd/main.c C src/usr.sbin/pppd/patchlevel.h U src/usr.sbin/pppd/pathnames.h U src/usr.sbin/pppd/pppd.8 U src/usr.sbin/pppd/pppd.h C src/usr.sbin/pppd/sys-bsd.c U src/usr.sbin/pppd/upap.c U src/usr.sbin/pppd/upap.h 10 conflicts created by this import. Use the following command to help the merge: cvs checkout -jMACKERRAS:yesterday -jMACKERRAS src/usr.sbin/pppd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 11:20:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA10300 for cvs-all-outgoing; Sat, 21 Mar 1998 11:20:05 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA10279; Sat, 21 Mar 1998 11:20:02 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA04689; Sat, 21 Mar 1998 11:19:45 -0800 (PST) Date: Sat, 21 Mar 1998 11:19:45 -0800 (PST) Message-Id: <199803211919.LAA04689@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/emulators/hfsutils Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/03/21 11:19:45 PST Modified files: emulators/hfsutils Makefile Log: Change MASTER_SITE to new site, i forgot it on last commit. Revision Changes Path 1.9 +2 -2 ports/emulators/hfsutils/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 11:23:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA10923 for cvs-all-outgoing; Sat, 21 Mar 1998 11:23:49 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA10888; Sat, 21 Mar 1998 11:23:43 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA04723; Sat, 21 Mar 1998 11:23:30 -0800 (PST) Date: Sat, 21 Mar 1998 11:23:30 -0800 (PST) Message-Id: <199803211923.LAA04723@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa si.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 11:23:29 PST Modified files: (Branch: RELENG_2_2) sys/i386/isa si.c Log: merge from head: use a static interrupt handler rather than depending on the user specifying it in config.. The pci (and soon eisa) config routines specify it directly and need a prototype. If an isa device is configured, ioconf.h would supply an extra prototype which caused a warning. Revision Changes Path 1.53.2.2 +13 -10 src/sys/i386/isa/si.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 11:26:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA11485 for cvs-all-outgoing; Sat, 21 Mar 1998 11:26:06 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA11467; Sat, 21 Mar 1998 11:26:04 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA04756; Sat, 21 Mar 1998 11:25:50 -0800 (PST) Date: Sat, 21 Mar 1998 11:25:50 -0800 (PST) Message-Id: <199803211925.LAA04756@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/conf LINT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 11:25:50 PST Modified files: (Branch: RELENG_2_2) sys/i386/conf LINT Log: Take out vector siintr from example, it's set internally in all cases now. (this series of si changes OK'ed by jhk) Revision Changes Path 1.286.2.49 +2 -2 src/sys/i386/conf/LINT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 12:03:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA16884 for cvs-all-outgoing; Sat, 21 Mar 1998 12:03:53 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA16868; Sat, 21 Mar 1998 12:03:51 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA04847; Sat, 21 Mar 1998 12:03:38 -0800 (PST) Date: Sat, 21 Mar 1998 12:03:38 -0800 (PST) Message-Id: <199803212003.MAA04847@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/net - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 12:03:38 PST src/sys/net - Imported sources Update of /home/ncvs/src/sys/net In directory freefall.freebsd.org:/tmp/cvs-serv4804 Log Message: Import kernel parts of ppp-2.3.3 onto vendor branch. The main change is that the zlib code has been updated from v0.95 to v1.0.4. Status: Vendor Tag: MACKERRAS Release Tags: ppp_2_3_3 C src/sys/net/zlib.h C src/sys/net/zlib.c U src/sys/net/slcompress.h U src/sys/net/slcompress.c U src/sys/net/ppp_tty.c U src/sys/net/if_pppvar.h U src/sys/net/if_ppp.c U src/sys/net/ppp_comp.h U src/sys/net/ppp_defs.h U src/sys/net/bsd_comp.c U src/sys/net/if_ppp.h C src/sys/net/ppp_deflate.c 3 conflicts created by this import. Use the following command to help the merge: cvs checkout -jMACKERRAS:yesterday -jMACKERRAS src/sys/net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 12:26:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA21995 for cvs-all-outgoing; Sat, 21 Mar 1998 12:26:33 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA21988; Sat, 21 Mar 1998 12:26:30 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA04899; Sat, 21 Mar 1998 12:26:17 -0800 (PST) Date: Sat, 21 Mar 1998 12:26:17 -0800 (PST) Message-Id: <199803212026.MAA04899@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pppstats - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 12:26:16 PST src/usr.sbin/pppstats - Imported sources Update of /home/ncvs/src/usr.sbin/pppstats In directory freefall.freebsd.org:/tmp/cvs-serv4881 Log Message: Import ppp-2.3.3 pppstats onto vendor branch Status: Vendor Tag: MACKERRAS Release Tags: ppp_2_3_3 U src/usr.sbin/pppstats/pppstats.8 C src/usr.sbin/pppstats/pppstats.c U src/usr.sbin/pppstats/Makefile 1 conflicts created by this import. Use the following command to help the merge: cvs checkout -jMACKERRAS:yesterday -jMACKERRAS src/usr.sbin/pppstats To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 12:28:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA22613 for cvs-all-outgoing; Sat, 21 Mar 1998 12:28:38 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA22597; Sat, 21 Mar 1998 12:28:36 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA04924; Sat, 21 Mar 1998 12:28:23 -0800 (PST) Date: Sat, 21 Mar 1998 12:28:23 -0800 (PST) Message-Id: <199803212028.MAA04924@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/chat - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 12:28:22 PST src/usr.bin/chat - Imported sources Update of /home/ncvs/src/usr.bin/chat In directory freefall.freebsd.org:/tmp/cvs-serv4903 Log Message: Import ppp-2.3.3 chat onto vendor branch Status: Vendor Tag: MACKERRAS Release Tags: ppp_2_3_3 C src/usr.bin/chat/chat.c C src/usr.bin/chat/chat.8 U src/usr.bin/chat/Makefile 2 conflicts created by this import. Use the following command to help the merge: cvs checkout -jMACKERRAS:yesterday -jMACKERRAS src/usr.bin/chat To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 12:47:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA26731 for cvs-all-outgoing; Sat, 21 Mar 1998 12:47:22 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA26725; Sat, 21 Mar 1998 12:47:19 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA05004; Sat, 21 Mar 1998 12:47:06 -0800 (PST) Date: Sat, 21 Mar 1998 12:47:06 -0800 (PST) Message-Id: <199803212047.MAA05004@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/chat chat.8 chat.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 12:47:05 PST Modified files: usr.bin/chat chat.8 chat.c Log: merge ppp-2.3.3 changes onto mainline Revision Changes Path 1.10 +34 -8 src/usr.bin/chat/chat.8 1.11 +699 -719 src/usr.bin/chat/chat.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 12:48:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA26894 for cvs-all-outgoing; Sat, 21 Mar 1998 12:48:09 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA26887; Sat, 21 Mar 1998 12:48:08 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA05035; Sat, 21 Mar 1998 12:47:55 -0800 (PST) Date: Sat, 21 Mar 1998 12:47:55 -0800 (PST) Message-Id: <199803212047.MAA05035@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pppstats pppstats.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 12:47:54 PST Modified files: usr.sbin/pppstats pppstats.c Log: merge ppp-2.3.3 changes onto mainline Revision Changes Path 1.12 +1 -5 src/usr.sbin/pppstats/pppstats.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 12:50:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA27290 for cvs-all-outgoing; Sat, 21 Mar 1998 12:50:49 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA27285; Sat, 21 Mar 1998 12:50:47 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA05069; Sat, 21 Mar 1998 12:50:33 -0800 (PST) Date: Sat, 21 Mar 1998 12:50:33 -0800 (PST) Message-Id: <199803212050.MAA05069@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pppd RELNOTES Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 12:50:33 PST Modified files: usr.sbin/pppd RELNOTES Log: Update from ppp-2.3.3 Revision Changes Path 1.5 +36 -6 src/usr.sbin/pppd/RELNOTES To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 12:56:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA28013 for cvs-all-outgoing; Sat, 21 Mar 1998 12:56:32 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA28007; Sat, 21 Mar 1998 12:56:31 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA05114; Sat, 21 Mar 1998 12:56:17 -0800 (PST) Date: Sat, 21 Mar 1998 12:56:17 -0800 (PST) Message-Id: <199803212056.MAA05114@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/net ppp_deflate.c zlib.c zlib.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 12:56:17 PST Modified files: sys/net ppp_deflate.c zlib.c zlib.h Log: Update kernel parts of ppp to ppp-2.3.3. Not much has changed except that the deflate components use zlib 1.0.4 instead of zlib 0.95. Revision Changes Path 1.7 +4 -7 src/sys/net/ppp_deflate.c 1.6 +1460 -720 src/sys/net/zlib.c 1.4 +498 -128 src/sys/net/zlib.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 13:20:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA04478 for cvs-all-outgoing; Sat, 21 Mar 1998 13:20:57 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA04473; Sat, 21 Mar 1998 13:20:55 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA05190; Sat, 21 Mar 1998 13:20:42 -0800 (PST) Date: Sat, 21 Mar 1998 13:20:42 -0800 (PST) Message-Id: <199803212120.NAA05190@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall disks.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/21 13:20:42 PST Modified files: (Branch: RELENG_2_2) release/sysinstall disks.c Log: Add additional check for don't-spam-the-MBR-in-dedicated-disk case. Submitted by: eivind Revision Changes Path 1.70.2.26 +13 -2 src/release/sysinstall/disks.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 13:58:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA09009 for cvs-all-outgoing; Sat, 21 Mar 1998 13:58:21 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA09004; Sat, 21 Mar 1998 13:58:20 -0800 (PST) (envelope-from eivind@FreeBSD.org) From: Eivind Eklund Received: (from eivind@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA05298; Sat, 21 Mar 1998 13:58:02 -0800 (PST) Date: Sat, 21 Mar 1998 13:58:02 -0800 (PST) Message-Id: <199803212158.NAA05298@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/FAQ preface.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk eivind 1998/03/21 13:58:02 PST Modified files: FAQ preface.sgml Log: Mention questions@freebsd.org the same place as doc@freebsd.org is mentioned. This should hopefully limit the flood of questions sent to doc@freebsd.org. Revision Changes Path 1.3 +6 -1 doc/FAQ/preface.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 14:03:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA10154 for cvs-all-outgoing; Sat, 21 Mar 1998 14:03:27 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA10149; Sat, 21 Mar 1998 14:03:24 -0800 (PST) (envelope-from eivind@FreeBSD.org) From: Eivind Eklund Received: (from eivind@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA05338; Sat, 21 Mar 1998 14:03:10 -0800 (PST) Date: Sat, 21 Mar 1998 14:03:10 -0800 (PST) Message-Id: <199803212203.OAA05338@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/FAQ hardware.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk eivind 1998/03/21 14:03:09 PST Modified files: FAQ hardware.sgml Log: Typo police. PR: 6088 Revision Changes Path 1.4 +2 -2 doc/FAQ/hardware.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 14:57:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA16023 for cvs-all-outgoing; Sat, 21 Mar 1998 14:57:08 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from awfulhak.org ([195.166.133.91]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA15703; Sat, 21 Mar 1998 14:53:48 -0800 (PST) (envelope-from brian@Awfulhak.org) Received: from gate.lan.awfulhak.org (localhost [127.0.0.1]) by awfulhak.org (8.8.7/8.8.7) with ESMTP id RAA24180; Sat, 21 Mar 1998 17:17:40 GMT (envelope-from brian@gate.lan.awfulhak.org) Message-Id: <199803211717.RAA24180@awfulhak.org> X-Mailer: exmh version 2.0.1 12/23/97 To: Andreas Klemm cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/news/knews Makefile ports/news/knews/scripts pre-configure In-reply-to: Your message of "Sat, 21 Mar 1998 05:35:08 PST." <199803211335.FAA07467@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 21 Mar 1998 17:17:39 +0000 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > andreas 1998/03/21 05:35:08 PST > > Modified files: > news/knews Makefile > news/knews/scripts pre-configure > Log: > remove BROKENNESS > forgot to add patch-ac ^^^^^^^^^^^^^^^^^^^^^^ So it seems :-) > tested packaging > Reviewed by: as requested by Satoshi > > Revision Changes Path > 1.12 +1 -3 ports/news/knews/Makefile > 1.4 +1 -1 ports/news/knews/scripts/pre-configure -- Brian , , Don't _EVER_ lose your sense of humour.... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 14:59:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA16296 for cvs-all-outgoing; Sat, 21 Mar 1998 14:59:03 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA16290; Sat, 21 Mar 1998 14:59:01 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA05522; Sat, 21 Mar 1998 14:58:47 -0800 (PST) Date: Sat, 21 Mar 1998 14:58:47 -0800 (PST) Message-Id: <199803212258.OAA05522@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp modem.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/03/21 14:58:47 PST Modified files: (Branch: MP) usr.sbin/ppp modem.c Log: Call modem_Hangup() from modem_Close() if it hasn't already been called. Revision Changes Path 1.77.2.41 +4 -1 src/usr.sbin/ppp/modem.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 16:03:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA25795 for cvs-all-outgoing; Sat, 21 Mar 1998 16:03:34 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA25789; Sat, 21 Mar 1998 16:03:32 -0800 (PST) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA05675; Sat, 21 Mar 1998 16:03:18 -0800 (PST) Date: Sat, 21 Mar 1998 16:03:18 -0800 (PST) Message-Id: <199803220003.QAA05675@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data search-mid.sgml Makefile search.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/03/21 16:03:17 PST Modified files: data Makefile search.sgml Added files: data search-mid.sgml Log: FreeBSD Message-ID Search. Revision Changes Path 1.24 +2 -2 www/data/Makefile 1.27 +3 -3 www/data/search.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 16:07:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA26151 for cvs-all-outgoing; Sat, 21 Mar 1998 16:07:54 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA26145; Sat, 21 Mar 1998 16:07:53 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA05721; Sat, 21 Mar 1998 16:07:38 -0800 (PST) Date: Sat, 21 Mar 1998 16:07:38 -0800 (PST) Message-Id: <199803220007.QAA05721@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/graphics/gimp-devel Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/21 16:07:38 PST Modified files: graphics/gimp-devel Makefile Log: Thanks to Eivind, we now have the distfiles. Revision Changes Path 1.23 +1 -3 ports/graphics/gimp-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 Mar 21 16:08:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA26303 for cvs-all-outgoing; Sat, 21 Mar 1998 16:08:12 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA26295; Sat, 21 Mar 1998 16:08:09 -0800 (PST) (envelope-from eivind@FreeBSD.org) From: Eivind Eklund Received: (from eivind@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA05749; Sat, 21 Mar 1998 16:07:55 -0800 (PST) Date: Sat, 21 Mar 1998 16:07:55 -0800 (PST) Message-Id: <199803220007.QAA05749@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/xscavenger/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk eivind 1998/03/21 16:07:54 PST Modified files: games/xscavenger/pkg DESCR Log: Fix typo. OK'ed by: asami Revision Changes Path 1.3 +1 -1 ports/games/xscavenger/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 16:18:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA27970 for cvs-all-outgoing; Sat, 21 Mar 1998 16:18:06 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA27950; Sat, 21 Mar 1998 16:18:01 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA05818; Sat, 21 Mar 1998 16:17:39 -0800 (PST) Date: Sat, 21 Mar 1998 16:17:39 -0800 (PST) Message-Id: <199803220017.QAA05818@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/gtk/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/03/21 16:17:39 PST Modified files: x11/gtk/pkg PLIST Log: Add back @unexec/@exec ldconfig pair and remove *.so files from the PLIST. These files are generated by ldconfig and should not be packaged. Also remove some @dirrm's no longer required after Erich's last fix. And while I'm here resort. OK'd by: Satoshi Asami Revision Changes Path 1.14 +31 -34 ports/x11/gtk/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 16:43:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA01274 for cvs-all-outgoing; Sat, 21 Mar 1998 16:43:24 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA01268; Sat, 21 Mar 1998 16:43:22 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA05889; Sat, 21 Mar 1998 16:43:08 -0800 (PST) Date: Sat, 21 Mar 1998 16:43:08 -0800 (PST) Message-Id: <199803220043.QAA05889@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pppctl pppctl.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/03/21 16:43:07 PST Modified files: usr.sbin/pppctl pppctl.c Log: Quiet -Wall in gcc-2.8.1 Obtained from: OpenBSD Revision Changes Path 1.16 +3 -2 src/usr.sbin/pppctl/pppctl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 16:51:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA01959 for cvs-all-outgoing; Sat, 21 Mar 1998 16:51:17 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA01939; Sat, 21 Mar 1998 16:51:10 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from baloon.mimi.com (sjx-ca126-11.ix.netcom.com [207.92.177.203]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id QAA04193; Sat, 21 Mar 1998 16:51:09 -0800 (PST) Received: (from asami@localhost) by baloon.mimi.com (8.8.8/8.8.8) id QAA08277; Sat, 21 Mar 1998 16:51:04 -0800 (PST) (envelope-from asami) Date: Sat, 21 Mar 1998 16:51:04 -0800 (PST) Message-Id: <199803220051.QAA08277@baloon.mimi.com> To: eivind@yes.no CC: erich@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <19980321160749.23483@follo.net> (message from Eivind Eklund on Sat, 21 Mar 1998 16:07:49 +0100) Subject: Re: cvs commit: ports/graphics/gimp-devel Makefile ports/graphics/gimp-devel/files md5 ports/graphics/gimp-devel/patches patch-ai patch-ah ports/graphics/gimp-devel/pkg PLIST From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * I've found them and I'm presently copying them to freefall. Mucho gracias! Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 17:04:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA04825 for cvs-all-outgoing; Sat, 21 Mar 1998 17:04:36 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from awfulhak.org ([195.166.142.168]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA04584; Sat, 21 Mar 1998 17:03:53 -0800 (PST) (envelope-from brian@Awfulhak.org) Received: from gate.lan.awfulhak.org (localhost [127.0.0.1]) by awfulhak.org (8.8.7/8.8.7) with ESMTP id AAA28404; Sun, 22 Mar 1998 00:46:05 GMT (envelope-from brian@gate.lan.awfulhak.org) Message-Id: <199803220046.AAA28404@awfulhak.org> X-Mailer: exmh version 2.0.1 12/23/97 To: Peter Wemm cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: Re: cvs commit: src/sys/net ppp_deflate.c zlib.c zlib.h In-reply-to: Your message of "Sat, 21 Mar 1998 12:56:17 PST." <199803212056.MAA05114@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 22 Mar 1998 00:46:05 +0000 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > peter 1998/03/21 12:56:17 PST > > Modified files: > sys/net ppp_deflate.c zlib.c zlib.h > Log: > Update kernel parts of ppp to ppp-2.3.3. Not much has changed except > that the deflate components use zlib 1.0.4 instead of zlib 0.95. > > Revision Changes Path > 1.7 +4 -7 src/sys/net/ppp_deflate.c > 1.6 +1460 -720 src/sys/net/zlib.c > 1.4 +498 -128 src/sys/net/zlib.h Has it been fixed to use CCP code 26, and not code 24 (which should be Magnalink) ? This is what I call a *real* violation of the rfc :-I -- Brian , , Don't _EVER_ lose your sense of humour.... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 17:12:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA07378 for cvs-all-outgoing; Sat, 21 Mar 1998 17:12:30 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA07371; Sat, 21 Mar 1998 17:12:24 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA06005; Sat, 21 Mar 1998 17:12:09 -0800 (PST) Date: Sat, 21 Mar 1998 17:12:09 -0800 (PST) Message-Id: <199803220112.RAA06005@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/xscavenger Makefile ports/games/xscavenger/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/21 17:12:09 PST Modified files: games/xscavenger Makefile Log: Portlint (move PKGNAME after DISTNAME). Revision Changes Path 1.5 +2 -2 ports/games/xscavenger/Makefile Modified files: games/xscavenger/pkg PLIST Log: Remove spurious @mode line. Revision Changes Path 1.3 +0 -1 ports/games/xscavenger/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 Mar 21 17:18:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA08257 for cvs-all-outgoing; Sat, 21 Mar 1998 17:18:43 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA08250; Sat, 21 Mar 1998 17:18:41 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA06057; Sat, 21 Mar 1998 17:18:26 -0800 (PST) Date: Sat, 21 Mar 1998 17:18:26 -0800 (PST) Message-Id: <199803220118.RAA06057@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/lang/gnat/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/21 17:18:25 PST Modified files: lang/gnat/pkg PLIST Log: Typo ("sed -nw" -> "sed -ne"). Revision Changes Path 1.8 +1 -1 ports/lang/gnat/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 Mar 21 19:35:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA26433 for cvs-all-outgoing; Sat, 21 Mar 1998 19:35:08 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA26421; Sat, 21 Mar 1998 19:35:03 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA06270; Sat, 21 Mar 1998 19:34:47 -0800 (PST) Date: Sat, 21 Mar 1998 19:34:47 -0800 (PST) Message-Id: <199803220334.TAA06270@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/squid12/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 19:34:46 PST Modified files: www/squid12/pkg PLIST Log: Add missing files to PLIST Approved by: asame Revision Changes Path 1.10 +5 -0 ports/www/squid12/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 Mar 21 20:13:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA00562 for cvs-all-outgoing; Sat, 21 Mar 1998 20:13:42 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA00556; Sat, 21 Mar 1998 20:13:41 -0800 (PST) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA06357; Sat, 21 Mar 1998 20:13:25 -0800 (PST) Date: Sat, 21 Mar 1998 20:13:25 -0800 (PST) Message-Id: <199803220413.UAA06357@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc_r/uthread uthread_fork.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/03/21 20:13:25 PST Modified files: lib/libc_r/uthread uthread_fork.c Log: Fix a problem of indirection unblocking signals that would have caused signals to be unblocked even if they were already blocked when entering the function. Pointed out by: bde Revision Changes Path 1.4 +1 -1 src/lib/libc_r/uthread/uthread_fork.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 21:10:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA06800 for cvs-all-outgoing; Sat, 21 Mar 1998 21:10:31 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA06794; Sat, 21 Mar 1998 21:10:28 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA06496; Sat, 21 Mar 1998 21:10:12 -0800 (PST) Date: Sat, 21 Mar 1998 21:10:12 -0800 (PST) Message-Id: <199803220510.VAA06496@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/03/21 21:10:11 PST Modified files: . modules Log: Nuke ports/misc/ecc Revision Changes Path 1.1885 +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 Sat Mar 21 21:11:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA06976 for cvs-all-outgoing; Sat, 21 Mar 1998 21:11:20 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA06968; Sat, 21 Mar 1998 21:11:18 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA06586; Sat, 21 Mar 1998 21:11:02 -0800 (PST) Date: Sat, 21 Mar 1998 21:11:02 -0800 (PST) Message-Id: <199803220511.VAA06586@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/misc Makefile ports/misc/ecc Makefile ports/misc/ecc/files md5 ports/misc/ecc/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/03/21 21:11:02 PST Modified files: misc Makefile Removed files: misc/ecc Makefile misc/ecc/files md5 misc/ecc/pkg COMMENT DESCR PLIST Log: Nuke ecc. It's been broken for over 1 year and hasn't been distributed by GNU for over 2. Approved by: asami Revision Changes Path 1.136 +1 -2 ports/misc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 21:13:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA07221 for cvs-all-outgoing; Sat, 21 Mar 1998 21:13:42 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA07214; Sat, 21 Mar 1998 21:13:40 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA06726; Sat, 21 Mar 1998 21:13:24 -0800 (PST) Date: Sat, 21 Mar 1998 21:13:24 -0800 (PST) Message-Id: <199803220513.VAA06726@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11 Makefile ports/x11/fvwm2-english Makefile ports/x11/fvwm2-english/files md5 ports/x11/fvwm2-english/patches patch-aa patch-ab patch-ac patch-ad ports/x11/fvwm2-english/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/03/21 21:13:23 PST Modified files: x11 Makefile Removed files: x11/fvwm2-english Makefile x11/fvwm2-english/files md5 x11/fvwm2-english/patches patch-aa patch-ab patch-ac patch-ad x11/fvwm2-english/pkg COMMENT DESCR PLIST Log: Nuke fvwm2-english. It has been kept around only for reference, and if anyone still needs it, they can always retrive it from the Attic. Approved by: asami Revision Changes Path 1.189 +1 -2 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 Sat Mar 21 21:14:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA07415 for cvs-all-outgoing; Sat, 21 Mar 1998 21:14:52 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA07409; Sat, 21 Mar 1998 21:14:51 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA06759; Sat, 21 Mar 1998 21:14:35 -0800 (PST) Date: Sat, 21 Mar 1998 21:14:35 -0800 (PST) Message-Id: <199803220514.VAA06759@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/03/21 21:14:32 PST Modified files: . modules Log: Nuke fvwm2-english. Revision Changes Path 1.1886 +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 Sat Mar 21 21:33:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA08796 for cvs-all-outgoing; Sat, 21 Mar 1998 21:33:30 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA08791; Sat, 21 Mar 1998 21:33:28 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA06864; Sat, 21 Mar 1998 21:33:11 -0800 (PST) Date: Sat, 21 Mar 1998 21:33:11 -0800 (PST) Message-Id: <199803220533.VAA06864@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pppd auth.c chap.c chap_ms.c chap_ms.h demand.c lcp.c main.c options.c patchlevel.h sys-bsd.c args.h callout.h lock.c ppp.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 21:33:11 PST Modified files: usr.sbin/pppd auth.c chap.c chap_ms.c chap_ms.h demand.c lcp.c main.c options.c patchlevel.h sys-bsd.c Removed files: usr.sbin/pppd args.h callout.h lock.c ppp.h Log: Merge ppp-2.3.3 changes onto mainline Revision Changes Path 1.22 +30 -13 src/usr.sbin/pppd/auth.c 1.9 +5 -2 src/usr.sbin/pppd/chap.c 1.4 +20 -14 src/usr.sbin/pppd/chap_ms.c 1.4 +2 -1 src/usr.sbin/pppd/chap_ms.h 1.4 +2 -2 src/usr.sbin/pppd/demand.c 1.8 +7 -11 src/usr.sbin/pppd/lcp.c 1.16 +14 -7 src/usr.sbin/pppd/main.c 1.17 +4 -3 src/usr.sbin/pppd/options.c 1.8 +3 -3 src/usr.sbin/pppd/patchlevel.h 1.13 +18 -1 src/usr.sbin/pppd/sys-bsd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 22:52:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA16912 for cvs-all-outgoing; Sat, 21 Mar 1998 22:52:23 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA16907; Sat, 21 Mar 1998 22:52:21 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA06989; Sat, 21 Mar 1998 22:52:01 -0800 (PST) Date: Sat, 21 Mar 1998 22:52:01 -0800 (PST) Message-Id: <199803220652.WAA06989@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/net if_ppp.c ppp_comp.h ppp_deflate.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 22:52:00 PST Modified files: sys/net if_ppp.c ppp_comp.h ppp_deflate.c Log: ppp-2.3.x ships with a bad compression number for deflate. It uses number 24 (which is magnalink!) rather than the correct 26. Initial attempt at a compatability kludge that will negotiate for either but will prefer to use the correct deflate compression type. Revision Changes Path 1.54 +7 -1 src/sys/net/if_ppp.c 1.6 +4 -2 src/sys/net/ppp_comp.h 1.8 +29 -5 src/sys/net/ppp_deflate.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 22:57:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA17449 for cvs-all-outgoing; Sat, 21 Mar 1998 22:57:47 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA17443; Sat, 21 Mar 1998 22:57:46 -0800 (PST) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA07033; Sat, 21 Mar 1998 22:57:23 -0800 (PST) Date: Sat, 21 Mar 1998 22:57:23 -0800 (PST) Message-Id: <199803220657.WAA07033@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pppd ccp.c ccp.h options.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/03/21 22:57:23 PST Modified files: usr.sbin/pppd ccp.c ccp.h options.c Log: ppp-2.3.x ships with a bad compression number for deflate. It uses number 24 (which is magnalink!) rather than the correct (according to the rfc) 26. Initial attempt at a compatability kludge that will negotiate for either but will prefer to use the correct deflate compression type. Revision Changes Path 1.8 +162 -1 src/usr.sbin/pppd/ccp.c 1.6 +4 -2 src/usr.sbin/pppd/ccp.h 1.18 +20 -1 src/usr.sbin/pppd/options.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 23:41:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA20727 for cvs-all-outgoing; Sat, 21 Mar 1998 23:41:45 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA20721; Sat, 21 Mar 1998 23:41:41 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA07114; Sat, 21 Mar 1998 23:41:24 -0800 (PST) Date: Sat, 21 Mar 1998 23:41:24 -0800 (PST) Message-Id: <199803220741.XAA07114@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libdisk disk.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/21 23:41:24 PST Modified files: lib/libdisk disk.c Log: Add Compaq & SCO partition types. PR: 6092 Submitted by: Drew Derbyshire Revision Changes Path 1.33 +3 -1 src/lib/libdisk/disk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 23:42:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA20846 for cvs-all-outgoing; Sat, 21 Mar 1998 23:42:10 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA20841; Sat, 21 Mar 1998 23:42:06 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA07150; Sat, 21 Mar 1998 23:41:49 -0800 (PST) Date: Sat, 21 Mar 1998 23:41:49 -0800 (PST) Message-Id: <199803220741.XAA07150@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libdisk disk.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/03/21 23:41:49 PST Modified files: (Branch: RELENG_2_2) lib/libdisk disk.c Log: MFC: PR#6092 Revision Changes Path 1.22.2.8 +3 -1 src/lib/libdisk/disk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 21 23:59:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA22591 for cvs-all-outgoing; Sat, 21 Mar 1998 23:59:06 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA22585; Sat, 21 Mar 1998 23:59:04 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA07273; Sat, 21 Mar 1998 23:58:46 -0800 (PST) Date: Sat, 21 Mar 1998 23:58:46 -0800 (PST) Message-Id: <199803220758.XAA07273@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/japanese/vftool Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/03/21 23:58:46 PST Modified files: japanese/vftool Makefile Log: Mark this port broken: ===> Building for ja-vftool-1.2 cc -O2 -pipe -c mkn2avf.c cc -O2 -pipe -c jfm.c cc -O2 -pipe -c scale.c cc -O2 -pipe -c io.c cc -O2 -pipe -c kanji.c cc -O2 -pipe -c util.c cc -o mkn2avf mkn2avf.o jfm.o scale.o io.o kanji.o util.o mkdir vf-n2a ./MKNTT2ASC dm min /usr/local/share/texmf/fonts/tfm/ptex vf-n2a cannot read /usr/local/share/texmf/fonts/tfm/ptex/min5.tfm cannot read /usr/local/share/texmf/fonts/tfm/ptex/min6.tfm cannot read /usr/local/share/texmf/fonts/tfm/ptex/min7.tfm cannot read /usr/local/share/texmf/fonts/tfm/ptex/min8.tfm cannot read /usr/local/share/texmf/fonts/tfm/ptex/min9.tfm cannot read /usr/local/share/texmf/fonts/tfm/ptex/min10.tfm cannot read /usr/local/share/texmf/fonts/tfm/ptex/min10.tfm cannot read /usr/local/share/texmf/fonts/tfm/ptex/min10.tfm cannot read /usr/local/share/texmf/fonts/tfm/ptex/min10.tfm *** Error code 1 Revision Changes Path 1.3 +3 -1 ports/japanese/vftool/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message