From owner-cvs-all Sun Nov 22 00:14:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA15194 for cvs-all-outgoing; Sun, 22 Nov 1998 00:14: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 AAA15189; Sun, 22 Nov 1998 00:14:31 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA07686; Sun, 22 Nov 1998 00:14:37 -0800 (PST) Date: Sun, 22 Nov 1998 00:14:37 -0800 (PST) Message-Id: <199811220814.AAA07686@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/11/22 00:14:36 PST Modified files: japanese Makefile Log: Activate jhd. Revision Changes Path 1.166 +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 Sun Nov 22 00:59:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA18077 for cvs-all-outgoing; Sun, 22 Nov 1998 00:59:33 -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 AAA18071; Sun, 22 Nov 1998 00:59:31 -0800 (PST) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sjx-ca115-47.ix.netcom.com [207.223.162.111]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id AAA15875; Sun, 22 Nov 1998 00:58:54 -0800 (PST) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id AAA04964; Sun, 22 Nov 1998 00:58:50 -0800 (PST) (envelope-from asami) Date: Sun, 22 Nov 1998 00:58:50 -0800 (PST) Message-Id: <199811220858.AAA04964@bubble.didi.com> To: billf@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199811202324.PAA10389@freefall.freebsd.org> (message from Bill Fumerola on Fri, 20 Nov 1998 15:24:33 -0800 (PST)) Subject: Re: cvs commit: ports/converters/man2html - Imported sources From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * ports/converters/man2html - Imported sources ^^^^^^^^^^ * Update of /home/ncvs/ports/converters/man2html * In directory freefall.freebsd.org:/x/tmp/cvs-serv10370 * * Log Message: * Reimport man2html into ports/textproc. * C ports/converters/man2html/Makefile ^^^^^^^^^^ I don't think that's what happened. ;) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 01:04:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA18253 for cvs-all-outgoing; Sun, 22 Nov 1998 01:04: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 BAA18243; Sun, 22 Nov 1998 01:04:04 -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 BAA09229; Sun, 22 Nov 1998 01:04:10 -0800 (PST) Date: Sun, 22 Nov 1998 01:04:10 -0800 (PST) Message-Id: <199811220904.BAA09229@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern tty.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/11/22 01:04:10 PST Modified files: sys/kern tty.c Log: Fixed some missing cases in the check for ioctls that involve modification. Many (mostly machine-dependent ones) are still missing. NIST-PCTS found this bug for all the ioctls used to implement the POSIX tc* functions (TIOCCBRK, TIOCDRAIN, TIOCSPGRP, TIOCSBRK, TIOCSTART and TIOCSTOP), and I found FIOASYNC, TIOCCONS, TIOCEXCL, TIOCHPCL, TIOCNXCL, TIOCSCTTY and TIOCSDRAINWAIT by inspection. TIOCSPGRP was ifdefed out for some reason. Handle tcsetattr()'s historical speed conversions correctly and more centrally: - don't store speeds of 0 in the final termios struct. Drivers can now depend on tp->t_ispeed and tp->t_ospeed giving the actual speed. Applications can now depend on tcgetattr() being POSIX.1 conformant. - convert from a proposed input speed of 0 to the proposed output speed (except if that is 0, convert to the current output speed). Drivers can now depend on the proposed input speed being nonzero. - don't reject negative speeds. Negative speeds can't happen now that speed_t is unsigned, and rejecting invalid speeds is a bug - tcsetattr() is supposed to succeed if it can "perform any of the requested actions", so it shouldn't fail in practice. Revision Changes Path 1.108 +25 -8 src/sys/kern/tty.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 01:19:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA19419 for cvs-all-outgoing; Sun, 22 Nov 1998 01:19: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 BAA19414; Sun, 22 Nov 1998 01:19:03 -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 BAA09818; Sun, 22 Nov 1998 01:19:08 -0800 (PST) Date: Sun, 22 Nov 1998 01:19:08 -0800 (PST) Message-Id: <199811220919.BAA09818@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/miscfs/deadfs dead_vnops.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/11/22 01:19:07 PST Modified files: sys/miscfs/deadfs dead_vnops.c Log: Return ENOTTY instead of EBADF for ioctls on dead vnodes. This fixes tcsetpgrp() on controlling terminals that are no longer associated with the session of the calling process, not to mention ioctl.2. Revision Changes Path 1.25 +2 -2 src/sys/miscfs/deadfs/dead_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 01:38:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA20859 for cvs-all-outgoing; Sun, 22 Nov 1998 01:38: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 BAA20854; Sun, 22 Nov 1998 01:38: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 BAA10348; Sun, 22 Nov 1998 01:38:11 -0800 (PST) Date: Sun, 22 Nov 1998 01:38:11 -0800 (PST) Message-Id: <199811220938.BAA10348@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-fm/q3dmenu Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/22 01:38:10 PST Modified files: x11-fm/q3dmenu Makefile Log: qgl port is no more, but this one still tries to link to -lqgl. Revision Changes Path 1.9 +2 -2 ports/x11-fm/q3dmenu/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 01:41:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA21179 for cvs-all-outgoing; Sun, 22 Nov 1998 01: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 BAA21173; Sun, 22 Nov 1998 01:41: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 BAA10420; Sun, 22 Nov 1998 01:41:13 -0800 (PST) Date: Sun, 22 Nov 1998 01:41:13 -0800 (PST) Message-Id: <199811220941.BAA10420@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa sio.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/11/22 01:41:13 PST Modified files: sys/i386/isa sio.c Log: Fixed a comment in code that will soon go away. Revision Changes Path 1.217 +3 -3 src/sys/i386/isa/sio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 01:42:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA21466 for cvs-all-outgoing; Sun, 22 Nov 1998 01:42: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 BAA21460; Sun, 22 Nov 1998 01:42:44 -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 BAA10498; Sun, 22 Nov 1998 01:42:49 -0800 (PST) Date: Sun, 22 Nov 1998 01:42:49 -0800 (PST) Message-Id: <199811220942.BAA10498@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/deskutils/xpostit Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk joerg 1998/11/22 01:42:49 PST Modified files: deskutils/xpostit Makefile Log: th.darmstadt.de changed to tu-darmstadt.de Submitted by: Bill Fenner's port survey Revision Changes Path 1.7 +2 -2 ports/deskutils/xpostit/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 01:58:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA22229 for cvs-all-outgoing; Sun, 22 Nov 1998 01:58:27 -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 BAA22223; Sun, 22 Nov 1998 01:58:24 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sjx-ca115-47.ix.netcom.com [207.223.162.111]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id BAA15961; Sun, 22 Nov 1998 01:57:52 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id BAA16844; Sun, 22 Nov 1998 01:57:49 -0800 (PST) Date: Sun, 22 Nov 1998 01:57:49 -0800 (PST) Message-Id: <199811220957.BAA16844@silvia.hip.berkeley.edu> To: steve@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199811220938.BAA10348@freefall.freebsd.org> (message from Satoshi Asami on Sun, 22 Nov 1998 01:38:11 -0800 (PST)) Subject: Re: cvs commit: ports/x11-fm/q3dmenu Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * qgl port is no more, but this one still tries to link to -lqgl. Steve, can you look into this? (Or pass it onto the maintainer....) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 02:05:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA22518 for cvs-all-outgoing; Sun, 22 Nov 1998 02:05: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 CAA22513; Sun, 22 Nov 1998 02:05:10 -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 CAA11163; Sun, 22 Nov 1998 02:05:15 -0800 (PST) Date: Sun, 22 Nov 1998 02:05:15 -0800 (PST) Message-Id: <199811221005.CAA11163@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-toolkits/qt141 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/22 02:05:14 PST Modified files: x11-toolkits/qt141 Makefile Log: Mark it broken, Andreas doesn't seem to have the time to get to it after the repository copy. Revision Changes Path 1.28 +3 -1 ports/x11-toolkits/qt141/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 02:47:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA24545 for cvs-all-outgoing; Sun, 22 Nov 1998 02:47: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 CAA24538; Sun, 22 Nov 1998 02:47:39 -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 CAA12089; Sun, 22 Nov 1998 02:47:44 -0800 (PST) Date: Sun, 22 Nov 1998 02:47:44 -0800 (PST) Message-Id: <199811221047.CAA12089@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa sio.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/11/22 02:47:44 PST Modified files: sys/i386/isa sio.c Log: Deleted the workaround for lockup of certain (hopefully no longer used) UARTs when their divisor latch registers are selected while they are doing output. Waiting for (some) output to drain is not permitted for the TCSANOW case of tcsetattr(). NIST-PCTS easily detects bugs like this by testing at at speeds that no one would want to use (50 bps). Deleted stale comments related to flushing i/o. Flushing works properly for 16550s according to NIST-PCTS (it can't work properly for 16450s). This finishes fixing all sio(16550)-related bugs found by NIST-PCTS. Revision Changes Path 1.218 +1 -51 src/sys/i386/isa/sio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 03:57:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA02519 for cvs-all-outgoing; Sun, 22 Nov 1998 03:57: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 DAA02514; Sun, 22 Nov 1998 03:57:55 -0800 (PST) (envelope-from yokota@FreeBSD.org) From: Kazutaka YOKOTA Received: (from yokota@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA13653; Sun, 22 Nov 1998 03:58:00 -0800 (PST) Date: Sun, 22 Nov 1998 03:58:00 -0800 (PST) Message-Id: <199811221158.DAA13653@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/alpha/include mouse.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk yokota 1998/11/22 03:58:00 PST Modified files: sys/alpha/include mouse.h Log: Oops, I forgot to update this file when I changed moused recently. Revision Changes Path 1.12 +3 -1 src/sys/alpha/include/mouse.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 05:20:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA08055 for cvs-all-outgoing; Sun, 22 Nov 1998 05:20: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 FAA08050; Sun, 22 Nov 1998 05:20:05 -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 FAA16637; Sun, 22 Nov 1998 05:20:10 -0800 (PST) Date: Sun, 22 Nov 1998 05:20:10 -0800 (PST) Message-Id: <199811221320.FAA16637@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libutil property.3 property.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/22 05:20:10 PST Modified files: lib/libutil property.3 property.c Log: Better document the file format, add in support for nested {}'s in multi-line property values. Revision Changes Path 1.4 +17 -4 src/lib/libutil/property.3 1.5 +11 -4 src/lib/libutil/property.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 05:38:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA08954 for cvs-all-outgoing; Sun, 22 Nov 1998 05:38: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 FAA08949; Sun, 22 Nov 1998 05:38:51 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA17111; Sun, 22 Nov 1998 05:38:56 -0800 (PST) Date: Sun, 22 Nov 1998 05:38:56 -0800 (PST) Message-Id: <199811221338.FAA17111@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/22 05:38:56 PST Modified files: . modules Log: astime --> ports/x11-clocks/astime Revision Changes Path 1.2509 +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 Nov 22 05:40:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA09021 for cvs-all-outgoing; Sun, 22 Nov 1998 05:40: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 FAA09016; Sun, 22 Nov 1998 05:40:11 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA17145; Sun, 22 Nov 1998 05:40:16 -0800 (PST) Date: Sun, 22 Nov 1998 05:40:16 -0800 (PST) Message-Id: <199811221340.FAA17145@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-clocks/astime - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/22 05:40:16 PST ports/x11-clocks/astime - Imported sources Update of /home/ncvs/ports/x11-clocks/astime In directory freefall.freebsd.org:/c/users/flathill/astime Log Message: PR: ports/8786 Submitted by: handy@physics.montana.edu Initial Import astime. Time/Date applet. Status: Vendor Tag: ASTIME Release Tags: astime_1_0 N ports/x11-clocks/astime/Makefile I ports/x11-clocks/astime/CVS N ports/x11-clocks/astime/files/md5 N ports/x11-clocks/astime/pkg/COMMENT N ports/x11-clocks/astime/pkg/DESCR N ports/x11-clocks/astime/pkg/PLIST N ports/x11-clocks/astime/patches/patch-aa No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 05:42:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA09078 for cvs-all-outgoing; Sun, 22 Nov 1998 05:42: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 FAA09073; Sun, 22 Nov 1998 05:42:18 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA17216; Sun, 22 Nov 1998 05:42:23 -0800 (PST) Date: Sun, 22 Nov 1998 05:42:23 -0800 (PST) Message-Id: <199811221342.FAA17216@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-clocks Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/22 05:42:22 PST Modified files: x11-clocks Makefile Log: Add SUBDIR+=astime Revision Changes Path 1.3 +2 -1 ports/x11-clocks/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 06:03:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA10249 for cvs-all-outgoing; Sun, 22 Nov 1998 06:03: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 GAA10243; Sun, 22 Nov 1998 06: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 GAA17664; Sun, 22 Nov 1998 06:03:33 -0800 (PST) Date: Sun, 22 Nov 1998 06:03:33 -0800 (PST) Message-Id: <199811221403.GAA17664@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/FAQ applications.sgml hackers.sgml network.sgml troubleshoot.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/22 06:03:33 PST Modified files: FAQ applications.sgml hackers.sgml network.sgml troubleshoot.sgml Log: Fix various spelling errors. Submitted by: Ming-I Hsieh PR: 8792 Revision Changes Path 1.8 +2 -2 doc/FAQ/applications.sgml 1.8 +3 -3 doc/FAQ/hackers.sgml 1.18 +3 -3 doc/FAQ/network.sgml 1.7 +3 -3 doc/FAQ/troubleshoot.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 06:08:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA10701 for cvs-all-outgoing; Sun, 22 Nov 1998 06:08: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 GAA10696; Sun, 22 Nov 1998 06:08:31 -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 GAA17856; Sun, 22 Nov 1998 06:08:37 -0800 (PST) Date: Sun, 22 Nov 1998 06:08:37 -0800 (PST) Message-Id: <199811221408.GAA17856@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pkg_install/delete perform.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/22 06:08:36 PST Modified files: (Branch: RELENG_2_2) usr.sbin/pkg_install/delete perform.c Log: MFC: deal with trailing /. Revision Changes Path 1.10.2.5 +7 -1 src/usr.sbin/pkg_install/delete/perform.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 06:25:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA11931 for cvs-all-outgoing; Sun, 22 Nov 1998 06:25:48 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mail.gtn.com (mail.gtn.com [192.109.159.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA11925; Sun, 22 Nov 1998 06:25:44 -0800 (PST) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by mail.gtn.com (8.8.6/8.8.6) with UUCP id PAA21879; Sun, 22 Nov 1998 15:15:06 +0100 (MET) Received: (from andreas@localhost) by klemm.gtn.com (8.9.1/8.9.1) id OAA40504; Sun, 22 Nov 1998 14:26:20 +0100 (CET) (envelope-from andreas) Message-ID: <19981122142619.A40497@klemm.gtn.com> Date: Sun, 22 Nov 1998 14:26:19 +0100 From: Andreas Klemm To: Satoshi Asami , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/x11-toolkits/qt141 Makefile References: <199811221005.CAA11163@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199811221005.CAA11163@freefall.freebsd.org>; from Satoshi Asami on Sun, Nov 22, 1998 at 02:05:15AM -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, Nov 22, 1998 at 02:05:15AM -0800, Satoshi Asami wrote: > asami 1998/11/22 02:05:14 PST > > Modified files: > x11-toolkits/qt141 Makefile > Log: > Mark it broken, Andreas doesn't seem to have the time to get to it > after the repository copy. Sorry indeed ... maybe later this evening ... -- Andreas Klemm http://www.FreeBSD.ORG/~andreas What gives you 90% more speed, for example, in kernel compilation ? http://www.FreeBSD.ORG/~fsmp/SMP/akgraph-a/graph1.html "NT = Not Today" (Maggie Biggs) ``powered by FreeBSD SMP'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 06:54:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA13594 for cvs-all-outgoing; Sun, 22 Nov 1998 06:54: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 GAA13589; Sun, 22 Nov 1998 06:54:06 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA04624; Sun, 22 Nov 1998 06:54:11 -0800 (PST) Date: Sun, 22 Nov 1998 06:54:11 -0800 (PST) Message-Id: <199811221454.GAA04624@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-wm/fvwm95-i18n Makefile ports/x11-wm/fvwm95-i18n/files md5 ports/x11-wm/fvwm95-i18n/patches patch-af patch-ag patch-ah patch-ai patch-ak patch-al patch-am patch-an patch-ao patch-ap patch-aa patch-ab patch-ac patch-ad patch-ae ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/22 06:54:11 PST Modified files: x11-wm/fvwm95-i18n Makefile x11-wm/fvwm95-i18n/files md5 x11-wm/fvwm95-i18n/patches patch-aa patch-ab patch-ac patch-ad patch-ae x11-wm/fvwm95-i18n/pkg COMMENT DESCR PLIST Added files: x11-wm/fvwm95-i18n/patches patch-af patch-ag patch-ah patch-ai patch-ak patch-al patch-am patch-an patch-ao patch-ap Log: Branched x11-wm/fvwm95 -> fvwm95-i18n. This has only Japanese resources for now. Submitted by: Yoshishige Arai Revision Changes Path 1.22 +65 -14 ports/x11-wm/fvwm95-i18n/Makefile 1.4 +3 -0 ports/x11-wm/fvwm95-i18n/files/md5 1.4 +24 -38 ports/x11-wm/fvwm95-i18n/patches/patch-aa 1.2 +18 -15 ports/x11-wm/fvwm95-i18n/patches/patch-ab 1.2 +10 -10 ports/x11-wm/fvwm95-i18n/patches/patch-ac 1.8 +25 -346 ports/x11-wm/fvwm95-i18n/patches/patch-ad 1.5 +30 -10 ports/x11-wm/fvwm95-i18n/patches/patch-ae 1.2 +1 -1 ports/x11-wm/fvwm95-i18n/pkg/COMMENT 1.3 +2 -1 ports/x11-wm/fvwm95-i18n/pkg/DESCR 1.12 +223 -217 ports/x11-wm/fvwm95-i18n/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 06:55:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA13687 for cvs-all-outgoing; Sun, 22 Nov 1998 06:55: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 GAA13682; Sun, 22 Nov 1998 06:55:39 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA04751; Sun, 22 Nov 1998 06:55:45 -0800 (PST) Date: Sun, 22 Nov 1998 06:55:45 -0800 (PST) Message-Id: <199811221455.GAA04751@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-wm Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/22 06:55:44 PST Modified files: x11-wm Makefile Log: Add x11-wm/fvwm95-i18n. Revision Changes Path 1.6 +2 -1 ports/x11-wm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 07:05:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA14301 for cvs-all-outgoing; Sun, 22 Nov 1998 07:05: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 HAA14296; Sun, 22 Nov 1998 07:05:37 -0800 (PST) (envelope-from motoyuki@FreeBSD.org) From: Motoyuki Konno Received: (from motoyuki@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA04933; Sun, 22 Nov 1998 07:05:42 -0800 (PST) Date: Sun, 22 Nov 1998 07:05:42 -0800 (PST) Message-Id: <199811221505.HAA04933@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/ja/handbook ports.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk motoyuki 1998/11/22 07:05:42 PST Modified files: ja/handbook ports.sgml Log: Merge the following changes in the English version: ports.sgml : 1.31 -> 1.33 Submitted by: condle Revision Changes Path 1.18 +17 -12 doc/ja/handbook/ports.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 07:16:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA15255 for cvs-all-outgoing; Sun, 22 Nov 1998 07:16: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 HAA15250; Sun, 22 Nov 1998 07:16:27 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA05265; Sun, 22 Nov 1998 07:16:33 -0800 (PST) Date: Sun, 22 Nov 1998 07:16:33 -0800 (PST) Message-Id: <199811221516.HAA05265@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/22 07:16:32 PST Modified files: . modules Log: fvwm95-i18n --> ports/x11-wm/fvwm95-i18n Revision Changes Path 1.2510 +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 Nov 22 07:24:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA15728 for cvs-all-outgoing; Sun, 22 Nov 1998 07:24: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 HAA15723; Sun, 22 Nov 1998 07:24:03 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA06080; Sun, 22 Nov 1998 07:24:08 -0800 (PST) Date: Sun, 22 Nov 1998 07:24:08 -0800 (PST) Message-Id: <199811221524.HAA06080@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/editors/xemacs/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/11/22 07:24:08 PST Modified files: editors/xemacs/pkg PLIST Log: Fix PLIST. (for /var/run/emacs/lock/) PR: ports/8289 (part of) Submitted by: Satoshi Taoka Revision Changes Path 1.14 +1 -2 ports/editors/xemacs/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 Nov 22 07:24:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA15760 for cvs-all-outgoing; Sun, 22 Nov 1998 07:24: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 HAA15755; Sun, 22 Nov 1998 07:24:26 -0800 (PST) (envelope-from jfieber@FreeBSD.org) From: John Fieber Received: (from jfieber@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA06126; Sun, 22 Nov 1998 07:24:31 -0800 (PST) Date: Sun, 22 Nov 1998 07:24:31 -0800 (PST) Message-Id: <199811221524.HAA06126@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/search search.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jfieber 1998/11/22 07:24:31 PST Modified files: en/search search.sgml Log: Point the "commit" list selection at cvs-committers rather than the apparently defunct freebsd-commit. Note that the new index appears to only cover 1998... Revision Changes Path 1.34 +3 -3 www/en/search/search.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 07:29:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA15958 for cvs-all-outgoing; Sun, 22 Nov 1998 07:29: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 HAA15953; Sun, 22 Nov 1998 07:29:05 -0800 (PST) (envelope-from nectar@FreeBSD.org) From: Jacques Vidrine Received: (from nectar@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA06635; Sun, 22 Nov 1998 07:29:10 -0800 (PST) Date: Sun, 22 Nov 1998 07:29:10 -0800 (PST) Message-Id: <199811221529.HAA06635@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mbone/mbone_vcr Makefile ports/mbone/mbone_vcr/patches patch-ae Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nectar 1998/11/22 07:29:10 PST Modified files: mbone/mbone_vcr Makefile Added files: mbone/mbone_vcr/patches patch-ae Log: extern int errno; -> #include Now builds on -CURRENT. BROKEN_ELF removed. Revision Changes Path 1.10 +1 -3 ports/mbone/mbone_vcr/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 07:40:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA16810 for cvs-all-outgoing; Sun, 22 Nov 1998 07:40: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 HAA16805; Sun, 22 Nov 1998 07:40:10 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA07121; Sun, 22 Nov 1998 07:40:16 -0800 (PST) Date: Sun, 22 Nov 1998 07:40:16 -0800 (PST) Message-Id: <199811221540.HAA07121@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/nethack Makefile ports/japanese/nethack/files README ports/japanese/nethack/patches patch-ad patch-ae patch-af patch-ag ports/japanese/nethack/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/22 07:40:16 PST Modified files: japanese/nethack Makefile japanese/nethack/patches patch-ad patch-ae patch-af patch-ag japanese/nethack/pkg PLIST Added files: japanese/nethack/files README Log: Add README how to play on X written in japanese.Fix patches Revision Changes Path 1.24 +23 -1 ports/japanese/nethack/Makefile 1.3 +40 -52 ports/japanese/nethack/patches/patch-ad 1.3 +52 -69 ports/japanese/nethack/patches/patch-ae 1.2 +14 -12 ports/japanese/nethack/patches/patch-af 1.2 +21 -14 ports/japanese/nethack/patches/patch-ag 1.8 +15 -1 ports/japanese/nethack/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 Nov 22 07:46:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA17261 for cvs-all-outgoing; Sun, 22 Nov 1998 07: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 HAA17256; Sun, 22 Nov 1998 07:46:18 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA07275; Sun, 22 Nov 1998 07:46:23 -0800 (PST) Date: Sun, 22 Nov 1998 07:46:23 -0800 (PST) Message-Id: <199811221546.HAA07275@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/nethack/pkg MESSAGE Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/22 07:46:23 PST Added files: japanese/nethack/pkg MESSAGE Log: Add pkg/MESSAGE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 07:49:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA17408 for cvs-all-outgoing; Sun, 22 Nov 1998 07:49: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 HAA17403; Sun, 22 Nov 1998 07:49:28 -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 HAA07374; Sun, 22 Nov 1998 07:49:34 -0800 (PST) Date: Sun, 22 Nov 1998 07:49:34 -0800 (PST) Message-Id: <199811221549.HAA07374@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/handbook handbook.sgml doc/ja/handbook handbook.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hanai 1998/11/22 07:49:33 PST Modified files: handbook handbook.sgml ja/handbook handbook.sgml Log: next release is 2.2.8. Revision Changes Path 1.92 +2 -2 doc/handbook/handbook.sgml 1.37 +2 -2 doc/ja/handbook/handbook.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 08:36:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA20078 for cvs-all-outgoing; Sun, 22 Nov 1998 08:36: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 IAA20073; Sun, 22 Nov 1998 08:36:07 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA09116; Sun, 22 Nov 1998 08:36:13 -0800 (PST) Date: Sun, 22 Nov 1998 08:36:13 -0800 (PST) Message-Id: <199811221636.IAA09116@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/nethack/pkg DESCR ports/games/nethack/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/22 08:36:12 PST Modified files: japanese/nethack/pkg DESCR games/nethack/pkg DESCR Log: Add pkg/DESCR URL about original nethack Revision Changes Path 1.9 +3 -0 ports/japanese/nethack/pkg/DESCR 1.3 +3 -0 ports/games/nethack/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 Nov 22 08:45:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA20589 for cvs-all-outgoing; Sun, 22 Nov 1998 08:45: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 IAA20584; Sun, 22 Nov 1998 08:45:23 -0800 (PST) (envelope-from motoyuki@FreeBSD.org) From: Motoyuki Konno Received: (from motoyuki@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA09424; Sun, 22 Nov 1998 08:45:28 -0800 (PST) Date: Sun, 22 Nov 1998 08:45:28 -0800 (PST) Message-Id: <199811221645.IAA09424@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/ja/FAQ applications.sgml hackers.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk motoyuki 1998/11/22 08:45:28 PST Modified files: ja/FAQ applications.sgml hackers.sgml Log: Merge the following changes in the English version: applications.sgml : 1.7 -> 1.8 hackers.sgml : 1.6 -> 1.8 Revision Changes Path 1.9 +3 -3 doc/ja/FAQ/applications.sgml 1.6 +26 -7 doc/ja/FAQ/hackers.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 09:09:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA22471 for cvs-all-outgoing; Sun, 22 Nov 1998 09:09: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 JAA22466; Sun, 22 Nov 1998 09:09:35 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA09992; Sun, 22 Nov 1998 09:09:40 -0800 (PST) Date: Sun, 22 Nov 1998 09:09:40 -0800 (PST) Message-Id: <199811221709.JAA09992@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/22 09:09:40 PST Modified files: . modules Log: ppp-nt --> ports/net/ppp-nt Revision Changes Path 1.2511 +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 Nov 22 09:12:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA22815 for cvs-all-outgoing; Sun, 22 Nov 1998 09:12: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 JAA22810; Sun, 22 Nov 1998 09:12:33 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA10165; Sun, 22 Nov 1998 09:12:38 -0800 (PST) Date: Sun, 22 Nov 1998 09:12:38 -0800 (PST) Message-Id: <199811221712.JAA10165@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/ppp-nt - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/22 09:12:38 PST ports/net/ppp-nt - Imported sources Update of /home/ncvs/ports/net/ppp-nt In directory freefall.freebsd.org:/c/users/sada/ports/net/ppp-nt Log Message: Initial import ppp-nt. ppp-nt = user-ppp + multimedia nat + time schedule Status: Vendor Tag: SADA Release Tags: ppp_nt N ports/net/ppp-nt/Makefile I ports/net/ppp-nt/CVS N ports/net/ppp-nt/files/md5 N ports/net/ppp-nt/pkg/DESCR N ports/net/ppp-nt/pkg/COMMENT N ports/net/ppp-nt/pkg/PLIST N ports/net/ppp-nt/patches/patch-aa No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 09:19:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA23275 for cvs-all-outgoing; Sun, 22 Nov 1998 09:19: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 JAA23268; Sun, 22 Nov 1998 09:19:32 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA10511; Sun, 22 Nov 1998 09:19:38 -0800 (PST) Date: Sun, 22 Nov 1998 09:19:38 -0800 (PST) Message-Id: <199811221719.JAA10511@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/22 09:19:37 PST Modified files: net Makefile Log: Add `SUBDIR += ppp-nt' Revision Changes Path 1.196 +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 Nov 22 09:33:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA24591 for cvs-all-outgoing; Sun, 22 Nov 1998 09:33: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 JAA24586; Sun, 22 Nov 1998 09:33:21 -0800 (PST) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA11065; Sun, 22 Nov 1998 09:33:26 -0800 (PST) Date: Sun, 22 Nov 1998 09:33:26 -0800 (PST) Message-Id: <199811221733.JAA11065@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/WebMagick/patches patch-ac Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1998/11/22 09:33:26 PST Added files: www/WebMagick/patches patch-ac Log: don't open /dev/tty To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 09:38:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA25208 for cvs-all-outgoing; Sun, 22 Nov 1998 09:38: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 JAA25203; Sun, 22 Nov 1998 09:38:08 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA11244; Sun, 22 Nov 1998 09:38:14 -0800 (PST) Date: Sun, 22 Nov 1998 09:38:14 -0800 (PST) Message-Id: <199811221738.JAA11244@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/22 09:38:13 PST Modified files: . modules Log: h2n-bind4 --> ports/net/h2n-bind4 Revision Changes Path 1.2512 +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 Nov 22 09:39:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA25270 for cvs-all-outgoing; Sun, 22 Nov 1998 09:39: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 JAA25263; Sun, 22 Nov 1998 09:39:51 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA11323; Sun, 22 Nov 1998 09:39:57 -0800 (PST) Date: Sun, 22 Nov 1998 09:39:57 -0800 (PST) Message-Id: <199811221739.JAA11323@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/h2n-bind4 - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/22 09:39:56 PST ports/net/h2n-bind4 - Imported sources Update of /home/ncvs/ports/net/h2n-bind4 In directory freefall.freebsd.org:/c/users/sada/ports/net/h2n-bind4 Log Message: Initial import ports/net/h2n-bind4. H2n translates host table to name server file format. Status: Vendor Tag: SADA Release Tags: h2n_bind4 N ports/net/h2n-bind4/Makefile I ports/net/h2n-bind4/CVS N ports/net/h2n-bind4/files/md5 N ports/net/h2n-bind4/pkg/PLIST N ports/net/h2n-bind4/pkg/COMMENT N ports/net/h2n-bind4/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 Nov 22 09:40:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA25418 for cvs-all-outgoing; Sun, 22 Nov 1998 09:40: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 JAA25413; Sun, 22 Nov 1998 09:40:27 -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 JAA11362; Sun, 22 Nov 1998 09:40:33 -0800 (PST) Date: Sun, 22 Nov 1998 09:40:33 -0800 (PST) Message-Id: <199811221740.JAA11362@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa cy.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/11/22 09:40:33 PST Modified files: sys/i386/isa cy.c Log: Reduce i/o overheads by not preserving the channel access register in interrupt handlers. Instead, load and use it atomically as necessary. This reduces mode switching overhead for "polled" mode interrupt handling from 5 i/o's to 3 (per service type, per port) so that polled mode is only slightly more inefficient than "interrupt" mode. Revision Changes Path 1.73 +130 -113 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 Sun Nov 22 09:45:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA25879 for cvs-all-outgoing; Sun, 22 Nov 1998 09:45: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 JAA25872; Sun, 22 Nov 1998 09:45:12 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA11669; Sun, 22 Nov 1998 09:45:17 -0800 (PST) Date: Sun, 22 Nov 1998 09:45:17 -0800 (PST) Message-Id: <199811221745.JAA11669@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/22 09:45:17 PST Modified files: net Makefile Log: Add ``SUBDIR += h2n-bind4'' Revision Changes Path 1.197 +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 Nov 22 10:38:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA29902 for cvs-all-outgoing; Sun, 22 Nov 1998 10:38: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 KAA29897; Sun, 22 Nov 1998 10:38:01 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA15401; Sun, 22 Nov 1998 10:38:07 -0800 (PST) Date: Sun, 22 Nov 1998 10:38:07 -0800 (PST) Message-Id: <199811221838.KAA15401@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/netscape3 Makefile ports/www/netscape3/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/22 10:38:06 PST Modified files: www/netscape3 Makefile www/netscape3/files md5 Log: Change MASTER_SITES to the new locations. Add a md5 line for GOLD Version. PR: ports/8715, ports/8788 Submitted by: CHOI Junho , Jim Mock Revision Changes Path 1.25 +3 -3 ports/www/netscape3/Makefile 1.18 +1 -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 Nov 22 11:18:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA03759 for cvs-all-outgoing; Sun, 22 Nov 1998 11: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 LAA03754; Sun, 22 Nov 1998 11:18:54 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA21031; Sun, 22 Nov 1998 11:19:00 -0800 (PST) Date: Sun, 22 Nov 1998 11:19:00 -0800 (PST) Message-Id: <199811221919.LAA21031@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/asprint Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/22 11:18:59 PST Modified files: print/asprint Makefile Log: Revice MASTER_SITES to the new location. PR: ports/8794 Submitted by: Brett Taylor Revision Changes Path 1.5 +2 -2 ports/print/asprint/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 11:26:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA04434 for cvs-all-outgoing; Sun, 22 Nov 1998 11:26: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 LAA04429; Sun, 22 Nov 1998 11:26:34 -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 LAA21446; Sun, 22 Nov 1998 11:26:40 -0800 (PST) Date: Sun, 22 Nov 1998 11:26:40 -0800 (PST) Message-Id: <199811221926.LAA21446@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libskey Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jdp 1998/11/22 11:26:39 PST Modified files: lib/libskey Makefile Log: Explicitly depend on libcrypt and libmd for a.out too. Fixes a PAM related problem on a.out systems. Revision Changes Path 1.14 +0 -2 src/lib/libskey/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 11:33:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA05367 for cvs-all-outgoing; Sun, 22 Nov 1998 11:33: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 LAA05362; Sun, 22 Nov 1998 11:33:23 -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 LAA21784; Sun, 22 Nov 1998 11:33:28 -0800 (PST) Date: Sun, 22 Nov 1998 11:33:28 -0800 (PST) Message-Id: <199811221933.LAA21784@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libpam/libpam Makefile src/lib/libpam/modules Makefile.inc Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jdp 1998/11/22 11:33:27 PST Modified files: lib/libpam/libpam Makefile lib/libpam/modules Makefile.inc Log: Install PAM modules into ${SHLIBDIR}, not ${LIBDIR}. Noticed by: bde Revision Changes Path 1.2 +2 -2 src/lib/libpam/libpam/Makefile 1.2 +2 -2 src/lib/libpam/modules/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 11:33:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA05548 for cvs-all-outgoing; Sun, 22 Nov 1998 11:33: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 LAA05543; Sun, 22 Nov 1998 11:33:49 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA21803; Sun, 22 Nov 1998 11:33:55 -0800 (PST) Date: Sun, 22 Nov 1998 11:33:55 -0800 (PST) Message-Id: <199811221933.LAA21803@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/textproc/urlview Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/22 11:33:54 PST Modified files: textproc/urlview Makefile Log: Revise MASTER_SITES to the new locations. PR: ports/8785 Submitted by: Josh Gilliam Revision Changes Path 1.3 +3 -3 ports/textproc/urlview/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 12:15:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA08471 for cvs-all-outgoing; Sun, 22 Nov 1998 12:15: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 MAA08466; Sun, 22 Nov 1998 12:15:22 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA23376; Sun, 22 Nov 1998 12:15:27 -0800 (PST) Date: Sun, 22 Nov 1998 12:15:27 -0800 (PST) Message-Id: <199811222015.MAA23376@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11/xmascot/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/22 12:15:27 PST Modified files: x11/xmascot/pkg PLIST Log: Add missing PLIST line, "lib/X11/app-defaults/XMascot" Revision Changes Path 1.5 +1 -0 ports/x11/xmascot/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 Nov 22 13:33:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA15164 for cvs-all-outgoing; Sun, 22 Nov 1998 13:33: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 NAA15155; Sun, 22 Nov 1998 13:33:15 -0800 (PST) (envelope-from scrappy@FreeBSD.org) From: "Marc G. Fournier" Received: (from scrappy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA26997; Sun, 22 Nov 1998 13:33:20 -0800 (PST) Date: Sun, 22 Nov 1998 13:33:20 -0800 (PST) Message-Id: <199811222133.NAA26997@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/databases/postgresql Makefile ports/databases/postgresql/files md5 ports/databases/postgresql/patches patch-ak patch-al patch-am ports/databases/postgresql/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk scrappy 1998/11/22 13:33:20 PST Modified files: databases/postgresql Makefile databases/postgresql/files md5 databases/postgresql/patches patch-ak databases/postgresql/pkg PLIST Removed files: databases/postgresql/patches patch-al patch-am Log: Upgrade to PostgreSQL v6.4 From: Cyrus Rahman Revision Changes Path 1.29 +19 -15 ports/databases/postgresql/Makefile 1.7 +1 -1 ports/databases/postgresql/files/md5 1.3 +9 -23 ports/databases/postgresql/patches/patch-ak 1.17 +145 -28 ports/databases/postgresql/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 Nov 22 13:33:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA15321 for cvs-all-outgoing; Sun, 22 Nov 1998 13: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 NAA15249; Sun, 22 Nov 1998 13:33:55 -0800 (PST) (envelope-from scrappy@FreeBSD.org) From: "Marc G. Fournier" Received: (from scrappy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA27027; Sun, 22 Nov 1998 13:34:00 -0800 (PST) Date: Sun, 22 Nov 1998 13:34:00 -0800 (PST) Message-Id: <199811222134.NAA27027@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/databases/postgresql/patches patch-an patch-ao patch-ap Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk scrappy 1998/11/22 13:34:00 PST Added files: databases/postgresql/patches patch-an patch-ao patch-ap Log: Missed 'cvs add'ng three new patches... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 13:53:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA17072 for cvs-all-outgoing; Sun, 22 Nov 1998 13: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 NAA17066; Sun, 22 Nov 1998 13:53:26 -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 NAA27739; Sun, 22 Nov 1998 13:53:32 -0800 (PST) Date: Sun, 22 Nov 1998 13:53:32 -0800 (PST) Message-Id: <199811222153.NAA27739@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/security/ssh2 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/22 13:53:32 PST Modified files: security/ssh2 Makefile Log: Mark this broken as it awaits upgrade after repository copy. Revision Changes Path 1.72 +3 -1 ports/security/ssh2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 14:01:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA18163 for cvs-all-outgoing; Sun, 22 Nov 1998 14:01: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 OAA18156; Sun, 22 Nov 1998 14:01:37 -0800 (PST) (envelope-from nsouch@FreeBSD.org) From: Nicolas Souchu Received: (from nsouch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA28131; Sun, 22 Nov 1998 14:01:43 -0800 (PST) Date: Sun, 22 Nov 1998 14:01:43 -0800 (PST) Message-Id: <199811222201.OAA28131@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/dev/iicbus iicbus.c iiconf.c src/sys/dev/smbus smbconf.c smbus.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nsouch 1998/11/22 14:01:42 PST Modified files: sys/dev/iicbus iicbus.c iiconf.c sys/dev/smbus smbconf.c smbus.c Log: Remove broken and useless intr interface. Submitted by: Doug Rabson Amancio Hasty Avoid compile warnings. Revision Changes Path 1.5 +1 -3 src/sys/dev/iicbus/iicbus.c 1.3 +2 -2 src/sys/dev/iicbus/iiconf.c 1.3 +2 -2 src/sys/dev/smbus/smbconf.c 1.3 +1 -3 src/sys/dev/smbus/smbus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 14:16:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA19349 for cvs-all-outgoing; Sun, 22 Nov 1998 14:16:55 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from dt053n18.san.rr.com (dt053n18.san.rr.com [204.210.34.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA19156; Sun, 22 Nov 1998 14:16:51 -0800 (PST) (envelope-from Studded@dal.net) Received: from dal.net (Studded@localhost [127.0.0.1]) by dt053n18.san.rr.com (8.8.8/8.8.8) with ESMTP id OAA00921; Sun, 22 Nov 1998 14:15:58 -0800 (PST) (envelope-from Studded@dal.net) Message-ID: <36588D1D.BC232A93@dal.net> Date: Sun, 22 Nov 1998 14:15:57 -0800 From: Studded Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 2.2.7-STABLE-1101 i386) X-Accept-Language: en MIME-Version: 1.0 To: John Polstra CC: John Birrell , cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/login Makefile login.c klogin.c References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk John Polstra wrote: > > On 21-Nov-98 John Birrell wrote: > >> ATTENTION: INSTALL "/etc/pam.conf" FROM "src/etc"!!! > > > > When new things like this come along, I'd be nice if an installworld > > would install the default file iff no such file exists in the installation > > directory. > > Sounds like a good idea to me. I could easily add an option to mergemaster to do this if there was sufficient interest. Doug -- *** Chief Operations Officer, DALnet IRC network *** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 14:21:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA19606 for cvs-all-outgoing; Sun, 22 Nov 1998 14:21:13 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from cimlogic.com.au (cimlog.lnk.telstra.net [139.130.51.31]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA19600; Sun, 22 Nov 1998 14:21:05 -0800 (PST) (envelope-from jb@cimlogic.com.au) Received: (from jb@localhost) by cimlogic.com.au (8.9.1/8.9.1) id JAA02163; Mon, 23 Nov 1998 09:24:50 +1100 (EST) (envelope-from jb) From: John Birrell Message-Id: <199811222224.JAA02163@cimlogic.com.au> Subject: Re: cvs commit: src/usr.bin/login Makefile login.c klogin.c In-Reply-To: <36588D1D.BC232A93@dal.net> from Studded at "Nov 22, 98 02:15:57 pm" To: Studded@dal.net (Studded) Date: Mon, 23 Nov 1998 09:24:49 +1100 (EST) Cc: jdp@polstra.com, jb@cimlogic.com.au, cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL40 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Studded wrote: > John Polstra wrote: > > > > On 21-Nov-98 John Birrell wrote: > > >> ATTENTION: INSTALL "/etc/pam.conf" FROM "src/etc"!!! > > > > > > When new things like this come along, I'd be nice if an installworld > > > would install the default file iff no such file exists in the installation > > > directory. > > > > Sounds like a good idea to me. > > I could easily add an option to mergemaster to do this if there was > sufficient interest. src/etc/Makefile should just DTRT for `make install'. -- John Birrell - jb@cimlogic.com.au; jb@freebsd.org http://www.cimlogic.com.au/ CIMlogic Pty Ltd, GPO Box 117A, Melbourne Vic 3001, Australia +61 418 353 137 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 14:28:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA20321 for cvs-all-outgoing; Sun, 22 Nov 1998 14:28:43 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from jade.chc-chimes.com (jade.chc-chimes.com [206.67.97.83]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA20313; Sun, 22 Nov 1998 14:28:36 -0800 (PST) (envelope-from billf@jade.chc-chimes.com) Received: from localhost (billf@localhost) by jade.chc-chimes.com (8.8.8/8.8.8) with SMTP id RAA08903; Sun, 22 Nov 1998 17:27:49 -0500 (EST) (envelope-from billf@jade.chc-chimes.com) Date: Sun, 22 Nov 1998 17:27:49 -0500 (EST) From: Bill Fumerola To: Satoshi Asami cc: billf@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/converters/man2html - Imported sources In-Reply-To: <199811220858.AAA04964@bubble.didi.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, 22 Nov 1998, Satoshi Asami wrote: > * ports/converters/man2html - Imported sources > ^^^^^^^^^^ > * Update of /home/ncvs/ports/converters/man2html > * In directory freefall.freebsd.org:/x/tmp/cvs-serv10370 > * > * Log Message: > * Reimport man2html into ports/textproc. > > * C ports/converters/man2html/Makefile > ^^^^^^^^^^ > > I don't think that's what happened. ;) I told easy-import textproc the second time around, I think it read the (stale) modules file and just went ahead importing it to the wrong section. Needless to say, I'm pissed at myself for assuming it imported properly w/o checking it. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 14:31:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA20559 for cvs-all-outgoing; Sun, 22 Nov 1998 14:31: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 OAA20554; Sun, 22 Nov 1998 14:31:18 -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 OAA29459; Sun, 22 Nov 1998 14:31:24 -0800 (PST) Date: Sun, 22 Nov 1998 14:31:24 -0800 (PST) Message-Id: <199811222231.OAA29459@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/netscape3-gold Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/22 14:31:24 PST Added files: www/netscape3-gold Makefile Log: Add skeleton Makefile for gold version. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 14:31:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA20739 for cvs-all-outgoing; Sun, 22 Nov 1998 14:31: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 OAA20734; Sun, 22 Nov 1998 14:31: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 OAA29520; Sun, 22 Nov 1998 14:32:02 -0800 (PST) Date: Sun, 22 Nov 1998 14:32:02 -0800 (PST) Message-Id: <199811222232.OAA29520@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/22 14:32:02 PST Modified files: www Makefile Log: Add netscape3-gold. Revision Changes Path 1.106 +2 -1 ports/www/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 14:32:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA20841 for cvs-all-outgoing; Sun, 22 Nov 1998 14:32: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 OAA20835; Sun, 22 Nov 1998 14:32: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 OAA29584; Sun, 22 Nov 1998 14:32:46 -0800 (PST) Date: Sun, 22 Nov 1998 14:32:46 -0800 (PST) Message-Id: <199811222232.OAA29584@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/22 14:32:46 PST Modified files: . modules Log: Add netscape3-gold. Revision Changes Path 1.2513 +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 Nov 22 14:33:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA20881 for cvs-all-outgoing; Sun, 22 Nov 1998 14:33: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 OAA20874; Sun, 22 Nov 1998 14:33:26 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA29627; Sun, 22 Nov 1998 14:33:32 -0800 (PST) Date: Sun, 22 Nov 1998 14:33:32 -0800 (PST) Message-Id: <199811222233.OAA29627@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/textproc/man2html - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1998/11/22 14:33:31 PST ports/textproc/man2html - Imported sources Update of /home/ncvs/ports/textproc/man2html In directory freefall.freebsd.org:/x/tmp/cvs-serv29538 Log Message: With a correct CVSROOT/modules file, import man2html for the last time. Status: Vendor Tag: DEMON Release Tags: man2html_3_0_1 N ports/textproc/man2html/Makefile N ports/textproc/man2html/files/md5 N ports/textproc/man2html/pkg/COMMENT N ports/textproc/man2html/pkg/DESCR N ports/textproc/man2html/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 Nov 22 14:34:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA21018 for cvs-all-outgoing; Sun, 22 Nov 1998 14:34: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 OAA21009; Sun, 22 Nov 1998 14:34:54 -0800 (PST) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sjx-ca115-47.ix.netcom.com [207.223.162.111]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id OAA16648; Sun, 22 Nov 1998 14:34:20 -0800 (PST) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id OAA05583; Sun, 22 Nov 1998 14:34:14 -0800 (PST) (envelope-from asami) Date: Sun, 22 Nov 1998 14:34:14 -0800 (PST) Message-Id: <199811222234.OAA05583@bubble.didi.com> To: obrien@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199811190517.VAA27345@freefall.freebsd.org> (obrien@FreeBSD.ORG) Subject: Re: cvs commit: ports/www/netscape3 Makefile ports/www/netscape3/files md5 ports/www/netscape4-communicator Makefile ports/www/netscape4-communicator/files md5 ports/www/netscape4-navigator Makefile ports/www/netscape4-navigator/files md5 ... From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Blindly update to Fortify-1.3.0 as Fortify-1.2.6 isn't fetchable anymore. * 1.17 +0 -3 ports/www/netscape3/files/md5 * 1.24 +3 -3 ports/www/netscape4-communicator/Makefile * 1.18 +1 -1 ports/www/netscape4-communicator/files/md5 * 1.27 +3 -3 ports/www/netscape4-navigator/Makefile * 1.20 +1 -1 ports/www/netscape4-navigator/files/md5 * 1.20 +0 -1 ports/www/netscape45-communicator/files/md5 Please check the md5 files. Some of these (like n3, n45-comm) look suspicious as they shrunk. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 14:41:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA21558 for cvs-all-outgoing; Sun, 22 Nov 1998 14:41: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 OAA21553; Sun, 22 Nov 1998 14:41:46 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA29962; Sun, 22 Nov 1998 14:41:52 -0800 (PST) Date: Sun, 22 Nov 1998 14:41:52 -0800 (PST) Message-Id: <199811222241.OAA29962@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/textproc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1998/11/22 14:41:52 PST Modified files: textproc Makefile Log: Activate man2html Revision Changes Path 1.33 +2 -1 ports/textproc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 14:45:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA21875 for cvs-all-outgoing; Sun, 22 Nov 1998 14:45: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 OAA21870; Sun, 22 Nov 1998 14:45:11 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA00223; Sun, 22 Nov 1998 14:45:16 -0800 (PST) Date: Sun, 22 Nov 1998 14:45:16 -0800 (PST) Message-Id: <199811222245.OAA00223@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/html2ps Makefile ports/print/html2ps/scripts pre-configure Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/22 14:45:16 PST Modified files: print/html2ps Makefile print/html2ps/scripts pre-configure Log: Make port's Makefile to pass $PERL5 to the scripts/pre-configure, that installed `html2ps' script would execute true path of Perl5, even on the FreeBSD-CUREENT system. Revision Changes Path 1.5 +2 -1 ports/print/html2ps/Makefile 1.2 +2 -2 ports/print/html2ps/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 Sun Nov 22 15:28:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA25384 for cvs-all-outgoing; Sun, 22 Nov 1998 15:28: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 PAA25379; Sun, 22 Nov 1998 15:28:40 -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 PAA01664; Sun, 22 Nov 1998 15:28:46 -0800 (PST) Date: Sun, 22 Nov 1998 15:28:46 -0800 (PST) Message-Id: <199811222328.PAA01664@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/projects projects.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/11/22 15:28:46 PST Modified files: en/projects projects.sgml Log: Delete reference to DVL Software and to paul@kennett.co.nz in the FreeBSD diary paragraph. Submitted by: "Dan Langille" Revision Changes Path 1.31 +3 -3 www/en/projects/projects.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 15:44:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA27269 for cvs-all-outgoing; Sun, 22 Nov 1998 15:44: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 PAA27264; Sun, 22 Nov 1998 15:44:42 -0800 (PST) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA02112; Sun, 22 Nov 1998 15:44:47 -0800 (PST) Date: Sun, 22 Nov 1998 15:44:47 -0800 (PST) Message-Id: <199811222344.PAA02112@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/cam/scsi scsi_cd.c scsi_ch.c scsi_pass.c scsi_pt.c scsi_sa.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/11/22 15:44:47 PST Modified files: sys/cam/scsi scsi_cd.c scsi_ch.c scsi_pass.c scsi_pt.c scsi_sa.c Log: Fix a few problems that Bruce noticed about a month ago, and fix oup one other problem. - Hold onto splsoftcam() in the peripheral driver open routines until we have locked the periph. This eliminates a race condition. - Disallow opening the pass driver when securelevel > 1. - If a user tries to open the pass driver with O_NONBLOCK set, return EINVAL instead of ENODEV. (noticed by gibbs) Revision Changes Path 1.9 +9 -3 src/sys/cam/scsi/scsi_cd.c 1.6 +6 -3 src/sys/cam/scsi/scsi_ch.c 1.5 +21 -8 src/sys/cam/scsi/scsi_pass.c 1.4 +6 -3 src/sys/cam/scsi/scsi_pt.c 1.5 +4 -2 src/sys/cam/scsi/scsi_sa.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 16:34:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA02918 for cvs-all-outgoing; Sun, 22 Nov 1998 16:34: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 QAA02913; Sun, 22 Nov 1998 16:34:13 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA03567; Sun, 22 Nov 1998 16:34:18 -0800 (PST) Date: Sun, 22 Nov 1998 16:34:18 -0800 (PST) Message-Id: <199811230034.QAA03567@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/22 16:34:18 PST Modified files: . modules Log: nocol --> ports/net/nocol Revision Changes Path 1.2514 +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 Nov 22 16:35:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA03000 for cvs-all-outgoing; Sun, 22 Nov 1998 16:35: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 QAA02993; Sun, 22 Nov 1998 16:35:38 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA03682; Sun, 22 Nov 1998 16:35:43 -0800 (PST) Date: Sun, 22 Nov 1998 16:35:43 -0800 (PST) Message-Id: <199811230035.QAA03682@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/nocol - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/22 16:35:43 PST ports/net/nocol - Imported sources Update of /home/ncvs/ports/net/nocol In directory freefall.freebsd.org:/c/users/flathill/nocol Log Message: PR: ports/8801 Submitted by: bradh@iafrica.com Initial Import nocol. Network/Service monitoring software. Status: Vendor Tag: NOCOL Release Tags: nocol_4_2_2beta1 N ports/net/nocol/Makefile I ports/net/nocol/CVS N ports/net/nocol/pkg/PLIST N ports/net/nocol/pkg/COMMENT N ports/net/nocol/pkg/DESCR N ports/net/nocol/patches/patch-aa N ports/net/nocol/patches/patch-ab N ports/net/nocol/files/md5 No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 16:37:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA03062 for cvs-all-outgoing; Sun, 22 Nov 1998 16:37: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 QAA03055; Sun, 22 Nov 1998 16:37:04 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA03747; Sun, 22 Nov 1998 16:37:09 -0800 (PST) Date: Sun, 22 Nov 1998 16:37:09 -0800 (PST) Message-Id: <199811230037.QAA03747@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/22 16:37:09 PST Modified files: net Makefile Log: Add SUBDIR+=nocol Revision Changes Path 1.198 +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 Nov 22 16:43:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA03362 for cvs-all-outgoing; Sun, 22 Nov 1998 16:43: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 QAA03356; Sun, 22 Nov 1998 16:43:36 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA04158; Sun, 22 Nov 1998 16:43:41 -0800 (PST) Date: Sun, 22 Nov 1998 16:43:41 -0800 (PST) Message-Id: <199811230043.QAA04158@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/nocol Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/22 16:43:41 PST Modified files: net/nocol Makefile Log: Add NO_PACKAGE line. Revision Changes Path 1.2 +3 -1 ports/net/nocol/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 16:45:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA03524 for cvs-all-outgoing; Sun, 22 Nov 1998 16:45: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 QAA03519; Sun, 22 Nov 1998 16:45:37 -0800 (PST) (envelope-from truckman@FreeBSD.org) From: Don Lewis Received: (from truckman@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA04343; Sun, 22 Nov 1998 16:45:42 -0800 (PST) Date: Sun, 22 Nov 1998 16:45:42 -0800 (PST) Message-Id: <199811230045.QAA04343@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern uipc_socket2.c uipc_syscalls.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk truckman 1998/11/22 16:45:42 PST Modified files: sys/kern uipc_socket2.c uipc_syscalls.c Log: We can't call fsetown() from sonewconn() because sonewconn() is be called from an interrupt context and fsetown() wants to peek at curproc, call malloc(..., M_WAITOK), and fiddle with various unprotected data structures. The fix is to move the code that duplicates the F_SETOWN/FIOSETOWN state of the original socket to the new socket from sonewconn() to accept1(), since accept1() runs in the correct context. Deferring this until the process calls accept() is harmless since the process can't do anything useful with SIGIO on the new socket until it has the descriptor for that socket. One could make the case for not bothering to duplicate the F_SETOWN/FIOSETOWN state and requiring the process to explicitly make the fcntl() or ioctl() call on the new socket, but this would be incompatible with the previous implementation and might break programs which rely on the old semantics. This bug was discovered by Andrew Gallatin . Revision Changes Path 1.42 +1 -2 src/sys/kern/uipc_socket2.c 1.47 +3 -1 src/sys/kern/uipc_syscalls.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 17:05:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA05332 for cvs-all-outgoing; Sun, 22 Nov 1998 17:05: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 RAA05326; Sun, 22 Nov 1998 17:05:51 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA05274; Sun, 22 Nov 1998 17:05:56 -0800 (PST) Date: Sun, 22 Nov 1998 17:05:56 -0800 (PST) Message-Id: <199811230105.RAA05274@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/netpipes Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/22 17:05:56 PST Modified files: net/netpipes Makefile Log: Change MASTER_SITE Revision Changes Path 1.6 +2 -2 ports/net/netpipes/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 17:33:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA07532 for cvs-all-outgoing; Sun, 22 Nov 1998 17:33: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 RAA07527; Sun, 22 Nov 1998 17:33:44 -0800 (PST) (envelope-from gibbs@FreeBSD.org) From: "Justin T. Gibbs" Received: (from gibbs@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA06417; Sun, 22 Nov 1998 17:33:49 -0800 (PST) Date: Sun, 22 Nov 1998 17:33:49 -0800 (PST) Message-Id: <199811230133.RAA06417@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/dev/aic7xxx aic7xxx.c aic7xxx.h aic7xxx.reg aic7xxx.seq Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk gibbs 1998/11/22 17:33:49 PST Modified files: sys/dev/aic7xxx aic7xxx.c aic7xxx.h aic7xxx.reg aic7xxx.seq Log: Change the delivery mechanism for incoming target commands. We now use a 256 entry ring buffer of descriptersfor this purpose. This allows the use of a simple 8bit counter in the sequencer code for tracking start location. Entries in the ring buffer now contain a "cmd_valid" byte at their tail. As an entry is serviced, this byte is cleared by the kernel and set by the sequencer during its dma of a new entry. Since this byte is the last portion of the command touched during a dma, the kernel can use this byte to ensure the command it processes is completely valid. The new command format requires a fixed sized DMA from the controller to deliver which allowed for additional simplification of the sequencer code. The hack that required 1 SCB slot to be stolen for incoming command delivery notification is also gone. Revision Changes Path 1.10 +29 -31 src/sys/dev/aic7xxx/aic7xxx.c 1.2 +20 -9 src/sys/dev/aic7xxx/aic7xxx.h 1.8 +21 -5 src/sys/dev/aic7xxx/aic7xxx.reg 1.80 +29 -38 src/sys/dev/aic7xxx/aic7xxx.seq To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 18:04:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA10316 for cvs-all-outgoing; Sun, 22 Nov 1998 18:04: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 SAA10309; Sun, 22 Nov 1998 18:04:27 -0800 (PST) (envelope-from scrappy@FreeBSD.org) From: "Marc G. Fournier" Received: (from scrappy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA07922; Sun, 22 Nov 1998 18:04:33 -0800 (PST) Date: Sun, 22 Nov 1998 18:04:33 -0800 (PST) Message-Id: <199811230204.SAA07922@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/databases/postgresql/patches patch-ad Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk scrappy 1998/11/22 18:04:32 PST Modified files: databases/postgresql/patches patch-ad Log: Forgot to submit a slight patch change... Revision Changes Path 1.2 +2 -2 ports/databases/postgresql/patches/patch-ad To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 18:05:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA10574 for cvs-all-outgoing; Sun, 22 Nov 1998 18:05:13 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA10558; Sun, 22 Nov 1998 18:05:07 -0800 (PST) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id UAA07372; Sun, 22 Nov 1998 20:04:32 -0600 (CST) Date: Sun, 22 Nov 1998 20:04:31 -0600 (CST) From: Steve Price To: Satoshi Asami cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/x11-fm/q3dmenu Makefile In-Reply-To: <199811220957.BAA16844@silvia.hip.berkeley.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Yes, I got it. Seems like an old unmaintained piece of code. I also figured out why the following didn't catch this. cd /usr/ports grep graphics/gql */*/Makefile Note my dislexia in spelling 'qgl'. :) -steve On Sun, 22 Nov 1998, Satoshi Asami wrote: # * qgl port is no more, but this one still tries to link to -lqgl. # # Steve, can you look into this? (Or pass it onto the maintainer....) # # Satoshi # To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 18:13:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA11756 for cvs-all-outgoing; Sun, 22 Nov 1998 18:13: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 SAA11751; Sun, 22 Nov 1998 18:13:18 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA08395; Sun, 22 Nov 1998 18:13:24 -0800 (PST) Date: Sun, 22 Nov 1998 18:13:24 -0800 (PST) Message-Id: <199811230213.SAA08395@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/apache12-fp Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1998/11/22 18:13:24 PST Modified files: www/apache12-fp Makefile Log: Add the new MASTER_SITES to the apache12-fp port as well as the apache13-fp as they both use the same for extentions. PR: ports/8595 Submitted by: Scot W. Hetzel Revision Changes Path 1.2 +3 -2 ports/www/apache12-fp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 18:20:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA12431 for cvs-all-outgoing; Sun, 22 Nov 1998 18:20:14 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from jade.chc-chimes.com (jade.chc-chimes.com [206.67.97.83]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA12386; Sun, 22 Nov 1998 18:20:02 -0800 (PST) (envelope-from billf@jade.chc-chimes.com) Received: from localhost (billf@localhost) by jade.chc-chimes.com (8.8.8/8.8.8) with SMTP id VAA17127; Sun, 22 Nov 1998 21:19:19 -0500 (EST) (envelope-from billf@jade.chc-chimes.com) Date: Sun, 22 Nov 1998 21:19:19 -0500 (EST) From: Bill Fumerola To: Satoshi Asami cc: steve@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/plan9/9menu Makefile ports/plan9/9term Makefile ports/plan9/9wm Makefile ports/plan9/Xg Makefile ports/plan9/rc Makefile ports/plan9/sam Makefile In-Reply-To: <199811220546.VAA04511@bubble.didi.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sat, 21 Nov 1998, Satoshi Asami wrote: > Actually, I was thinking whether we should just forget about it and > split this thing up. "plan9" sounds like a good virtual category, but > not a primary one. It looks pretty much like kde and offix. (Do > people actually go here and try to build a plan9-like environment or > something?) Agreed. > On the other hand, "pilot" probably should have been a real category. > I don't think tools in that virtual category can be used for anything > other than using with the PalmPilot. How do people think about > changing the name to "palmpilot" (to avoid any confusion) and moving > them all into that subdirectory? Agreed again. There is no appropriate category for these apps other then a real non-virtual one, as they inherently are for those with PalmPilots. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 18:38:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA13801 for cvs-all-outgoing; Sun, 22 Nov 1998 18:38: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 SAA13796; Sun, 22 Nov 1998 18:38:37 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA09118; Sun, 22 Nov 1998 18:38:42 -0800 (PST) Date: Sun, 22 Nov 1998 18:38:42 -0800 (PST) Message-Id: <199811230238.SAA09118@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-clocks/astime/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/22 18:38:42 PST Modified files: x11-clocks/astime/patches patch-aa Log: Fix patches/patch-aa Revision Changes Path 1.2 +2 -8 ports/x11-clocks/astime/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 18:52:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA14822 for cvs-all-outgoing; Sun, 22 Nov 1998 18:52: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 SAA14815; Sun, 22 Nov 1998 18:52:07 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA10180; Sun, 22 Nov 1998 18:52:12 -0800 (PST) Date: Sun, 22 Nov 1998 18:52:12 -0800 (PST) Message-Id: <199811230252.SAA10180@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/22 18:52:12 PST Modified files: . modules Log: xmulti --> ports/deskutils/xmulti Revision Changes Path 1.2515 +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 Nov 22 18:52:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA15035 for cvs-all-outgoing; Sun, 22 Nov 1998 18:52: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 SAA15029; Sun, 22 Nov 1998 18:52:39 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA10198; Sun, 22 Nov 1998 18:52:45 -0800 (PST) Date: Sun, 22 Nov 1998 18:52:45 -0800 (PST) Message-Id: <199811230252.SAA10198@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/deskutils/xmulti - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/22 18:52:45 PST ports/deskutils/xmulti - Imported sources Update of /home/ncvs/ports/deskutils/xmulti In directory freefall.freebsd.org:/c/users/flathill/xmulti Log Message: Initial Import xmulti. Status: Vendor Tag: XMULTI Release Tags: xmulti_2_00beta4 N ports/deskutils/xmulti/Makefile I ports/deskutils/xmulti/CVS N ports/deskutils/xmulti/files/md5 N ports/deskutils/xmulti/pkg/COMMENT N ports/deskutils/xmulti/pkg/DESCR N ports/deskutils/xmulti/pkg/PLIST N ports/deskutils/xmulti/patches/patch-aa No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 18:56:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA15167 for cvs-all-outgoing; Sun, 22 Nov 1998 18:56: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 SAA15162; Sun, 22 Nov 1998 18:56:35 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA10312; Sun, 22 Nov 1998 18:56:40 -0800 (PST) Date: Sun, 22 Nov 1998 18:56:40 -0800 (PST) Message-Id: <199811230256.SAA10312@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/deskutils Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/22 18:56:40 PST Modified files: deskutils Makefile Log: Add SUBDIR+=xmulti Revision Changes Path 1.5 +2 -1 ports/deskutils/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 19:05:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA15737 for cvs-all-outgoing; Sun, 22 Nov 1998 19:05:43 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA15726; Sun, 22 Nov 1998 19:05:34 -0800 (PST) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id VAA20508; Sun, 22 Nov 1998 21:04:59 -0600 (CST) Date: Sun, 22 Nov 1998 21:04:59 -0600 (CST) From: Steve Price To: Satoshi Asami cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/plan9/9menu Makefile ports/plan9/9term Makefile ports/plan9/9wm Makefile ports/plan9/Xg Makefile ports/plan9/rc Makefile ports/plan9/sam Makefile In-Reply-To: <199811220546.VAA04511@bubble.didi.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sat, 21 Nov 1998, Satoshi Asami wrote: # * plan9/9menu Makefile # * plan9/9term Makefile # * plan9/9wm Makefile # * plan9/Xg Makefile # * plan9/rc Makefile # * plan9/sam Makefile # * Log: # * Fixup CATEGORIES list. # # Actually, I was thinking whether we should just forget about it and # split this thing up. "plan9" sounds like a good virtual category, but # not a primary one. It looks pretty much like kde and offix. (Do # people actually go here and try to build a plan9-like environment or # something?) Splitting this up sounds good to me. If you'll do the repository copy honors, then I'll clean up afterwards if you'd like. # On the other hand, "pilot" probably should have been a real category. # I don't think tools in that virtual category can be used for anything # other than using with the PalmPilot. How do people think about # changing the name to "palmpilot" (to avoid any confusion) and moving # them all into that subdirectory? I like the idea of creating a "real category" for them, but it does seems a bit presumptuous with only 5 of them in the tree right now. -steve # Satoshi # To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 19:19:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA16544 for cvs-all-outgoing; Sun, 22 Nov 1998 19:19:56 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA16532; Sun, 22 Nov 1998 19:19:47 -0800 (PST) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id VAA18021; Sun, 22 Nov 1998 21:19:14 -0600 (CST) Date: Sun, 22 Nov 1998 21:19:13 -0600 (CST) From: Steve Price To: Seiichirou Hiraoka cc: cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: ports/deskutils/xmulti - Imported sources In-Reply-To: <199811230252.SAA10198@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk A quick couple suggestions if I may. Nothing big just minor nits. :) On Sun, 22 Nov 1998, Seiichirou Hiraoka wrote: # flathill 1998/11/22 18:52:45 PST # # ports/deskutils/xmulti - Imported sources # Update of /home/ncvs/ports/deskutils/xmulti # In directory freefall.freebsd.org:/c/users/flathill/xmulti # # Log Message: # Initial Import xmulti. Please provide a description of what xmulti is and why I might want to take a look at it. Generally just putting the contents of pkg/COMMENT here is sufficient. # Status: # # Vendor Tag: XMULTI The vendor tag is usually to denote who you obtained this port from. For example, before billf became a committer and I committed a port that he submitted via send-pr(1) I usually used a tag like, BILLF. Another example would something that came from the Free Software Foundation or the GNU project, in which case you would use FSF or GNU respectively. # Release Tags: xmulti_2_00beta4 Try to formulate the release tag along these lines. v2_00_beta4 v3_0_3 Having 'xmulti' or the name of the port is in most cases redundant. Besides these few nits, you've been a busy little beaver. Keep up the good work! :) -steve # N ports/deskutils/xmulti/Makefile # I ports/deskutils/xmulti/CVS # N ports/deskutils/xmulti/files/md5 # N ports/deskutils/xmulti/pkg/COMMENT # N ports/deskutils/xmulti/pkg/DESCR # N ports/deskutils/xmulti/pkg/PLIST # N ports/deskutils/xmulti/patches/patch-aa # # No conflicts created by this import # # To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 19:23:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA16817 for cvs-all-outgoing; Sun, 22 Nov 1998 19:23: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 TAA16812; Sun, 22 Nov 1998 19:23:09 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA11567; Sun, 22 Nov 1998 19:23:14 -0800 (PST) Date: Sun, 22 Nov 1998 19:23:14 -0800 (PST) Message-Id: <199811230323.TAA11567@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libc/sys vfork.2 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1998/11/22 19:23:14 PST Modified files: lib/libc/sys vfork.2 Log: Don't mention exit(3) in explanation; _exit(2) is a better choice. Revision Changes Path 1.11 +2 -2 src/lib/libc/sys/vfork.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 19:29:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA17619 for cvs-all-outgoing; Sun, 22 Nov 1998 19:29: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 TAA17613; Sun, 22 Nov 1998 19:29:06 -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 TAA12272; Sun, 22 Nov 1998 19:29:11 -0800 (PST) Date: Sun, 22 Nov 1998 19:29:11 -0800 (PST) Message-Id: <199811230329.TAA12272@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mail/wmmail Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/11/22 19:29:11 PST Modified files: mail/wmmail Makefile Log: Jim Mock has stepped forward to maintain this one in Gilad's absence. Revision Changes Path 1.6 +2 -2 ports/mail/wmmail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 19:30:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA17969 for cvs-all-outgoing; Sun, 22 Nov 1998 19:30: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 TAA17960; Sun, 22 Nov 1998 19:30:17 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA12363; Sun, 22 Nov 1998 19:30:22 -0800 (PST) Date: Sun, 22 Nov 1998 19:30:22 -0800 (PST) Message-Id: <199811230330.TAA12363@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1998/11/22 19:30:22 PST Modified files: . modules Log: lzo --> ports/archivers/lzo Revision Changes Path 1.2516 +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 Nov 22 19:33:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA18163 for cvs-all-outgoing; Sun, 22 Nov 1998 19:33: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 TAA18157; Sun, 22 Nov 1998 19:33:35 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA12629; Sun, 22 Nov 1998 19:33:40 -0800 (PST) Date: Sun, 22 Nov 1998 19:33:40 -0800 (PST) Message-Id: <199811230333.TAA12629@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1998/11/22 19:33:40 PST Modified files: . modules Log: Backing out the lzo library addition. Revision Changes Path 1.2517 +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 Sun Nov 22 20:40:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA24323 for cvs-all-outgoing; Sun, 22 Nov 1998 20:40: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 UAA24318; Sun, 22 Nov 1998 20:40: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 UAA15315; Sun, 22 Nov 1998 20:40:33 -0800 (PST) Date: Sun, 22 Nov 1998 20:40:33 -0800 (PST) Message-Id: <199811230440.UAA15315@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/FAQ troubleshoot.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/22 20:40:33 PST Modified files: FAQ troubleshoot.sgml Log: Spelling fix. Submitted by: Ming-I Hsieh PR: 8791 Revision Changes Path 1.8 +2 -2 doc/FAQ/troubleshoot.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 21:15:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA27562 for cvs-all-outgoing; Sun, 22 Nov 1998 21:15: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 VAA27557; Sun, 22 Nov 1998 21:15:12 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA16920; Sun, 22 Nov 1998 21:15:18 -0800 (PST) Date: Sun, 22 Nov 1998 21:15:18 -0800 (PST) Message-Id: <199811230515.VAA16920@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/security/ssh2 Makefile ports/security/ssh2/files md5 rsa64.diff ports/security/ssh2/patches patch-aa patch-ab ports/security/ssh2/pkg PLIST.ssh2_only DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/11/22 21:15:17 PST Modified files: security/ssh2 Makefile security/ssh2/files md5 security/ssh2/patches patch-aa patch-ab security/ssh2/pkg DESCR PLIST Added files: security/ssh2/pkg PLIST.ssh2_only Removed files: security/ssh2/files rsa64.diff Log: Secure shell client and server (remote login program). PR: ports/8204 Submitted by: Issei Suzuki Revision Changes Path 1.73 +73 -125 ports/security/ssh2/Makefile 1.22 +2 -3 ports/security/ssh2/files/md5 1.6 +10 -19 ports/security/ssh2/patches/patch-aa 1.9 +15 -62 ports/security/ssh2/patches/patch-ab 1.3 +32 -98 ports/security/ssh2/pkg/DESCR 1.15 +50 -21 ports/security/ssh2/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 Nov 22 21:16:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA27833 for cvs-all-outgoing; Sun, 22 Nov 1998 21:16: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 VAA27828; Sun, 22 Nov 1998 21:16:09 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA16977; Sun, 22 Nov 1998 21:16:14 -0800 (PST) Date: Sun, 22 Nov 1998 21:16:14 -0800 (PST) Message-Id: <199811230516.VAA16977@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/security Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/11/22 21:16:14 PST Modified files: security Makefile Log: Activate ssh2. Revision Changes Path 1.35 +2 -1 ports/security/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 21:53:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA29775 for cvs-all-outgoing; Sun, 22 Nov 1998 21:53: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 VAA29770; Sun, 22 Nov 1998 21:53:07 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA18752; Sun, 22 Nov 1998 21:53:12 -0800 (PST) Date: Sun, 22 Nov 1998 21:53:12 -0800 (PST) Message-Id: <199811230553.VAA18752@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libc/gen popen.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1998/11/22 21:53:12 PST Modified files: (Branch: RELENG_2_2) lib/libc/gen popen.c Log: MFC: {rev 1.11} The 2.2 version of popen is uses 'vfork' and 'execl'. Since 'execl' calls 'malloc' we then have the interesting possibility of a malloc arena corruption. The rev 1.11 change fixes this. Approved by: jkh Revision Changes Path 1.4.2.3 +9 -1 src/lib/libc/gen/popen.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 21:54:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA00108 for cvs-all-outgoing; Sun, 22 Nov 1998 21:54:47 -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 VAA29999; Sun, 22 Nov 1998 21:54:37 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sjx-ca115-47.ix.netcom.com [207.223.162.111]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id VAA17066; Sun, 22 Nov 1998 21:53:56 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id VAA18679; Sun, 22 Nov 1998 21:53:53 -0800 (PST) Date: Sun, 22 Nov 1998 21:53:53 -0800 (PST) Message-Id: <199811230553.VAA18679@silvia.hip.berkeley.edu> To: sprice@hiwaay.net CC: flathill@FreeBSD.ORG, cvs-committers@FreeBSD.ORG In-reply-to: (message from Steve Price on Sun, 22 Nov 1998 21:19:13 -0600 (CST)) Subject: Re: cvs commit: ports/deskutils/xmulti - Imported sources From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * # Status: * # * # Vendor Tag: XMULTI * * The vendor tag is usually to denote who you obtained this * port from. For example, before billf became a committer * and I committed a port that he submitted via send-pr(1) * I usually used a tag like, BILLF. Another example would * something that came from the Free Software Foundation or * the GNU project, in which case you would use FSF or GNU * respectively. I don't know. This is the origin of the port itself, so using FSF or GNU doesn't make much sense. Either way, I don't think it matters any, it's not like the ports have vendor branches to track or something.... ;) * Besides these few nits, you've been a busy little beaver. * Keep up the good work! :) Agreed! Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 21:56:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA00187 for cvs-all-outgoing; Sun, 22 Nov 1998 21:56:03 -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 VAA00169; Sun, 22 Nov 1998 21:56:00 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sjx-ca115-47.ix.netcom.com [207.223.162.111]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id VAA17073; Sun, 22 Nov 1998 21:55:26 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id VAA18686; Sun, 22 Nov 1998 21:55:23 -0800 (PST) Date: Sun, 22 Nov 1998 21:55:23 -0800 (PST) Message-Id: <199811230555.VAA18686@silvia.hip.berkeley.edu> To: sprice@hiwaay.net CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: (message from Steve Price on Sun, 22 Nov 1998 21:04:59 -0600 (CST)) Subject: Re: cvs commit: ports/plan9/9menu Makefile ports/plan9/9term Makefile ports/plan9/9wm Makefile ports/plan9/Xg Makefile ports/plan9/rc Makefile ports/plan9/sam Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Splitting this up sounds good to me. If you'll do the repository * copy honors, then I'll clean up afterwards if you'd like. Oohh. That's hard to resist.... :) * # On the other hand, "pilot" probably should have been a real category. * I like the idea of creating a "real category" for them, but it * does seems a bit presumptuous with only 5 of them in the tree * right now. I think that's ok. Even if it stays at 5 forever, these are separate from the rest of the tree and that's exactly what categories are for. Besides, I'm sure there will be more in the future with everything and their hamsters getting those little gizmos. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 21:57:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA00230 for cvs-all-outgoing; Sun, 22 Nov 1998 21:57:27 -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 VAA00225; Sun, 22 Nov 1998 21:57:22 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sjx-ca115-47.ix.netcom.com [207.223.162.111]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id VAA17077; Sun, 22 Nov 1998 21:56:45 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id VAA18692; Sun, 22 Nov 1998 21:56:42 -0800 (PST) Date: Sun, 22 Nov 1998 21:56:42 -0800 (PST) Message-Id: <199811230556.VAA18692@silvia.hip.berkeley.edu> To: sprice@hiwaay.net CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: (message from Steve Price on Sun, 22 Nov 1998 20:04:31 -0600 (CST)) Subject: Re: cvs commit: ports/x11-fm/q3dmenu Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * cd /usr/ports * grep graphics/gql */*/Makefile * * Note my dislexia in spelling 'qgl'. :) Wasn't that thing imported as qgl initially? Or am I thinking about something else? Satoshi (gosh, those q's and g's are so hard to distinguish) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 21:59:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA00342 for cvs-all-outgoing; Sun, 22 Nov 1998 21:59:38 -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 VAA00334; Sun, 22 Nov 1998 21:59:29 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sjx-ca115-47.ix.netcom.com [207.223.162.111]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id VAA17081; Sun, 22 Nov 1998 21:58:55 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id VAA18698; Sun, 22 Nov 1998 21:58:43 -0800 (PST) Date: Sun, 22 Nov 1998 21:58:43 -0800 (PST) Message-Id: <199811230558.VAA18698@silvia.hip.berkeley.edu> To: steve@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199811211755.JAA07273@freefall.freebsd.org> (message from Steve Price on Sat, 21 Nov 1998 09:55:47 -0800 (PST)) Subject: Re: cvs commit: ports/devel Makefile ports/devel/crossm68k Makefile ports/devel/crossm68k/files md5 ports/devel/crossm68k/patches patch-aa patch-ab patch-ac patch-ad ports/devel/crossm68k/pkg COMMENT DESCR PLIST ports/devel/crossm68k/scripts one-tree-1.4.sh ... From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * 1.2 +1 -5 ports/devel/crossm68k/files/md5 What's up with this file? It's now empty (single newline). Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 22:07:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA00929 for cvs-all-outgoing; Sun, 22 Nov 1998 22:07: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 WAA00923; Sun, 22 Nov 1998 22:07:39 -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 WAA19171; Sun, 22 Nov 1998 22:07:45 -0800 (PST) Date: Sun, 22 Nov 1998 22:07:45 -0800 (PST) Message-Id: <199811230607.WAA19171@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/libicq Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/22 22:07:44 PST Modified files: devel/libicq Makefile Log: portlint (PKGNAME not necessary if same as DISTNAME). Revision Changes Path 1.2 +1 -2 ports/devel/libicq/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 22:07:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA00997 for cvs-all-outgoing; Sun, 22 Nov 1998 22: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 WAA00990; Sun, 22 Nov 1998 22:07: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 WAA19200; Sun, 22 Nov 1998 22:07:57 -0800 (PST) Date: Sun, 22 Nov 1998 22:07:57 -0800 (PST) Message-Id: <199811230607.WAA19200@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/libicq/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/22 22:07:57 PST Modified files: devel/libicq/pkg PLIST Log: libicq.so is 0.2, not 0.0. Revision Changes Path 1.2 +1 -1 ports/devel/libicq/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 Nov 22 22:18:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA01568 for cvs-all-outgoing; Sun, 22 Nov 1998 22:18: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 WAA01563; Sun, 22 Nov 1998 22:18:46 -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 WAA19542; Sun, 22 Nov 1998 22:18:51 -0800 (PST) Date: Sun, 22 Nov 1998 22:18:51 -0800 (PST) Message-Id: <199811230618.WAA19542@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/emulators/xsystem35 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/22 22:18:51 PST Modified files: emulators/xsystem35 Makefile Log: No need to use += for variable defined only once. Revision Changes Path 1.3 +2 -2 ports/emulators/xsystem35/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 22:28:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA02389 for cvs-all-outgoing; Sun, 22 Nov 1998 22:28: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 WAA02383; Sun, 22 Nov 1998 22:28:02 -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 WAA19872; Sun, 22 Nov 1998 22:28:07 -0800 (PST) Date: Sun, 22 Nov 1998 22:28:07 -0800 (PST) Message-Id: <199811230628.WAA19872@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/handbook porting.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/22 22:28:07 PST Modified files: handbook porting.sgml Log: Remove LOOP_VAR and LOOP_OPTIONS description and replace it with MASTERDIR. Add note about ${X11BASE}/lib/X11/fonts/local. Add info about bsd.port.pre.mk. Revision Changes Path 1.115 +127 -51 doc/handbook/porting.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 22:30:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA02674 for cvs-all-outgoing; Sun, 22 Nov 1998 22:30: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 WAA02667; Sun, 22 Nov 1998 22:30:18 -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 WAA19999; Sun, 22 Nov 1998 22:30:24 -0800 (PST) Date: Sun, 22 Nov 1998 22:30:24 -0800 (PST) Message-Id: <199811230630.WAA19999@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/handbook porting.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/22 22:30:24 PST Modified files: handbook porting.sgml Log: Add note that pre.mk/post.mk comes as a pair and can't be mixed with bsd.port.mk. Revision Changes Path 1.116 +4 -2 doc/handbook/porting.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 22:31:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA02809 for cvs-all-outgoing; Sun, 22 Nov 1998 22:31: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 WAA02800; Sun, 22 Nov 1998 22:31:51 -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 WAA20147; Sun, 22 Nov 1998 22:31:56 -0800 (PST) Date: Sun, 22 Nov 1998 22:31:56 -0800 (PST) Message-Id: <199811230631.WAA20147@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/graphics/xmagv/pkg COMMENT ports/graphics/xpx/pkg COMMENT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/22 22:31:56 PST Modified files: graphics/xmagv/pkg COMMENT graphics/xpx/pkg COMMENT Log: Remove name of package from front. Revision Changes Path 1.2 +1 -1 ports/graphics/xmagv/pkg/COMMENT 1.2 +1 -1 ports/graphics/xpx/pkg/COMMENT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 22:35:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA03035 for cvs-all-outgoing; Sun, 22 Nov 1998 22:35: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 WAA03030; Sun, 22 Nov 1998 22:35:31 -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 WAA20258; Sun, 22 Nov 1998 22:35:37 -0800 (PST) Date: Sun, 22 Nov 1998 22:35:37 -0800 (PST) Message-Id: <199811230635.WAA20258@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/handbook handbook.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/22 22:35:37 PST Modified files: handbook handbook.sgml Log: Someone jumped the gun on 2.2.8. It's still 2.2.7 right now and the installation notes still need to point there. :-) Revision Changes Path 1.93 +2 -2 doc/handbook/handbook.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 22:38:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA03257 for cvs-all-outgoing; Sun, 22 Nov 1998 22: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 WAA03251; Sun, 22 Nov 1998 22:38: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 WAA20364; Sun, 22 Nov 1998 22:38:20 -0800 (PST) Date: Sun, 22 Nov 1998 22:38:20 -0800 (PST) Message-Id: <199811230638.WAA20364@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/gicq Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/22 22:38:19 PST Modified files: japanese/gicq Makefile Log: Portlint. Revision Changes Path 1.2 +4 -4 ports/japanese/gicq/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 22:56:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA05097 for cvs-all-outgoing; Sun, 22 Nov 1998 22:56: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 WAA05092; Sun, 22 Nov 1998 22:56:27 -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 WAA21167; Sun, 22 Nov 1998 22:56:33 -0800 (PST) Date: Sun, 22 Nov 1998 22:56:33 -0800 (PST) Message-Id: <199811230656.WAA21167@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/handbook handbook.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/22 22:56:33 PST Modified files: handbook handbook.sgml Log: Seems like we're doing the same thing for every release...add a comment on rel.current definition so it won't happen again. Revision Changes Path 1.94 +3 -1 doc/handbook/handbook.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 23:02:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA06148 for cvs-all-outgoing; Sun, 22 Nov 1998 23:02: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 XAA06084; Sun, 22 Nov 1998 23:02:30 -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 XAA21546; Sun, 22 Nov 1998 23:02:35 -0800 (PST) Date: Sun, 22 Nov 1998 23:02:35 -0800 (PST) Message-Id: <199811230702.XAA21546@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/libicq/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/22 23:02:35 PST Modified files: japanese/libicq/pkg PLIST Log: libicq.so is 0.2. Revision Changes Path 1.2 +1 -1 ports/japanese/libicq/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 Nov 22 23:34:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA08775 for cvs-all-outgoing; Sun, 22 Nov 1998 23:34: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 XAA08770; Sun, 22 Nov 1998 23:34:33 -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 XAA22761; Sun, 22 Nov 1998 23:34:38 -0800 (PST) Date: Sun, 22 Nov 1998 23:34:38 -0800 (PST) Message-Id: <199811230734.XAA22761@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/boot/biosboot Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/11/22 23:34:38 PST Modified files: sys/pc98/boot/biosboot Makefile Log: Sync with sys/i386/boot/biosboot/Makefile revision 1.67. Revision Changes Path 1.20 +4 -4 src/sys/pc98/boot/biosboot/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 23:41:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA09411 for cvs-all-outgoing; Sun, 22 Nov 1998 23:41: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 XAA09406; Sun, 22 Nov 1998 23:41:47 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA23229; Sun, 22 Nov 1998 23:41:53 -0800 (PST) Date: Sun, 22 Nov 1998 23:41:53 -0800 (PST) Message-Id: <199811230741.XAA23229@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/security/ssh2/patches patch-ac patch-ad patch-ae patch-af patch-ag patch-aj patch-al patch-ao patch-ap patch-ar patch-as patch-at patch-au patch-av Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/11/22 23:41:53 PST Removed files: security/ssh2/patches patch-ac patch-ad patch-ae patch-af patch-ag patch-aj patch-al patch-ao patch-ap patch-ar patch-as patch-at patch-au patch-av Log: Oops, I forgot to remove old patches... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 23:47:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA09820 for cvs-all-outgoing; Sun, 22 Nov 1998 23:47: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 XAA09814; Sun, 22 Nov 1998 23:47:05 -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 XAA23470; Sun, 22 Nov 1998 23:47:10 -0800 (PST) Date: Sun, 22 Nov 1998 23:47:10 -0800 (PST) Message-Id: <199811230747.XAA23470@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/teTeX-beta Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/22 23:47:10 PST Modified files: print/teTeX-beta Makefile Log: Remove MANUAL_PACKAGE_BUILD, it won't get in the way of building other ports. Approved by: maintainer and tg Revision Changes Path 1.26 +1 -2 ports/print/teTeX-beta/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 23:49:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA09957 for cvs-all-outgoing; Sun, 22 Nov 1998 23:49: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 XAA09952; Sun, 22 Nov 1998 23:48:59 -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 XAA23541; Sun, 22 Nov 1998 23:49:04 -0800 (PST) Date: Sun, 22 Nov 1998 23:49:04 -0800 (PST) Message-Id: <199811230749.XAA23541@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 sio.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/11/22 23:49:04 PST Modified files: sys/pc98/pc98 sio.c Log: Sync with sys/i386/isa/sio.c revision up to 1.218. Revision Changes Path 1.69 +2 -67 src/sys/pc98/pc98/sio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Nov 22 23:49:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA10007 for cvs-all-outgoing; Sun, 22 Nov 1998 23:49: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 XAA10002; Sun, 22 Nov 1998 23:49:46 -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 XAA23658; Sun, 22 Nov 1998 23:49:52 -0800 (PST) Date: Sun, 22 Nov 1998 23:49:52 -0800 (PST) Message-Id: <199811230749.XAA23658@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/korean/netscape3 Makefile ports/korean/netscape3/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/22 23:49:51 PST Modified files: korean/netscape3 Makefile korean/netscape3/files md5 Log: Remove RESTRICTED. Move distfiles to "netscape3" subdir. Adjust path to dependency. Use = instead of += for dependency definition. Revision Changes Path 1.7 +4 -4 ports/korean/netscape3/Makefile 1.3 +2 -2 ports/korean/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 Nov 22 23:51:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA10153 for cvs-all-outgoing; Sun, 22 Nov 1998 23:51: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 XAA10148; Sun, 22 Nov 1998 23:51:05 -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 XAA23841; Sun, 22 Nov 1998 23:51:10 -0800 (PST) Date: Sun, 22 Nov 1998 23:51:10 -0800 (PST) Message-Id: <199811230751.XAA23841@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/netscape3.language Makefile ports/japanese/netscape3.language/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/22 23:51:10 PST Modified files: japanese/netscape3.language Makefile japanese/netscape3.language/files md5 Log: Remove RESTRICTED. Move distfiles to "netscape3" subdir. Adjust path to dependency to match reality. Use = instead of += for dependency definition. Revision Changes Path 1.3 +8 -8 ports/japanese/netscape3.language/Makefile 1.2 +3 -3 ports/japanese/netscape3.language/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 Nov 23 00:13:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA12297 for cvs-all-outgoing; Mon, 23 Nov 1998 00: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 AAA12291; Mon, 23 Nov 1998 00:13:09 -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 AAA24771; Mon, 23 Nov 1998 00:13:15 -0800 (PST) Date: Mon, 23 Nov 1998 00:13:15 -0800 (PST) Message-Id: <199811230813.AAA24771@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/teTeX-beta Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 00:13:15 PST Modified files: print/teTeX-beta Makefile Log: libwww shared lib is at version 6 now. Revision Changes Path 1.27 +2 -2 ports/print/teTeX-beta/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 00:16:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA12688 for cvs-all-outgoing; Mon, 23 Nov 1998 00: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 AAA12683; Mon, 23 Nov 1998 00:16:03 -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 AAA24938; Mon, 23 Nov 1998 00:16:09 -0800 (PST) Date: Mon, 23 Nov 1998 00:16:09 -0800 (PST) Message-Id: <199811230816.AAA24938@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/netscape-fonts Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 00:16:09 PST Modified files: japanese/netscape-fonts Makefile Log: kappa20 is in local now. Revision Changes Path 1.5 +2 -2 ports/japanese/netscape-fonts/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 00:32:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA14112 for cvs-all-outgoing; Mon, 23 Nov 1998 00:32: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 AAA14107; Mon, 23 Nov 1998 00:32: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 AAA25543; Mon, 23 Nov 1998 00:32:09 -0800 (PST) Date: Mon, 23 Nov 1998 00:32:09 -0800 (PST) Message-Id: <199811230832.AAA25543@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/math/geg Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 00:32:09 PST Modified files: math/geg Makefile Log: Make this thing build. (Actually it's failing in configure.) Is it too much to ask that people at least TEST these things before they commit them?!? Revision Changes Path 1.5 +3 -3 ports/math/geg/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 00:34:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA14578 for cvs-all-outgoing; Mon, 23 Nov 1998 00:34: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 AAA14569; Mon, 23 Nov 1998 00:34: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 AAA25689; Mon, 23 Nov 1998 00:34:52 -0800 (PST) Date: Mon, 23 Nov 1998 00:34:52 -0800 (PST) Message-Id: <199811230834.AAA25689@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/gicq Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 00:34:52 PST Modified files: net/gicq Makefile Log: Portlint. Also, change libgtk dependency to LIB_DEPENDS. Revision Changes Path 1.2 +4 -5 ports/net/gicq/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 00:37:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA15113 for cvs-all-outgoing; Mon, 23 Nov 1998 00:37: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 AAA15108; Mon, 23 Nov 1998 00:37:23 -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 AAA25929; Mon, 23 Nov 1998 00:37:28 -0800 (PST) Date: Mon, 23 Nov 1998 00:37:28 -0800 (PST) Message-Id: <199811230837.AAA25929@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/portscanner Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 00:37:28 PST Modified files: net/portscanner Makefile Log: Use NO_WRKSUBDIR. Revision Changes Path 1.3 +2 -2 ports/net/portscanner/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 00:38:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA15249 for cvs-all-outgoing; Mon, 23 Nov 1998 00:38: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 AAA15241; Mon, 23 Nov 1998 00:38: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 AAA25997; Mon, 23 Nov 1998 00:38:25 -0800 (PST) Date: Mon, 23 Nov 1998 00:38:25 -0800 (PST) Message-Id: <199811230838.AAA25997@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/ppp-nt Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 00:38:25 PST Modified files: net/ppp-nt Makefile Log: No need to use += for variables defined only once. Revision Changes Path 1.2 +2 -2 ports/net/ppp-nt/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 00:48:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA16449 for cvs-all-outgoing; Mon, 23 Nov 1998 00:48: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 AAA16444; Mon, 23 Nov 1998 00:48: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 AAA26504; Mon, 23 Nov 1998 00:48:30 -0800 (PST) Date: Mon, 23 Nov 1998 00:48:30 -0800 (PST) Message-Id: <199811230848.AAA26504@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/teTeX-beta Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 00:48:30 PST Modified files: print/teTeX-beta Makefile Log: Mark this port broken: ===> Building package for teTeX-0.9-981102 Creating package /usr/ports/packages/All/teTeX-0.9-981102.tgz Registering depends: libwww-5.2 png-1.0.2. Creating gzip'd tar ball in '/usr/ports/packages/All/teTeX-0.9-981102.tgz' tar: can't add file share/texmf/web2c/elatex.efmt : No such file or directory tar: can't add file share/texmf/web2c/elatex.log : No such file or directory tar: can't add file share/texmf/web2c/etex.efmt : No such file or directory tar: can't add file share/texmf/web2c/etex.log : No such file or directory tar: can't add file share/texmf/web2c/lambda.fmt : No such file or directory tar: can't add file share/texmf/web2c/lambda.log : No such file or directory tar: can't add file share/texmf/web2c/omega.fmt : No such file or directory tar: can't add file share/texmf/web2c/omega.log : No such file or directory tar: can't add file share/texmf/web2c/pdflatex.fmt : No such file or directory tar: can't add file share/texmf/web2c/pdflatex.log : No such file or directory tar: can't add file share/texmf/web2c/pdftex.fmt : No such file or directory tar: can't add file share/texmf/web2c/pdftex.log : No such file or directory pkg_create: tar command failed with code 256 *** Error code 1 Stop. Revision Changes Path 1.28 +3 -1 ports/print/teTeX-beta/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 00:52:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA16647 for cvs-all-outgoing; Mon, 23 Nov 1998 00:52: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 AAA16638; Mon, 23 Nov 1998 00:52:07 -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 AAA26695; Mon, 23 Nov 1998 00:52:13 -0800 (PST) Date: Mon, 23 Nov 1998 00:52:13 -0800 (PST) Message-Id: <199811230852.AAA26695@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/pbm2ppa Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 00:52:12 PST Modified files: print/pbm2ppa Makefile Log: A little portlint. Also, enscript dir name changed. Revision Changes Path 1.2 +6 -6 ports/print/pbm2ppa/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 01:02:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA17837 for cvs-all-outgoing; Mon, 23 Nov 1998 01:02: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 BAA17832; Mon, 23 Nov 1998 01:02:15 -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 BAA27248; Mon, 23 Nov 1998 01:02:21 -0800 (PST) Date: Mon, 23 Nov 1998 01:02:21 -0800 (PST) Message-Id: <199811230902.BAA27248@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/security/super Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 01:02:20 PST Modified files: security/super Makefile Log: Mark it broken, doesn't build on 2.2-stable. ======= ===> Building for super-3.11.6 cc -c -DSUPERFILE=\"/usr/local/etc/super.tab\" -DTIMESTAMP_DIR=\"/usr/local/var/superstamps\" -DSYSLOG_PRIORITY=LOG_ERR -DHAVE_CONFIG_H -I. -O -pipe super.c In file included from localsys.h:166, from super.h:18, from super.c:12: /usr/include/prot.h:60: parse error before `create_auth_reply' /usr/include/prot.h:62: parse error before `KTEXT' /usr/include/prot.h:62: warning: data definition has no type or storage class *** Error code 1 Stop. Revision Changes Path 1.3 +3 -1 ports/security/super/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 01:08:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA18554 for cvs-all-outgoing; Mon, 23 Nov 1998 01:08: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 BAA18549; Mon, 23 Nov 1998 01:08:21 -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 BAA27600; Mon, 23 Nov 1998 01:08:26 -0800 (PST) Date: Mon, 23 Nov 1998 01:08:26 -0800 (PST) Message-Id: <199811230908.BAA27600@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/textproc/htdig Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 01:08:26 PST Modified files: textproc/htdig Makefile Log: Mark it broken, doesn't package. === ===> Building package for htdig-3.1.0 Creating package /usr/ports/packages/All/htdig-3.1.0.tgz Registering depends:. Creating gzip'd tar ball in '/usr/ports/packages/All/htdig-3.1.0.tgz' tar: can't add file etc/htdig.conf : No such file or directory tar: can't add file share/htdig/footer.html : No such file or directory tar: can't add file share/htdig/bad_words : No such file or directory tar: can't add file share/htdig/header.html : No such file or directory tar: can't add file share/htdig/nomatch.html : No such file or directory tar: can't add file share/htdig/syntax.html : No such file or directory tar: can't add file share/htdig/english.0 : No such file or directory tar: can't add file share/htdig/english.aff : No such file or directory tar: can't add file share/htdig/synonyms : No such file or directory pkg_create: tar command failed with code 256 *** Error code 1 Stop. Revision Changes Path 1.2 +3 -1 ports/textproc/htdig/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 01:18:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA17015 for cvs-all-outgoing; Mon, 23 Nov 1998 00:54: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 AAA17007; Mon, 23 Nov 1998 00:54:34 -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 AAA26842; Mon, 23 Nov 1998 00:54:39 -0800 (PST) Date: Mon, 23 Nov 1998 00:54:39 -0800 (PST) Message-Id: <199811230854.AAA26842@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/pbm2ppa Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 00:54:39 PST Modified files: print/pbm2ppa Makefile Log: Make the message match reality. Revision Changes Path 1.3 +2 -2 ports/print/pbm2ppa/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 01:23:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA20170 for cvs-all-outgoing; Mon, 23 Nov 1998 01:23: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 BAA20161; Mon, 23 Nov 1998 01:23: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 BAA28117; Mon, 23 Nov 1998 01:23:43 -0800 (PST) Date: Mon, 23 Nov 1998 01:23:43 -0800 (PST) Message-Id: <199811230923.BAA28117@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-wm/fvwm95-i18n Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 01:23:43 PST Modified files: x11-wm/fvwm95-i18n Makefile Log: No need to use +=. Revision Changes Path 1.23 +3 -3 ports/x11-wm/fvwm95-i18n/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 01:29:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA20480 for cvs-all-outgoing; Mon, 23 Nov 1998 01:29: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 BAA20475; Mon, 23 Nov 1998 01:29:45 -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 BAA28368; Mon, 23 Nov 1998 01:29:50 -0800 (PST) Date: Mon, 23 Nov 1998 01:29:50 -0800 (PST) Message-Id: <199811230929.BAA28368@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-wm/xfce Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 01:29:50 PST Modified files: x11-wm/xfce Makefile Log: Portlint. Revision Changes Path 1.9 +3 -3 ports/x11-wm/xfce/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 01:33:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA20875 for cvs-all-outgoing; Mon, 23 Nov 1998 01: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 BAA20870; Mon, 23 Nov 1998 01:33:30 -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 BAA28552; Mon, 23 Nov 1998 01:33:35 -0800 (PST) Date: Mon, 23 Nov 1998 01:33:35 -0800 (PST) Message-Id: <199811230933.BAA28552@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern subr_rman.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/11/23 01:33:35 PST Modified files: sys/kern subr_rman.c Log: Fixed a missing include. `SYSININT(...);' garbage in gave null garbage out. Revision Changes Path 1.2 +2 -1 src/sys/kern/subr_rman.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 01:34:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA21032 for cvs-all-outgoing; Mon, 23 Nov 1998 01:34: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 BAA21021; Mon, 23 Nov 1998 01:34:14 -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 BAA28582; Mon, 23 Nov 1998 01:34:20 -0800 (PST) Date: Mon, 23 Nov 1998 01:34:20 -0800 (PST) Message-Id: <199811230934.BAA28582@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern kern_clock.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sos 1998/11/23 01:34:20 PST Modified files: sys/kern kern_clock.c Log: Add a kludge to prevent panicing when using VM86 and hitting here with a NULL curproc. Originally by: Tor Egge (IIRC) Revision Changes Path 1.84 +2 -2 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 Nov 23 01:47:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA22177 for cvs-all-outgoing; Mon, 23 Nov 1998 01:47: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 BAA22171; Mon, 23 Nov 1998 01:47:07 -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 BAA29067; Mon, 23 Nov 1998 01:47:12 -0800 (PST) Date: Mon, 23 Nov 1998 01:47:12 -0800 (PST) Message-Id: <199811230947.BAA29067@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-wm/xfce/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 01:47:12 PST Modified files: x11-wm/xfce/pkg PLIST Log: Remove nonexistent file "lib/X11/XFCE/Quickstart". Revision Changes Path 1.5 +0 -1 ports/x11-wm/xfce/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 01:51:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA23009 for cvs-all-outgoing; Mon, 23 Nov 1998 01:51: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 BAA23004; Mon, 23 Nov 1998 01:51:53 -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 BAA29400; Mon, 23 Nov 1998 01:51:58 -0800 (PST) Date: Mon, 23 Nov 1998 01:51:58 -0800 (PST) Message-Id: <199811230951.BAA29400@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/acroread Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/11/23 01:51:58 PST Modified files: print/acroread Makefile Log: Brand acroread executable. Doesn't really matter because it's linked dynamically, but doesn't hurt, either. PR: 8779 Submitted by: Joel Ray Holbeck Revision Changes Path 1.9 +3 -2 ports/print/acroread/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 01:59:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA23471 for cvs-all-outgoing; Mon, 23 Nov 1998 01:59: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 BAA23464; Mon, 23 Nov 1998 01:58:59 -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 BAA29931; Mon, 23 Nov 1998 01:59:04 -0800 (PST) Date: Mon, 23 Nov 1998 01:59:04 -0800 (PST) Message-Id: <199811230959.BAA29931@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern kern_clock.c src/sys/conf options src/sys/i386/conf LINT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/11/23 01:59:03 PST Modified files: sys/kern kern_clock.c sys/conf options sys/i386/conf LINT Log: Make timecounters more resistant to badly behaved SW/HW which locks out interrupts for too long. If you still see the "calcru: negative time..." message you can increase NTIMECOUNTER (see LINT). Sideeffect is that a timecounter is required to not wrap around in less than (1 + delta) seconds instead of the (1/hz + delta) required until now. Many thanks to: msmith, wpaul, wosch & bde Revision Changes Path 1.85 +18 -10 src/sys/kern/kern_clock.c 1.108 +2 -1 src/sys/conf/options 1.505 +9 -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 Mon Nov 23 02:24:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA26420 for cvs-all-outgoing; Mon, 23 Nov 1998 02:24: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 CAA26364; Mon, 23 Nov 1998 02:24: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 CAA01176; Mon, 23 Nov 1998 02:24:06 -0800 (PST) Date: Mon, 23 Nov 1998 02:24:06 -0800 (PST) Message-Id: <199811231024.CAA01176@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/etc host.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/23 02:24:06 PST Modified files: (Branch: RELENG_2_2) etc host.conf Log: MFC: hosts before bind. This bugs 2.2.x users just as much as 3.x users. :) Revision Changes Path 1.2.10.1 +4 -4 src/etc/host.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 02:47:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA28793 for cvs-all-outgoing; Mon, 23 Nov 1998 02:47: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 CAA28788; Mon, 23 Nov 1998 02:47:07 -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 CAA02321; Mon, 23 Nov 1998 02:47:13 -0800 (PST) Date: Mon, 23 Nov 1998 02:47:13 -0800 (PST) Message-Id: <199811231047.CAA02321@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/xchat Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 02:47:12 PST Modified files: net/xchat Makefile Log: Typo (PORSDIR -> PORTSDIR). Revision Changes Path 1.3 +2 -2 ports/net/xchat/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 02:54:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA29284 for cvs-all-outgoing; Mon, 23 Nov 1998 02: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 CAA29279; Mon, 23 Nov 1998 02:54:24 -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 CAA02522; Mon, 23 Nov 1998 02:54:29 -0800 (PST) Date: Mon, 23 Nov 1998 02:54:29 -0800 (PST) Message-Id: <199811231054.CAA02522@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sbin/ipfw ipfw.8 ipfw.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk joerg 1998/11/23 02:54:29 PST Modified files: sbin/ipfw ipfw.8 ipfw.c Log: Preprocessor support for `ipfw [-q] ... file'. This allows for more flexible ipfw configuration files using `variables' to describe frequently used items in the file, like the local IP address(es), interface names etc. Both m4 and cpp are useful and supported; with m4 being a little more unusual to the common C programmer, things like automatic rule numbering can be achieved fairly easy. While i was at it, i've also untangled some of the ugly style inside main(), and fixed a bug or two (like not being able to use blank lines when running with -q). A typical call with preprocessor invocation looks like ipfw -p m4 -Dhostname=$(hostname) /etc/fwrules Someone should probably add support for this feature to /etc/rc.firewall. Revision Changes Path 1.45 +32 -1 src/sbin/ipfw/ipfw.8 1.61 +113 -14 src/sbin/ipfw/ipfw.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 02:58:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA29647 for cvs-all-outgoing; Mon, 23 Nov 1998 02:58:15 -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 CAA29641; Mon, 23 Nov 1998 02:58:12 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sjx-ca115-47.ix.netcom.com [207.223.162.111]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id CAA17355; Mon, 23 Nov 1998 02:57:03 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id CAA13424; Mon, 23 Nov 1998 02:56:09 -0800 (PST) Date: Mon, 23 Nov 1998 02:56:09 -0800 (PST) Message-Id: <199811231056.CAA13424@silvia.hip.berkeley.edu> To: billf@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199811182002.MAA07619@freefall.freebsd.org> (message from Bill Fumerola on Wed, 18 Nov 1998 12:02:47 -0800 (PST)) Subject: Re: cvs commit: ports/x11-wm/xfce Makefile ports/x11-wm/xfce/files md5 ports/x11-wm/xfce/patches patch-ab patch-ac patch-ad patch-ae patch-aa ports/x11-wm/xfce/pkg PLIST From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Upgrade xfce from 1.2.4->2.0.4, make associated changes. Thanks, but this one stumbles all over itself when installed twice. === ===> xfce-2.1.1 depends on shared library: X11.6 - found mkdir -p /usr/X11R6/lib/X11/XFCE mkdir -p /usr/X11R6/lib/X11/XFCE/doc installing in ./xfce... /usr/bin/install -c -m 0444 ./XFce-en.ad /usr/X11R6/lib/X11/app-defaults/XFce-en /usr/bin/install -c -m 0444 ./XFce-fr.ad /usr/X11R6/lib/X11/app-defaults/XFce-fr /usr/bin/install -c -m 0444 ./XFce-de.ad /usr/X11R6/lib/X11/app-defaults/XFce-de /usr/bin/install -c -m 0444 ./XFce-it.ad /usr/X11R6/lib/X11/app-defaults/XFce-it /usr/bin/install -c -m 0444 ./XFce-es.ad /usr/X11R6/lib/X11/app-defaults/XFce-es /usr/bin/install -c -m 0444 ./XFce-hu.ad /usr/X11R6/lib/X11/app-defaults/XFce-hu /usr/bin/install -c -m 0444 ./XFce-sk.ad /usr/X11R6/lib/X11/app-defaults/XFce-sk /usr/bin/install -c -m 0444 ./XFce-en.ad /usr/X11R6/lib/X11/app-defaults/XFce rm -f /usr/X11R6/man/man1/xfce.1* /usr/bin/install -c -m 0444 xfce.man /usr/X11R6/man/man1/xfce.1 gzip -n /usr/X11R6/man/man1/xfce.1 install.man in xfce done (cd /usr/X11R6/bin; ln -s xfce XFCE); ln: XFCE: File exists *** Error code 1 Stop. installing in ./xfwm... /usr/bin/install -c -s xfwm /usr/X11R6/bin/xfwm install in xfwm done installing in ./xfsound... /usr/bin/install -c -s xfsound /usr/X11R6/bin/xfsound install in xfsound done installing in ./goodies... mkdir -p /usr/X11R6/lib/X11/XFCE/palettes chmod a+w /usr/X11R6/lib/X11/XFCE/palettes cp palettes\/* /usr/X11R6/lib/X11/XFCE/palettes mkdir -p /usr/X11R6/lib/X11/XFCE/help cp -R help\/* /usr/X11R6/lib/X11/XFCE/help chmod -R a+r /usr/X11R6/lib/X11/XFCE/help mkdir -p /usr/X11R6/lib/X11/XFCE/icons cp icons\/* /usr/X11R6/lib/X11/XFCE/icons chmod -R a+r /usr/X11R6/lib/X11/XFCE/icons mkdir -p /usr/X11R6/lib/X11/XFCE/backdrops cp backdrops\/* /usr/X11R6/lib/X11/XFCE/backdrops chmod -R a+r /usr/X11R6/lib/X11/XFCE/backdrops mkdir -p /usr/X11R6/lib/X11/XFCE/sounds cp sounds\/* /usr/X11R6/lib/X11/XFCE/sounds chmod -R a+r /usr/X11R6/lib/X11/XFCE/sounds (cd /usr/X11R6/lib/X11/XFCE; ln -s sample.fvwmrc system.fvwmrc; ln -s sample.fvwm2rc system.fvwm2rc; ln -s sample.xfwmrc system.xfwmrc;) ln: system.fvwmrc: File exists *** Error code 1 Stop. gmake: *** [install] Error 1 *** Error code 2 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. === Can you change a few "ln -s"s to "ln -sf"s? :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 03:12:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA01351 for cvs-all-outgoing; Mon, 23 Nov 1998 03: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 DAA01345; Mon, 23 Nov 1998 03:12:07 -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 DAA02978; Mon, 23 Nov 1998 03:12:13 -0800 (PST) Date: Mon, 23 Nov 1998 03:12:13 -0800 (PST) Message-Id: <199811231112.DAA02978@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-wm/xfce/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 03:12:12 PST Modified files: x11-wm/xfce/pkg PLIST Log: Oops, there was one more missing file.... Revision Changes Path 1.6 +0 -1 ports/x11-wm/xfce/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 03:15:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA01889 for cvs-all-outgoing; Mon, 23 Nov 1998 03:15: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 DAA01883; Mon, 23 Nov 1998 03:15: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 DAA03185; Mon, 23 Nov 1998 03:15:43 -0800 (PST) Date: Mon, 23 Nov 1998 03:15:43 -0800 (PST) Message-Id: <199811231115.DAA03185@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-wm/xfce Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 03:15:43 PST Modified files: x11-wm/xfce Makefile Log: This one is so broken I can't get it to reinstall after deinstall. Mark it broken. Revision Changes Path 1.10 +2 -1 ports/x11-wm/xfce/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 04:05:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA06433 for cvs-all-outgoing; Mon, 23 Nov 1998 04:05: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 EAA06428; Mon, 23 Nov 1998 04:05:45 -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 EAA05852; Mon, 23 Nov 1998 04:05:51 -0800 (PST) Date: Mon, 23 Nov 1998 04:05:51 -0800 (PST) Message-Id: <199811231205.EAA05852@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/acroread Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 04:05:50 PST Modified files: print/acroread Makefile Log: Remove extraneous space that snuck in with previous commit. Revision Changes Path 1.10 +2 -2 ports/print/acroread/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 04:44:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA10100 for cvs-all-outgoing; Mon, 23 Nov 1998 04:44: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 EAA10093; Mon, 23 Nov 1998 04:43:59 -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 EAA07434; Mon, 23 Nov 1998 04:44:04 -0800 (PST) Date: Mon, 23 Nov 1998 04:44:04 -0800 (PST) Message-Id: <199811231244.EAA07434@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/chinese/xcin Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/11/23 04:44:04 PST Modified files: chinese/xcin Makefile Log: We put kcfont on lib/X11/fonts/local now. Revision Changes Path 1.8 +2 -2 ports/chinese/xcin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 04:48:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA10717 for cvs-all-outgoing; Mon, 23 Nov 1998 04:48: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 EAA10708; Mon, 23 Nov 1998 04:48:48 -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 EAA07658; Mon, 23 Nov 1998 04:48:53 -0800 (PST) Date: Mon, 23 Nov 1998 04:48:53 -0800 (PST) Message-Id: <199811231248.EAA07658@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/graphics/ImageMagick Makefile ports/graphics/ImageMagick/files md5 ports/graphics/ImageMagick/patches patch-aa patch-ad ports/graphics/ImageMagick/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/11/23 04:48:53 PST Modified files: graphics/ImageMagick Makefile graphics/ImageMagick/files md5 graphics/ImageMagick/patches patch-ad graphics/ImageMagick/pkg PLIST Added files: graphics/ImageMagick/patches patch-aa Log: Upgrade to version 4.1.4 Revision Changes Path 1.57 +3 -3 ports/graphics/ImageMagick/Makefile 1.34 +1 -1 ports/graphics/ImageMagick/files/md5 1.15 +15 -18 ports/graphics/ImageMagick/patches/patch-ad 1.31 +2 -1 ports/graphics/ImageMagick/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 05:04:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA12113 for cvs-all-outgoing; Mon, 23 Nov 1998 05:04: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 FAA12097; Mon, 23 Nov 1998 05:04:53 -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 FAA08331; Mon, 23 Nov 1998 05:04:59 -0800 (PST) Date: Mon, 23 Nov 1998 05:04:59 -0800 (PST) Message-Id: <199811231304.FAA08331@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/crossm68k/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/11/23 05:04:58 PST Removed files: devel/crossm68k/files md5 Log: Remove empty file. Noticed by: asami To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 05:05:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA12273 for cvs-all-outgoing; Mon, 23 Nov 1998 05:05:07 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA12261; Mon, 23 Nov 1998 05:05:02 -0800 (PST) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id HAA30102; Mon, 23 Nov 1998 07:04:29 -0600 (CST) Date: Mon, 23 Nov 1998 07:04:28 -0600 (CST) From: Steve Price To: Satoshi Asami cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/devel Makefile ports/devel/crossm68k Makefile ports/devel/crossm68k/files md5 ports/devel/crossm68k/patches patch-aa patch-ab patch-ac patch-ad ports/devel/crossm68k/pkg COMMENT DESCR PLIST ports/devel/crossm68k/scripts one-tree-1.4.sh ... In-Reply-To: <199811230558.VAA18698@silvia.hip.berkeley.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, 22 Nov 1998, Satoshi Asami wrote: # * 1.2 +1 -5 ports/devel/crossm68k/files/md5 # # What's up with this file? It's now empty (single newline). It should have been removed. Fixed now. -steve # Satoshi # To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 05:16:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA12931 for cvs-all-outgoing; Mon, 23 Nov 1998 05:16: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 FAA12926; Mon, 23 Nov 1998 05:16:36 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA08734; Mon, 23 Nov 1998 05:16:40 -0800 (PST) Date: Mon, 23 Nov 1998 05:16:40 -0800 (PST) Message-Id: <199811231316.FAA08734@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/libicq/pkg COMMENT ports/devel/libicq/pkg COMMENT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/23 05:16:40 PST Modified files: japanese/libicq/pkg COMMENT devel/libicq/pkg COMMENT Log: Change comment to 'libicq is intended to make it easy to add ICQ communication support to your software.' Revision Changes Path 1.2 +1 -1 ports/japanese/libicq/pkg/COMMENT 1.2 +1 -1 ports/devel/libicq/pkg/COMMENT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 05:19:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA13464 for cvs-all-outgoing; Mon, 23 Nov 1998 05:19: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 FAA13458; Mon, 23 Nov 1998 05:19: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 FAA08897; Mon, 23 Nov 1998 05:19:37 -0800 (PST) Date: Mon, 23 Nov 1998 05:19:37 -0800 (PST) Message-Id: <199811231319.FAA08897@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/editors/emacs20/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/11/23 05:19:37 PST Modified files: editors/emacs20/pkg PLIST Log: Make the package properly create the leim dir Submitted by: joelh PR: 8815 Revision Changes Path 1.22 +1 -0 ports/editors/emacs20/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 05:36:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA14851 for cvs-all-outgoing; Mon, 23 Nov 1998 05:36: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 FAA14846; Mon, 23 Nov 1998 05:36:03 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA09755; Mon, 23 Nov 1998 05:36:09 -0800 (PST) Date: Mon, 23 Nov 1998 05:36:09 -0800 (PST) Message-Id: <199811231336.FAA09755@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/libicq/pkg COMMENT ports/devel/libicq/pkg COMMENT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/23 05:36:09 PST Modified files: japanese/libicq/pkg COMMENT devel/libicq/pkg COMMENT Log: Remove name of package from front. Revision Changes Path 1.3 +1 -1 ports/japanese/libicq/pkg/COMMENT 1.3 +1 -1 ports/devel/libicq/pkg/COMMENT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 05:58:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA17527 for cvs-all-outgoing; Mon, 23 Nov 1998 05: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 FAA17520; Mon, 23 Nov 1998 05:58:51 -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 FAA10999; Mon, 23 Nov 1998 05:58:57 -0800 (PST) Date: Mon, 23 Nov 1998 05:58:57 -0800 (PST) Message-Id: <199811231358.FAA10999@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa cy.c cyreg.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/11/23 05:58:56 PST Modified files: sys/i386/isa cy.c cyreg.h Log: Untangled the Cyclades offsets a little. CY16_RESET and CY_CLEAR_INTR were half of their physical offsets for ISA and 1/4 of their physical offsets for PCI, while all other Cyclades offsets were physical/1 for ISA and physical/2 for PCI. Logically wrong macros were used to scale CY16_RESET and CY_CLEAR_INTR to the correct physical offsets. Fixed some style bugs (mostly long lines). Revision Changes Path 1.74 +8 -8 src/sys/i386/isa/cy.c 1.8 +32 -14 src/sys/i386/isa/cyreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 06:10:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA18718 for cvs-all-outgoing; Mon, 23 Nov 1998 06:10: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 GAA18713; Mon, 23 Nov 1998 06:10:57 -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 GAA11499; Mon, 23 Nov 1998 06:11:02 -0800 (PST) Date: Mon, 23 Nov 1998 06:11:02 -0800 (PST) Message-Id: <199811231411.GAA11499@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/databases/pgaccess Makefile ports/databases/pgaccess/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/11/23 06:11:02 PST Modified files: databases/pgaccess Makefile databases/pgaccess/files md5 Log: upgrade to latest stable version 0.91 Revision Changes Path 1.13 +3 -3 ports/databases/pgaccess/Makefile 1.14 +1 -1 ports/databases/pgaccess/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 Nov 23 06:11:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA18918 for cvs-all-outgoing; Mon, 23 Nov 1998 06:11: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 GAA18913; Mon, 23 Nov 1998 06:11:24 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA11541; Mon, 23 Nov 1998 06:11:30 -0800 (PST) Date: Mon, 23 Nov 1998 06:11:30 -0800 (PST) Message-Id: <199811231411.GAA11541@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports LEGAL Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/11/23 06:11:30 PST Modified files: . LEGAL Log: Add descriptions for ssh2 and gnupg. Revision Changes Path 1.119 +3 -2 ports/LEGAL To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 06:12:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA19042 for cvs-all-outgoing; Mon, 23 Nov 1998 06: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 GAA19036; Mon, 23 Nov 1998 06:12:39 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA11632; Mon, 23 Nov 1998 06:12:44 -0800 (PST) Date: Mon, 23 Nov 1998 06:12:44 -0800 (PST) Message-Id: <199811231412.GAA11632@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/security Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/11/23 06:12:44 PST Modified files: security Makefile Log: Activate gnupg. Revision Changes Path 1.36 +2 -1 ports/security/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 06:12:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA19065 for cvs-all-outgoing; Mon, 23 Nov 1998 06:12: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 GAA19048; Mon, 23 Nov 1998 06:12:40 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA11657; Mon, 23 Nov 1998 06:12:45 -0800 (PST) Date: Mon, 23 Nov 1998 06:12:45 -0800 (PST) Message-Id: <199811231412.GAA11657@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/11/23 06:12:45 PST Modified files: . modules Log: gnupg --> ports/security/gnupg Revision Changes Path 1.2518 +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 Nov 23 06:13:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA19106 for cvs-all-outgoing; Mon, 23 Nov 1998 06:13: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 GAA19101; Mon, 23 Nov 1998 06:13:21 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA11715; Mon, 23 Nov 1998 06:13:26 -0800 (PST) Date: Mon, 23 Nov 1998 06:13:26 -0800 (PST) Message-Id: <199811231413.GAA11715@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/security/gnupg - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/11/23 06:13:26 PST ports/security/gnupg - Imported sources Update of /home/ncvs/ports/security/gnupg In directory freefall.freebsd.org:/x/tmp/cvs-serv11692 Log Message: The GNU Privacy Guard Submitted by: kuriyama@FreeBSD.ORG Status: Vendor Tag: KURIYAMA Release Tags: v0_4_4 N ports/security/gnupg/Makefile N ports/security/gnupg/pkg/COMMENT N ports/security/gnupg/pkg/PLIST N ports/security/gnupg/pkg/DESCR N ports/security/gnupg/files/md5 N ports/security/gnupg/patches/patch-aa N ports/security/gnupg/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 Nov 23 07:08:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA24005 for cvs-all-outgoing; Mon, 23 Nov 1998 07:08:20 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from jade.chc-chimes.com (jade.chc-chimes.com [206.67.97.83]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA23999; Mon, 23 Nov 1998 07:08:18 -0800 (PST) (envelope-from billf@jade.chc-chimes.com) Received: from localhost (billf@localhost) by jade.chc-chimes.com (8.8.8/8.8.8) with SMTP id KAA19975; Mon, 23 Nov 1998 10:07:36 -0500 (EST) (envelope-from billf@jade.chc-chimes.com) Date: Mon, 23 Nov 1998 10:07:36 -0500 (EST) From: Bill Fumerola To: Satoshi Asami cc: sprice@hiwaay.net, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/x11-fm/q3dmenu Makefile In-Reply-To: <199811230556.VAA18692@silvia.hip.berkeley.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, 22 Nov 1998, Satoshi Asami wrote: > * cd /usr/ports > * grep graphics/gql */*/Makefile > * > * Note my dislexia in spelling 'qgl'. :) > > Wasn't that thing imported as qgl initially? Or am I thinking about > something else? Something else, Vanilla imported gtkgl as gtkql, IIRC. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 07:10:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA24283 for cvs-all-outgoing; Mon, 23 Nov 1998 07:10:18 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from jade.chc-chimes.com (jade.chc-chimes.com [206.67.97.83]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA24277; Mon, 23 Nov 1998 07:10:13 -0800 (PST) (envelope-from billf@jade.chc-chimes.com) Received: from localhost (billf@localhost) by jade.chc-chimes.com (8.8.8/8.8.8) with SMTP id KAA20492; Mon, 23 Nov 1998 10:09:32 -0500 (EST) (envelope-from billf@jade.chc-chimes.com) Date: Mon, 23 Nov 1998 10:09:32 -0500 (EST) From: Bill Fumerola To: Satoshi Asami cc: billf@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/x11-wm/xfce Makefile ports/x11-wm/xfce/files md5 ports/x11-wm/xfce/patches patch-ab patch-ac patch-ad patch-ae patch-aa ports/x11-wm/xfce/pkg PLIST In-Reply-To: <199811231056.CAA13424@silvia.hip.berkeley.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Mon, 23 Nov 1998, Satoshi Asami wrote: > * Upgrade xfce from 1.2.4->2.0.4, make associated changes. > > Thanks, but this one stumbles all over itself when installed twice. [snip Makefile spitout] > Can you change a few "ln -s"s to "ln -sf"s? :) Yeah, I'll do that later today. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 07:56:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA28006 for cvs-all-outgoing; Mon, 23 Nov 1998 07:56: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 HAA28001; Mon, 23 Nov 1998 07:56:30 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA03708; Mon, 23 Nov 1998 07:56:35 -0800 (PST) Date: Mon, 23 Nov 1998 07:56:35 -0800 (PST) Message-Id: <199811231556.HAA03708@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/emulators/xsystem35 Makefile ports/emulators/xsystem35/files md5 ports/emulators/xsystem35/patches patch-ab ports/emulators/xsystem35/pkg MESSAGE Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/23 07:56:35 PST Modified files: emulators/xsystem35 Makefile emulators/xsystem35/files md5 emulators/xsystem35/pkg MESSAGE Removed files: emulators/xsystem35/patches patch-ab Log: Update to xsystem-3.5-19981123. typo fix pkg/MESSAGE disappears patches/patch-ab Revision Changes Path 1.4 +5 -2 ports/emulators/xsystem35/Makefile 1.3 +1 -0 ports/emulators/xsystem35/files/md5 1.3 +1 -1 ports/emulators/xsystem35/pkg/MESSAGE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 08:04:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA28878 for cvs-all-outgoing; Mon, 23 Nov 1998 08:04: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 IAA28871; Mon, 23 Nov 1998 08:04: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 IAA04064; Mon, 23 Nov 1998 08:04:25 -0800 (PST) Date: Mon, 23 Nov 1998 08:04:25 -0800 (PST) Message-Id: <199811231604.IAA04064@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/11/23 08:04:24 PST Modified files: . modules Log: make qt141 port accessable after repsoitory copy Revision Changes Path 1.2519 +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 Nov 23 08:10:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA29557 for cvs-all-outgoing; Mon, 23 Nov 1998 08:10: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 IAA29546; Mon, 23 Nov 1998 08:10: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 IAA04341; Mon, 23 Nov 1998 08:10:35 -0800 (PST) Date: Mon, 23 Nov 1998 08:10:35 -0800 (PST) Message-Id: <199811231610.IAA04341@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/editors/emacs20/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/11/23 08:10:34 PST Modified files: editors/emacs20/pkg PLIST Log: Change @mkdir to @exec mkdir so that it actually works Revision Changes Path 1.23 +1 -1 ports/editors/emacs20/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 09:41:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA11065 for cvs-all-outgoing; Mon, 23 Nov 1998 09:41: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 JAA11060; Mon, 23 Nov 1998 09:41:07 -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 JAA09109; Mon, 23 Nov 1998 09:41:12 -0800 (PST) Date: Mon, 23 Nov 1998 09:41:12 -0800 (PST) Message-Id: <199811231741.JAA09109@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-toolkits/qt141 Makefile ports/x11-toolkits/qt141/files md5 ports/x11-toolkits/qt141/patches patch-aa ports/x11-toolkits/qt141/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/11/23 09:41:12 PST Modified files: x11-toolkits/qt141 Makefile x11-toolkits/qt141/files md5 x11-toolkits/qt141/patches patch-aa x11-toolkits/qt141/pkg PLIST Log: The long awaited port of qt141 Thanks Satoshi for your patience ! ;-) Revision Changes Path 1.29 +41 -46 ports/x11-toolkits/qt141/Makefile 1.8 +1 -1 ports/x11-toolkits/qt141/files/md5 1.3 +12 -11 ports/x11-toolkits/qt141/patches/patch-aa 1.15 +357 -1 ports/x11-toolkits/qt141/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 09:43:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA11311 for cvs-all-outgoing; Mon, 23 Nov 1998 09:43: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 JAA11306; Mon, 23 Nov 1998 09:43:34 -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 JAA09454; Mon, 23 Nov 1998 09:43:40 -0800 (PST) Date: Mon, 23 Nov 1998 09:43:40 -0800 (PST) Message-Id: <199811231743.JAA09454@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-toolkits Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/11/23 09:43:40 PST Modified files: x11-toolkits Makefile Log: enable qt141 Revision Changes Path 1.10 +2 -1 ports/x11-toolkits/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 09:47:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA11536 for cvs-all-outgoing; Mon, 23 Nov 1998 09:47: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 JAA11531; Mon, 23 Nov 1998 09:47:36 -0800 (PST) (envelope-from nectar@FreeBSD.org) From: Jacques Vidrine Received: (from nectar@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA09618; Mon, 23 Nov 1998 09:47:42 -0800 (PST) Date: Mon, 23 Nov 1998 09:47:42 -0800 (PST) Message-Id: <199811231747.JAA09618@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/databases/py-PyGreSQL Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nectar 1998/11/23 09:47:42 PST Modified files: databases/py-PyGreSQL Makefile Log: Update of postgresql bumped libpq version number from .1 -> .2 Revision Changes Path 1.10 +2 -2 ports/databases/py-PyGreSQL/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 10:18:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA15063 for cvs-all-outgoing; Mon, 23 Nov 1998 10:18: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 KAA15058; Mon, 23 Nov 1998 10:18:31 -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 KAA11767; Mon, 23 Nov 1998 10:18:37 -0800 (PST) Date: Mon, 23 Nov 1998 10:18:37 -0800 (PST) Message-Id: <199811231818.KAA11767@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-wm/amiwm Makefile ports/x11-wm/amiwm/files md5 ports/x11-wm/amiwm/patches patch-aa ports/x11-wm/amiwm/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/11/23 10:18:37 PST Modified files: x11-wm/amiwm Makefile x11-wm/amiwm/files md5 x11-wm/amiwm/pkg PLIST Added files: x11-wm/amiwm/patches patch-aa Log: Upgrade to 0.20p48. Revision Changes Path 1.4 +5 -5 ports/x11-wm/amiwm/Makefile 1.2 +1 -1 ports/x11-wm/amiwm/files/md5 1.3 +16 -7 ports/x11-wm/amiwm/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 10:20:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA15271 for cvs-all-outgoing; Mon, 23 Nov 1998 10:20: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 KAA15233; Mon, 23 Nov 1998 10: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 KAA11913; Mon, 23 Nov 1998 10:20:07 -0800 (PST) Date: Mon, 23 Nov 1998 10:20:07 -0800 (PST) Message-Id: <199811231820.KAA11913@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/editors/gxedit Makefile ports/editors/gxedit/files md5 ports/editors/gxedit/patches patch-ad patch-aa patch-ab patch-ac ports/editors/gxedit/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/11/23 10:20:07 PST Modified files: editors/gxedit Makefile editors/gxedit/files md5 editors/gxedit/patches patch-aa patch-ab patch-ac editors/gxedit/pkg PLIST Added files: editors/gxedit/patches patch-ad Log: Upgrade to 1.17. Revision Changes Path 1.16 +6 -4 ports/editors/gxedit/Makefile 1.9 +1 -1 ports/editors/gxedit/files/md5 1.5 +16 -14 ports/editors/gxedit/patches/patch-aa 1.5 +10 -14 ports/editors/gxedit/patches/patch-ab 1.3 +4 -13 ports/editors/gxedit/patches/patch-ac 1.2 +2 -0 ports/editors/gxedit/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 10:21:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA15414 for cvs-all-outgoing; Mon, 23 Nov 1998 10:21: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 KAA15405; Mon, 23 Nov 1998 10:21:35 -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 KAA12238; Mon, 23 Nov 1998 10:21:40 -0800 (PST) Date: Mon, 23 Nov 1998 10:21:40 -0800 (PST) Message-Id: <199811231821.KAA12238@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-wm/icewm Makefile ports/x11-wm/icewm/files md5 ports/x11-wm/icewm/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/11/23 10:21:40 PST Modified files: x11-wm/icewm Makefile x11-wm/icewm/files md5 x11-wm/icewm/pkg PLIST Log: Upgrade to 0.9.18. Revision Changes Path 1.23 +3 -3 ports/x11-wm/icewm/Makefile 1.14 +1 -1 ports/x11-wm/icewm/files/md5 1.13 +73 -54 ports/x11-wm/icewm/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 10:22:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA15605 for cvs-all-outgoing; Mon, 23 Nov 1998 10:22: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 KAA15600; Mon, 23 Nov 1998 10:22:48 -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 KAA12436; Mon, 23 Nov 1998 10:22:54 -0800 (PST) Date: Mon, 23 Nov 1998 10:22:54 -0800 (PST) Message-Id: <199811231822.KAA12436@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/ethereal Makefile ports/net/ethereal/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/11/23 10:22:53 PST Modified files: net/ethereal Makefile net/ethereal/files md5 Log: Upgrade to 0.5.0, it can works with gtk11 still :( Revision Changes Path 1.7 +3 -3 ports/net/ethereal/Makefile 1.5 +1 -1 ports/net/ethereal/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 Nov 23 11:29:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA05575 for cvs-all-outgoing; Mon, 23 Nov 1998 11:29: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 LAA05570; Mon, 23 Nov 1998 11:29:20 -0800 (PST) (envelope-from archie@FreeBSD.org) From: Archie Cobbs Received: (from archie@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA15489; Mon, 23 Nov 1998 11:29:58 -0800 (PST) Date: Mon, 23 Nov 1998 11:29:58 -0800 (PST) Message-Id: <199811231929.LAA15489@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/security/skip/patches patch-cm patch-cn patch-co patch-cp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk archie 1998/11/23 11:29:58 PST Added files: security/skip/patches patch-cm patch-cn patch-co patch-cp Log: Fix compile problems under 3.0; haven't tested it with a 3.0 kernel yet. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 12:31:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA12998 for cvs-all-outgoing; Mon, 23 Nov 1998 12:31: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 MAA12990; Mon, 23 Nov 1998 12:31:50 -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 MAA19241; Mon, 23 Nov 1998 12:32:28 -0800 (PST) Date: Mon, 23 Nov 1998 12:32:28 -0800 (PST) Message-Id: <199811232032.MAA19241@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/handbook mirrors.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/23 12:32:28 PST Modified files: handbook mirrors.sgml Log: Add polish mirror. Revision Changes Path 1.97 +7 -1 doc/handbook/mirrors.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 12:48:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA14425 for cvs-all-outgoing; Mon, 23 Nov 1998 12:48: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 MAA14419; Mon, 23 Nov 1998 12:48: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 MAA20804; Mon, 23 Nov 1998 12:49:28 -0800 (PST) Date: Mon, 23 Nov 1998 12:49:28 -0800 (PST) Message-Id: <199811232049.MAA20804@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports INDEX Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 12:49:27 PST Modified files: . INDEX Log: 1,871 ports! Revision Changes Path 1.197 +208 -175 ports/INDEX To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 13:39:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA20485 for cvs-all-outgoing; Mon, 23 Nov 1998 13:39: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 NAA20478; Mon, 23 Nov 1998 13:39:16 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA23529; Mon, 23 Nov 1998 13:39:54 -0800 (PST) Date: Mon, 23 Nov 1998 13:39:54 -0800 (PST) Message-Id: <199811232139.NAA23529@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11/xmascot/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/23 13:39:54 PST Modified files: x11/xmascot/pkg PLIST Log: This is a null commit to record information I forgot to put in previous commit log. PR: ports/7825 Submitted by: NOKUBI Hirotaka Revision Changes Path 1.6 +0 -0 ports/x11/xmascot/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 13:39:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA20712 for cvs-all-outgoing; Mon, 23 Nov 1998 13:39: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 NAA20702; Mon, 23 Nov 1998 13:39:51 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA23630; Mon, 23 Nov 1998 13:40:29 -0800 (PST) Date: Mon, 23 Nov 1998 13:40:29 -0800 (PST) Message-Id: <199811232140.NAA23630@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/textproc/htdig Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1998/11/23 13:40:29 PST Modified files: textproc/htdig Makefile Log: I had a patch that fixed this, then I said "I'll just use sed", and I never updated the Makefile. I was trying to avoid using sed and patch, and just ended up breaking it by my indeciveness. :> It's fixed now, and packages no less. Remind by: Satoshi Revision Changes Path 1.3 +7 -5 ports/textproc/htdig/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 13:41:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA21032 for cvs-all-outgoing; Mon, 23 Nov 1998 13:41: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 NAA21025; Mon, 23 Nov 1998 13:41:42 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA23860; Mon, 23 Nov 1998 13:42:20 -0800 (PST) Date: Mon, 23 Nov 1998 13:42:20 -0800 (PST) Message-Id: <199811232142.NAA23860@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/html2ps Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/23 13:42:20 PST Modified files: print/html2ps Makefile Log: This is a null commit to record information I forgot to put in previous commit log. PR: ports/8450 Submitted by: Stephen J. Roznowski Revision Changes Path 1.6 +1 -1 ports/print/html2ps/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 13:44:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA21266 for cvs-all-outgoing; Mon, 23 Nov 1998 13:44: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 NAA21260; Mon, 23 Nov 1998 13:44:55 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA24062; Mon, 23 Nov 1998 13:45:33 -0800 (PST) Date: Mon, 23 Nov 1998 13:45:33 -0800 (PST) Message-Id: <199811232145.NAA24062@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/libicq/pkg COMMENT ports/devel/libicq/pkg COMMENT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1998/11/23 13:45:32 PST Modified files: japanese/libicq/pkg COMMENT devel/libicq/pkg COMMENT Log: portlint - bring COMMENT under 70 characters Revision Changes Path 1.4 +1 -1 ports/japanese/libicq/pkg/COMMENT 1.4 +1 -1 ports/devel/libicq/pkg/COMMENT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 13:50:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA21977 for cvs-all-outgoing; Mon, 23 Nov 1998 13:50: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 NAA21972; Mon, 23 Nov 1998 13:50:57 -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 NAA24657; Mon, 23 Nov 1998 13:51:34 -0800 (PST) Date: Mon, 23 Nov 1998 13:51:34 -0800 (PST) Message-Id: <199811232151.NAA24657@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11/XFree86 Makefile ports/x11/XFree86/files md5 ports/x11/XFree86/patches patch-af patch-ba patch-bb patch-bc patch-bd patch-be patch-bf ports/x11/XFree86/pkg PLIST PLIST.pc98 ports/x11/XFree86/scripts configure Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jmz 1998/11/23 13:51:34 PST Modified files: x11/XFree86 Makefile x11/XFree86/files md5 x11/XFree86/pkg PLIST PLIST.pc98 x11/XFree86/scripts configure Removed files: x11/XFree86/patches patch-af patch-ba patch-bb patch-bc patch-bd patch-be patch-bf Log: Upgrade to 3.3.3 Revision Changes Path 1.49 +10 -17 ports/x11/XFree86/Makefile 1.17 +2 -5 ports/x11/XFree86/files/md5 1.17 +41 -16 ports/x11/XFree86/pkg/PLIST 1.3 +40 -16 ports/x11/XFree86/pkg/PLIST.pc98 1.38 +43 -26 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 Mon Nov 23 13:51:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA22279 for cvs-all-outgoing; Mon, 23 Nov 1998 13:51: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 NAA22273; Mon, 23 Nov 1998 13:51:43 -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 NAA24742; Mon, 23 Nov 1998 13:52:21 -0800 (PST) Date: Mon, 23 Nov 1998 13:52:21 -0800 (PST) Message-Id: <199811232152.NAA24742@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11/XFree86-contrib Makefile ports/x11/XFree86-contrib/files md5 ports/x11/XFree86-contrib/patches patch-1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jmz 1998/11/23 13:52:21 PST Modified files: x11/XFree86-contrib Makefile x11/XFree86-contrib/files md5 Removed files: x11/XFree86-contrib/patches patch-1 Log: Upgrade to 3.3.3 Revision Changes Path 1.12 +8 -8 ports/x11/XFree86-contrib/Makefile 1.6 +1 -1 ports/x11/XFree86-contrib/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 Nov 23 14:00:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA23204 for cvs-all-outgoing; Mon, 23 Nov 1998 14:00: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 OAA23199; Mon, 23 Nov 1998 14:00:34 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA25489; Mon, 23 Nov 1998 14:01:12 -0800 (PST) Date: Mon, 23 Nov 1998 14:01:12 -0800 (PST) Message-Id: <199811232201.OAA25489@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-wm/blackbox Makefile ports/x11-wm/blackbox/files md5 ports/x11-wm/blackbox/pkg DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1998/11/23 14:01:12 PST Modified files: x11-wm/blackbox Makefile x11-wm/blackbox/files md5 x11-wm/blackbox/pkg DESCR PLIST Log: Upgrade to 0.50.0, update the homepage, add new files to PLIST. PR: ports/8813 Submitted by: Don Croyle Revision Changes Path 1.14 +4 -4 ports/x11-wm/blackbox/Makefile 1.13 +1 -1 ports/x11-wm/blackbox/files/md5 1.2 +1 -1 ports/x11-wm/blackbox/pkg/DESCR 1.5 +2 -0 ports/x11-wm/blackbox/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 14:35:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA26938 for cvs-all-outgoing; Mon, 23 Nov 1998 14:35: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 OAA26932; Mon, 23 Nov 1998 14:35:05 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA27095; Mon, 23 Nov 1998 14:35:43 -0800 (PST) Date: Mon, 23 Nov 1998 14:35:43 -0800 (PST) Message-Id: <199811232235.OAA27095@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-wm/fvwm95-i18n Makefile ports/x11-wm/fvwm95-i18n/files md5 ports/x11-wm/fvwm95-i18n/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/23 14:35:43 PST Modified files: x11-wm/fvwm95-i18n Makefile x11-wm/fvwm95-i18n/files md5 x11-wm/fvwm95-i18n/pkg PLIST Log: * Add a script ``bin/fvwm95.find'', which could be invoked from ``Find'' menu. * Change rc file's font and icon specifications. Submitted by: Yoshishige Arai Revision Changes Path 1.24 +6 -5 ports/x11-wm/fvwm95-i18n/Makefile 1.5 +1 -1 ports/x11-wm/fvwm95-i18n/files/md5 1.13 +1 -0 ports/x11-wm/fvwm95-i18n/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 14:53:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA28679 for cvs-all-outgoing; Mon, 23 Nov 1998 14:53: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 OAA28674; Mon, 23 Nov 1998 14:53:48 -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 OAA28376; Mon, 23 Nov 1998 14:54:26 -0800 (PST) Date: Mon, 23 Nov 1998 14:54:26 -0800 (PST) Message-Id: <199811232254.OAA28376@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-wm/amiwm Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 14:54:26 PST Modified files: x11-wm/amiwm Makefile Log: Mark this broken: ======= ===> Building for amiwm-0.20p48 cc -c -I. -I./libami -DSTDC_HEADERS=1 -DHAVE_SYS_WAIT_H=1 -DHAVE_FCNTL_H=1 -DHAVE_LIMITS_H=1 -DHAVE_SYS_TIME_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYS_SELECT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_SYS_STAT_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_ALLOCA=1 -DRETSIGTYPE=void -DHAVE_WAIT3=1 -DHAVE_SELECT=1 -DHAVE_STRDUP=1 -DHAVE_WAITPID=1 -DHAVE_XSHAPE=1 -DBSD_STYLE_GETTIMEOFDAY=1 -DLAME_ENDIAN=1 -O -pipe -I/usr/X11R6/include main.c main.c: In function `main': main.c:1384: `ShapeNotify' undeclared (first use this function) main.c:1384: (Each undeclared identifier is reported only once main.c:1384: for each function it appears in.) main.c:1385: `XShapeEvent' undeclared (first use this function) main.c:1385: `s' undeclared (first use this function) main.c:1385: parse error before `)' main.c:1386: `ShapeBounding' undeclared (first use this function) *** Error code 1 Stop. Revision Changes Path 1.5 +3 -1 ports/x11-wm/amiwm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 15:09:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA00335 for cvs-all-outgoing; Mon, 23 Nov 1998 15:09: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 PAA00330; Mon, 23 Nov 1998 15:09:32 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA29065; Mon, 23 Nov 1998 15:10:10 -0800 (PST) Date: Mon, 23 Nov 1998 15:10:10 -0800 (PST) Message-Id: <199811232310.PAA29065@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/sharity-light Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1998/11/23 15:10:10 PST Modified files: net/sharity-light Makefile Log: files -> ${FILESDIR} work -> ${WRKDIR} Revision Changes Path 1.9 +3 -3 ports/net/sharity-light/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 15:20:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA01300 for cvs-all-outgoing; Mon, 23 Nov 1998 15:20: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 PAA01295; Mon, 23 Nov 1998 15:20:34 -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 PAA29726; Mon, 23 Nov 1998 15:21:12 -0800 (PST) Date: Mon, 23 Nov 1998 15:21:12 -0800 (PST) Message-Id: <199811232321.PAA29726@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-toolkits/qt141/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 15:21:12 PST Modified files: x11-toolkits/qt141/pkg PLIST Log: Patch up some typos. Note, the manpages should really be in Makefile (or files/manpages), but I don't have time to go fix this now. Revision Changes Path 1.16 +9 -9 ports/x11-toolkits/qt141/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 15:52:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA04654 for cvs-all-outgoing; Mon, 23 Nov 1998 15:52:48 -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 PAA04645; Mon, 23 Nov 1998 15:52:44 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca3-185.ix.netcom.com [209.109.233.185]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id PAA18580; Mon, 23 Nov 1998 15:52:41 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id PAA15142; Mon, 23 Nov 1998 15:51:57 -0800 (PST) Date: Mon, 23 Nov 1998 15:51:57 -0800 (PST) Message-Id: <199811232351.PAA15142@silvia.hip.berkeley.edu> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199811232151.NAA24657@freefall.freebsd.org> (message from Jean-Marc Zucconi on Mon, 23 Nov 1998 13:51:34 -0800 (PST)) Subject: Re: cvs commit: ports/x11/XFree86 Makefile ports/x11/XFree86/files md5 ports/x11/XFree86/patches patch-af patch-ba patch-bb patch-bc patch-bd patch-be patch-bf ports/x11/XFree86/pkg PLIST PLIST.pc98 ports/x11/XFree86/scripts configure From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Upgrade to 3.3.3 Note that this has not been released by XFree86 yet. Since the ports freeze is so near, we got a special copy of the source file so Jean-Marc can update the port (so I can test others). Please wait for the official annoucement from XFree86 to try to build this. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 16:17:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA08981 for cvs-all-outgoing; Mon, 23 Nov 1998 16:17: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 QAA08976; Mon, 23 Nov 1998 16:17:14 -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 QAA02293; Mon, 23 Nov 1998 16:17:51 -0800 (PST) Date: Mon, 23 Nov 1998 16:17:51 -0800 (PST) Message-Id: <199811240017.QAA02293@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/23 16:17:51 PST Modified files: release Makefile Log: Finally eliminate evil version.h smashing in sysinstall. sysinstall gets the initial release information from sysctl. Revision Changes Path 1.431 +2 -6 src/release/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 16:18:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA09059 for cvs-all-outgoing; Mon, 23 Nov 1998 16:18: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 QAA09054; Mon, 23 Nov 1998 16:18: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 QAA02355; Mon, 23 Nov 1998 16:18:57 -0800 (PST) Date: Mon, 23 Nov 1998 16:18:57 -0800 (PST) Message-Id: <199811240018.QAA02355@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall install.c menus.c register.c sysinstall.h version.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/23 16:18:57 PST Modified files: release/sysinstall install.c menus.c register.c sysinstall.h Removed files: release/sysinstall version.h Log: Adios version.h / RELEASE_NAME hack. Do this right. Revision Changes Path 1.219 +21 -7 src/release/sysinstall/install.c 1.173 +4 -4 src/release/sysinstall/menus.c 1.9 +2 -2 src/release/sysinstall/register.c 1.151 +1 -7 src/release/sysinstall/sysinstall.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 16:19:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA09126 for cvs-all-outgoing; Mon, 23 Nov 1998 16: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 QAA09121; Mon, 23 Nov 1998 16:19: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 QAA02443; Mon, 23 Nov 1998 16:20:01 -0800 (PST) Date: Mon, 23 Nov 1998 16:20:01 -0800 (PST) Message-Id: <199811240020.QAA02443@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/23 16:20:01 PST Modified files: (Branch: RELENG_2_2) release Makefile Log: MFC: kill version.h Revision Changes Path 1.246.2.95 +2 -6 src/release/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 16:20:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA09250 for cvs-all-outgoing; Mon, 23 Nov 1998 16:20: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 QAA09245; Mon, 23 Nov 1998 16:20:09 -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 QAA02486; Mon, 23 Nov 1998 16:20:47 -0800 (PST) Date: Mon, 23 Nov 1998 16:20:47 -0800 (PST) Message-Id: <199811240020.QAA02486@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall install.c menus.c register.c sysinstall.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/23 16:20:47 PST Modified files: (Branch: RELENG_2_2) release/sysinstall install.c menus.c register.c sysinstall.h Log: Nuke version.h Revision Changes Path 1.134.2.74 +21 -7 src/release/sysinstall/install.c 1.89.2.81 +4 -4 src/release/sysinstall/menus.c 1.1.2.8 +2 -2 src/release/sysinstall/register.c 1.82.2.55 +1 -6 src/release/sysinstall/sysinstall.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 16:24:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA09710 for cvs-all-outgoing; Mon, 23 Nov 1998 16:24: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 QAA09699; Mon, 23 Nov 1998 16:24:48 -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 QAA02624; Mon, 23 Nov 1998 16:25:26 -0800 (PST) Date: Mon, 23 Nov 1998 16:25:26 -0800 (PST) Message-Id: <199811240025.QAA02624@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall version.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/23 16:25:26 PST Removed files: (Branch: RELENG_2_2) release/sysinstall version.h Log: Whups, forgot to remove this in last commit. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 17:21:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA15215 for cvs-all-outgoing; Mon, 23 Nov 1998 17:21: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 RAA15208; Mon, 23 Nov 1998 17:21:12 -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 RAA05924; Mon, 23 Nov 1998 17:21:50 -0800 (PST) Date: Mon, 23 Nov 1998 17:21:50 -0800 (PST) Message-Id: <199811240121.RAA05924@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11/XFree86 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 17:21:49 PST Modified files: x11/XFree86 Makefile Log: Typo (was making libX11.so symlink in two places). Revision Changes Path 1.50 +2 -2 ports/x11/XFree86/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 17:21:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA15258 for cvs-all-outgoing; Mon, 23 Nov 1998 17:21: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 RAA15251; Mon, 23 Nov 1998 17:21:28 -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 RAA05961; Mon, 23 Nov 1998 17:22:05 -0800 (PST) Date: Mon, 23 Nov 1998 17:22:05 -0800 (PST) Message-Id: <199811240122.RAA05961@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11/XFree86/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 17:22:05 PST Modified files: x11/XFree86/pkg PLIST Log: Restore shlib minors != 0. Revision Changes Path 1.18 +6 -6 ports/x11/XFree86/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 18:46:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA22509 for cvs-all-outgoing; Mon, 23 Nov 1998 18:46: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 SAA22503; Mon, 23 Nov 1998 18:46:29 -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 SAA10225; Mon, 23 Nov 1998 18:47:07 -0800 (PST) Date: Mon, 23 Nov 1998 18:47:07 -0800 (PST) Message-Id: <199811240247.SAA10225@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/ja/handbook porting.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 18:47:07 PST Modified files: ja/handbook porting.sgml Log: Sync with original rev. 1.113. Revision Changes Path 1.50 +312 -312 doc/ja/handbook/porting.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 18:52:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA23208 for cvs-all-outgoing; Mon, 23 Nov 1998 18:52:49 -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 SAA23202; Mon, 23 Nov 1998 18:52:47 -0800 (PST) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sji-ca3-185.ix.netcom.com [209.109.233.185]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id SAA18781; Mon, 23 Nov 1998 18:52:44 -0800 (PST) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id SAA06861; Mon, 23 Nov 1998 18:52:39 -0800 (PST) (envelope-from asami) Date: Mon, 23 Nov 1998 18:52:39 -0800 (PST) Message-Id: <199811240252.SAA06861@bubble.didi.com> To: sprice@hiwaay.net CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: (message from Steve Price on Mon, 23 Nov 1998 07:04:28 -0600 (CST)) Subject: Re: cvs commit: ports/devel Makefile ports/devel/crossm68k Makefile ports/devel/crossm68k/files md5 ports/devel/crossm68k/patches patch-aa patch-ab patch-ac patch-ad ports/devel/crossm68k/pkg COMMENT DESCR PLIST ports/devel/crossm68k/scripts one-tree-1.4.sh ... From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * # What's up with this file? It's now empty (single newline). * * It should have been removed. Fixed now. Um, this is wrong. NO_CHECKSUM is a user variable, not to be set in a Makefile. If you really don't want the checksum to checked, set IGNOREFILES. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 18:59:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA23659 for cvs-all-outgoing; Mon, 23 Nov 1998 18:59: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 SAA23650; Mon, 23 Nov 1998 18:59: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 SAA10812; Mon, 23 Nov 1998 18:59:56 -0800 (PST) Date: Mon, 23 Nov 1998 18:59:56 -0800 (PST) Message-Id: <199811240259.SAA10812@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/11/23 18:59:55 PST Modified files: . modules Log: lv --> ports/textproc/lv Revision Changes Path 1.2520 +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 Nov 23 18:59:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA23979 for cvs-all-outgoing; Mon, 23 Nov 1998 18:59: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 SAA23969; Mon, 23 Nov 1998 18:59:53 -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 TAA10840; Mon, 23 Nov 1998 19:00:31 -0800 (PST) Date: Mon, 23 Nov 1998 19:00:31 -0800 (PST) Message-Id: <199811240300.TAA10840@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/textproc/lv - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/11/23 19:00:31 PST ports/textproc/lv - Imported sources Update of /home/ncvs/ports/textproc/lv In directory freefall.freebsd.org:/c/users/itojun/lv Log Message: lv, multilingual text viewer (like less). Submitted by: sumikawa@kame.net Status: Vendor Tag: SUMIKAWA Release Tags: v440 N ports/textproc/lv/Makefile I ports/textproc/lv/CVS N ports/textproc/lv/files/md5 N ports/textproc/lv/pkg/COMMENT N ports/textproc/lv/pkg/DESCR N ports/textproc/lv/pkg/PLIST N ports/textproc/lv/patches/patch-aa No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 19:01:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA24095 for cvs-all-outgoing; Mon, 23 Nov 1998 19:01: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 TAA24090; Mon, 23 Nov 1998 19:01:19 -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 TAA10927; Mon, 23 Nov 1998 19:01:57 -0800 (PST) Date: Mon, 23 Nov 1998 19:01:57 -0800 (PST) Message-Id: <199811240301.TAA10927@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/textproc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/11/23 19:01:57 PST Modified files: textproc Makefile Log: enable ports/textproc/lv. lv is a multilingual text viewer (like less). Submitted by: sumikawa@kame.net Revision Changes Path 1.34 +2 -1 ports/textproc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 19:04:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA24386 for cvs-all-outgoing; Mon, 23 Nov 1998 19:04:21 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA24380; Mon, 23 Nov 1998 19:04:19 -0800 (PST) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id VAA21828; Mon, 23 Nov 1998 21:04:17 -0600 (CST) Date: Mon, 23 Nov 1998 21:04:17 -0600 (CST) From: Steve Price To: Satoshi Asami cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/devel Makefile ports/devel/crossm68k Makefile ports/devel/crossm68k/files md5 ports/devel/crossm68k/patches patch-aa patch-ab patch-ac patch-ad ports/devel/crossm68k/pkg COMMENT DESCR PLIST ports/devel/crossm68k/scripts one-tree-1.4.sh ... In-Reply-To: <199811240252.SAA06861@bubble.didi.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk There are no DISTFILES, so I guess in this case just removing NO_CHECKSUM should do the trick? -steve On Mon, 23 Nov 1998, Satoshi Asami wrote: # Um, this is wrong. NO_CHECKSUM is a user variable, not to be set in a # Makefile. If you really don't want the checksum to checked, set # IGNOREFILES. # # Satoshi # To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 19:13:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA25022 for cvs-all-outgoing; Mon, 23 Nov 1998 19:13:12 -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 TAA25013; Mon, 23 Nov 1998 19:13:10 -0800 (PST) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sji-ca3-185.ix.netcom.com [209.109.233.185]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id TAA18805; Mon, 23 Nov 1998 19:12:56 -0800 (PST) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id TAA06928; Mon, 23 Nov 1998 19:12:26 -0800 (PST) (envelope-from asami) Date: Mon, 23 Nov 1998 19:12:26 -0800 (PST) Message-Id: <199811240312.TAA06928@bubble.didi.com> To: sprice@hiwaay.net CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: (message from Steve Price on Mon, 23 Nov 1998 21:04:17 -0600 (CST)) Subject: Re: cvs commit: ports/devel Makefile ports/devel/crossm68k Makefile ports/devel/crossm68k/files md5 ports/devel/crossm68k/patches patch-aa patch-ab patch-ac patch-ad ports/devel/crossm68k/pkg COMMENT DESCR PLIST ports/devel/crossm68k/scripts one-tree-1.4.sh ... From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * There are no DISTFILES, so I guess in this case just removing * NO_CHECKSUM should do the trick? I didn't realize the DISTFILES were gone too. Yes, NO_CHECKSUM should definitely go, I don't remember if that will make bsd.port.mk happy. So this is a meta-port with NO_PACKAGE set? Wow. (Doesn't seem very useful.... ;) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 19:16:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA25487 for cvs-all-outgoing; Mon, 23 Nov 1998 19:16:59 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA25478; Mon, 23 Nov 1998 19:16:57 -0800 (PST) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id VAA08739; Mon, 23 Nov 1998 21:16:55 -0600 (CST) Date: Mon, 23 Nov 1998 21:16:55 -0600 (CST) From: Steve Price To: Satoshi Asami cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/devel Makefile ports/devel/crossm68k Makefile ports/devel/crossm68k/files md5 ports/devel/crossm68k/patches patch-aa patch-ab patch-ac patch-ad ports/devel/crossm68k/pkg COMMENT DESCR PLIST ports/devel/crossm68k/scripts one-tree-1.4.sh ... In-Reply-To: <199811240312.TAA06928@bubble.didi.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Mon, 23 Nov 1998, Satoshi Asami wrote: # I didn't realize the DISTFILES were gone too. Yes, NO_CHECKSUM should # definitely go, I don't remember if that will make bsd.port.mk happy. Yes, it seems too. It print outs a message about the missing md5 file and moves merrily along. # So this is a meta-port with NO_PACKAGE set? Wow. (Doesn't seem very # useful.... ;) Probably a good time to talk Jerry again about removing this. Who are we too judge "limited audience". :) -steve # Satoshi # To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 19:17:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA25685 for cvs-all-outgoing; Mon, 23 Nov 1998 19:17:21 -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 TAA25680; Mon, 23 Nov 1998 19:17:17 -0800 (PST) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sji-ca3-185.ix.netcom.com [209.109.233.185]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id TAA18812; Mon, 23 Nov 1998 19:17:09 -0800 (PST) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id TAA06962; Mon, 23 Nov 1998 19:16:46 -0800 (PST) (envelope-from asami) Date: Mon, 23 Nov 1998 19:16:46 -0800 (PST) Message-Id: <199811240316.TAA06962@bubble.didi.com> To: itojun@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199811240300.TAA10840@freefall.freebsd.org> (message from Jun-ichiro Itoh on Mon, 23 Nov 1998 19:00:31 -0800 (PST)) Subject: Re: cvs commit: ports/textproc/lv - Imported sources From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * ports/textproc/lv - Imported sources * lv, multilingual text viewer (like less). If it is indeed a "viewer", it should go to "misc" (like less). :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 19:20:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA26129 for cvs-all-outgoing; Mon, 23 Nov 1998 19:20: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 TAA26086; Mon, 23 Nov 1998 19:20: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 TAA11879; Mon, 23 Nov 1998 19:20:39 -0800 (PST) Date: Mon, 23 Nov 1998 19:20:39 -0800 (PST) Message-Id: <199811240320.TAA11879@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/crossm68k Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/11/23 19:20:39 PST Modified files: devel/crossm68k Makefile Log: Don't use NO_CHECKSUM. Also remove NO_PACKAGE while I'm here since as Satoshi points out, "it doesn't seem very useful to have a meta-port that you can't package". We'll let the world judge whether it is useful to them. Nudged by: asami Revision Changes Path 1.3 +1 -3 ports/devel/crossm68k/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 19:20:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA26161 for cvs-all-outgoing; Mon, 23 Nov 1998 19:20:22 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from coconut.itojun.org (coconut.itojun.org [210.160.95.97]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA26155; Mon, 23 Nov 1998 19:20:16 -0800 (PST) (envelope-from itojun@itojun.org) Received: from localhost (itojun@localhost.itojun.org [127.0.0.1]) by coconut.itojun.org (8.9.1+3.1W/3.7W) with ESMTP id MAA27517; Tue, 24 Nov 1998 12:20:09 +0900 (JST) To: asami@FreeBSD.ORG (Satoshi Asami) cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: asami's message of Mon, 23 Nov 1998 19:16:46 PST. <199811240316.TAA06962@bubble.didi.com> X-Template-Reply-To: itojun@itojun.org X-Template-Return-Receipt-To: itojun@itojun.org X-PGP-Fingerprint: F8 24 B4 2C 8C 98 57 FD 90 5F B4 60 79 54 16 E2 Subject: Re: cvs commit: ports/textproc/lv - Imported sources Date: Tue, 24 Nov 1998 12:20:08 +0900 Message-ID: <27513.911877608@coconut.itojun.org> From: Jun-ichiro itojun Itoh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > * ports/textproc/lv - Imported sources > * lv, multilingual text viewer (like less). >If it is indeed a "viewer", it should go to "misc" (like less). :) oops! could you please perform a repository copy? lv is a viewer, just like less. It also have functionality to convert between various encoding (say, utf-8 to iso-2022-jp) as filter. itojun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 19:27:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA26730 for cvs-all-outgoing; Mon, 23 Nov 1998 19:27:34 -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 TAA26725; Mon, 23 Nov 1998 19:27:23 -0800 (PST) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sji-ca3-185.ix.netcom.com [209.109.233.185]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id TAA18830; Mon, 23 Nov 1998 19:27:17 -0800 (PST) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id TAA07015; Mon, 23 Nov 1998 19:26:45 -0800 (PST) (envelope-from asami) Date: Mon, 23 Nov 1998 19:26:45 -0800 (PST) Message-Id: <199811240326.TAA07015@bubble.didi.com> To: steve@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199811240320.TAA11879@freefall.freebsd.org> (message from Steve Price on Mon, 23 Nov 1998 19:20:39 -0800 (PST)) Subject: Re: cvs commit: ports/devel/crossm68k Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Don't use NO_CHECKSUM. Also remove NO_PACKAGE while I'm here * since as Satoshi points out, "it doesn't seem very useful to * have a meta-port that you can't package". We'll let the world * judge whether it is useful to them. Actually, the ports this one depends on are have NO_PACKAGE set. You need to remove those too. :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 19:33:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA27368 for cvs-all-outgoing; Mon, 23 Nov 1998 19:33:59 -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 TAA27362; Mon, 23 Nov 1998 19:33:57 -0800 (PST) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sji-ca3-185.ix.netcom.com [209.109.233.185]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id TAA18837; Mon, 23 Nov 1998 19:33:30 -0800 (PST) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id TAA07031; Mon, 23 Nov 1998 19:32:36 -0800 (PST) (envelope-from asami) Date: Mon, 23 Nov 1998 19:32:36 -0800 (PST) Message-Id: <199811240332.TAA07031@bubble.didi.com> To: itojun@itojun.org CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <27513.911877608@coconut.itojun.org> (message from Jun-ichiro itojun Itoh on Tue, 24 Nov 1998 12:20:08 +0900) Subject: Re: cvs commit: ports/textproc/lv - Imported sources From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * oops! could you please perform a repository copy? There is no need for that, there isn't any history to preserve. :) Just go ahead and cvs remove / cvs import again. * lv is a viewer, just like less. It also have functionality to convert * between various encoding (say, utf-8 to iso-2022-jp) as filter. Hmm. We usually put ports that can deal with various encodings into the natural language categories. Does this work for more than just Japanese? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 19:36:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA27548 for cvs-all-outgoing; Mon, 23 Nov 1998 19:36: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 TAA27541; Mon, 23 Nov 1998 19:36:13 -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 TAA12551; Mon, 23 Nov 1998 19:36:51 -0800 (PST) Date: Mon, 23 Nov 1998 19:36:51 -0800 (PST) Message-Id: <199811240336.TAA12551@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/m68kbinutils Makefile ports/devel/m68kgcc Makefile ports/devel/m68kgdb Makefile ports/devel/m68knewlib Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/11/23 19:36:50 PST Modified files: devel/m68kbinutils Makefile devel/m68kgcc Makefile devel/m68kgdb Makefile devel/m68knewlib Makefile Log: Remove NO_PACKAGE from these too. Noticed by: asami Revision Changes Path 1.4 +1 -2 ports/devel/m68kbinutils/Makefile 1.6 +1 -2 ports/devel/m68kgcc/Makefile 1.6 +1 -2 ports/devel/m68kgdb/Makefile 1.4 +1 -2 ports/devel/m68knewlib/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 19:37:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA27750 for cvs-all-outgoing; Mon, 23 Nov 1998 19:37: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 TAA27742; Mon, 23 Nov 1998 19:37: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 TAA12604; Mon, 23 Nov 1998 19:38:16 -0800 (PST) Date: Mon, 23 Nov 1998 19:38:16 -0800 (PST) Message-Id: <199811240338.TAA12604@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/databases/mysql322/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 19:38:16 PST Modified files: databases/mysql322/pkg PLIST Log: Add shlib minor != 0. Revision Changes Path 1.16 +1 -1 ports/databases/mysql322/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 19:39:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA27876 for cvs-all-outgoing; Mon, 23 Nov 1998 19:39:17 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from coconut.itojun.org (coconut.itojun.org [210.160.95.97]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA27866; Mon, 23 Nov 1998 19:39:13 -0800 (PST) (envelope-from itojun@itojun.org) Received: from localhost (itojun@localhost.itojun.org [127.0.0.1]) by coconut.itojun.org (8.9.1+3.1W/3.7W) with ESMTP id MAA27809; Tue, 24 Nov 1998 12:39:10 +0900 (JST) To: asami@FreeBSD.ORG (Satoshi Asami) cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: asami's message of Mon, 23 Nov 1998 19:32:36 PST. <199811240332.TAA07031@bubble.didi.com> X-Template-Reply-To: itojun@itojun.org X-Template-Return-Receipt-To: itojun@itojun.org X-PGP-Fingerprint: F8 24 B4 2C 8C 98 57 FD 90 5F B4 60 79 54 16 E2 Subject: Re: cvs commit: ports/textproc/lv - Imported sources Date: Tue, 24 Nov 1998 12:39:10 +0900 Message-ID: <27805.911878750@coconut.itojun.org> From: Jun-ichiro itojun Itoh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > * lv is a viewer, just like less. It also have functionality to convert > * between various encoding (say, utf-8 to iso-2022-jp) as filter. >Hmm. We usually put ports that can deal with various encodings into >the natural language categories. Does this work for more than just >Japanese? yes it does. which category do you like the most? itojun -- from manpage coding-system: a: auto-select (only for input stream) c: iso-2022-cn j: iso-2022-jp k: iso-2022-kr ec: euc-china ej: euc-japan ek: euc-korea et: euc-taiwan u7: UTF-7 u8: UTF-8 l1..9: iso-8859-1..9 s: shift-jis b: big5 h: HZ r: raw mode To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 19:48:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA28847 for cvs-all-outgoing; Mon, 23 Nov 1998 19:48: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 TAA28842; Mon, 23 Nov 1998 19:48:53 -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 TAA13054; Mon, 23 Nov 1998 19:49:31 -0800 (PST) Date: Mon, 23 Nov 1998 19:49:31 -0800 (PST) Message-Id: <199811240349.TAA13054@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/xipmsg Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/11/23 19:49:31 PST Modified files: net/xipmsg Makefile Log: original distribution URL and maintainer email address has updated. PR: 8825 Submitted by: candy@kgc.co.jp Revision Changes Path 1.2 +3 -3 ports/net/xipmsg/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 19:59:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA29831 for cvs-all-outgoing; Mon, 23 Nov 1998 19:59:23 -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 TAA29822; Mon, 23 Nov 1998 19:59:19 -0800 (PST) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sji-ca3-185.ix.netcom.com [209.109.233.185]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id TAA18857; Mon, 23 Nov 1998 19:59:02 -0800 (PST) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id TAA07111; Mon, 23 Nov 1998 19:58:02 -0800 (PST) (envelope-from asami) Date: Mon, 23 Nov 1998 19:58:02 -0800 (PST) Message-Id: <199811240358.TAA07111@bubble.didi.com> To: itojun@itojun.org CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <27805.911878750@coconut.itojun.org> (message from Jun-ichiro itojun Itoh on Tue, 24 Nov 1998 12:39:10 +0900) Subject: Re: cvs commit: ports/textproc/lv - Imported sources From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * yes it does. which category do you like the most? "converters"? :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 20:37:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA03533 for cvs-all-outgoing; Mon, 23 Nov 1998 20:37: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 UAA03528; Mon, 23 Nov 1998 20:37:36 -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 UAA15324; Mon, 23 Nov 1998 20:38:14 -0800 (PST) Date: Mon, 23 Nov 1998 20:38:14 -0800 (PST) Message-Id: <199811240438.UAA15324@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/textproc Makefile ports/textproc/lv Makefile ports/textproc/lv/files md5 ports/textproc/lv/patches patch-aa ports/textproc/lv/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/11/23 20:38:13 PST Modified files: textproc Makefile Removed files: textproc/lv Makefile textproc/lv/files md5 textproc/lv/patches patch-aa textproc/lv/pkg COMMENT DESCR PLIST Log: move ports/texproc/lv to ports/misc. Suggested by: asami Revision Changes Path 1.35 +1 -2 ports/textproc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 20:41:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA03976 for cvs-all-outgoing; Mon, 23 Nov 1998 20:41: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 UAA03969; Mon, 23 Nov 1998 20:41:57 -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 UAA15652; Mon, 23 Nov 1998 20:42:35 -0800 (PST) Date: Mon, 23 Nov 1998 20:42:35 -0800 (PST) Message-Id: <199811240442.UAA15652@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/11/23 20:42:35 PST Modified files: . modules Log: to move "lv" from ports/textproc/lv to ports/misc/lv, removed module name "lv" from CVSROOT/modules once. Revision Changes Path 1.2521 +1 -2 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 20:43:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA04153 for cvs-all-outgoing; Mon, 23 Nov 1998 20:43: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 UAA04147; Mon, 23 Nov 1998 20:43:51 -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 UAA15781; Mon, 23 Nov 1998 20:44:29 -0800 (PST) Date: Mon, 23 Nov 1998 20:44:29 -0800 (PST) Message-Id: <199811240444.UAA15781@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/11/23 20:44:29 PST Modified files: . modules Log: lv --> ports/misc/lv Revision Changes Path 1.2522 +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 Nov 23 20:44:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA04235 for cvs-all-outgoing; Mon, 23 Nov 1998 20:44: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 UAA04228; Mon, 23 Nov 1998 20:44:22 -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 UAA15830; Mon, 23 Nov 1998 20:45:00 -0800 (PST) Date: Mon, 23 Nov 1998 20:45:00 -0800 (PST) Message-Id: <199811240445.UAA15830@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/misc/lv - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/11/23 20:45:00 PST ports/misc/lv - Imported sources Update of /home/ncvs/ports/misc/lv In directory freefall.freebsd.org:/c/users/itojun/lv Log Message: lv, a multilingual text file viewer. (commited into ports/textproc/lv once, but moved to ports/misc/lv) Submitted by: sumikawa@kame.net Move suggested by: asami Status: Vendor Tag: SUMIKAWA Release Tags: v440 N ports/misc/lv/Makefile I ports/misc/lv/CVS N ports/misc/lv/files/md5 N ports/misc/lv/pkg/COMMENT N ports/misc/lv/pkg/DESCR N ports/misc/lv/pkg/PLIST N ports/misc/lv/patches/patch-aa No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 20:46:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA04395 for cvs-all-outgoing; Mon, 23 Nov 1998 20:46: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 UAA04390; Mon, 23 Nov 1998 20:46:31 -0800 (PST) (envelope-from smace@FreeBSD.org) From: Scott Mace Received: (from smace@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA15911; Mon, 23 Nov 1998 20:47:09 -0800 (PST) Date: Mon, 23 Nov 1998 20:47:09 -0800 (PST) Message-Id: <199811240447.UAA15911@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/news/trn/patches patch-ad Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk smace 1998/11/23 20:47:09 PST Added files: news/trn/patches patch-ad Log: Bypass a sanity check that see if stdin is closed in Configure script. Submitted by: asami To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 20:46:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA04549 for cvs-all-outgoing; Mon, 23 Nov 1998 20:46: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 UAA04399; Mon, 23 Nov 1998 20:46:33 -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 UAA15936; Mon, 23 Nov 1998 20:47:11 -0800 (PST) Date: Mon, 23 Nov 1998 20:47:11 -0800 (PST) Message-Id: <199811240447.UAA15936@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/misc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/11/23 20:47:10 PST Modified files: misc Makefile Log: enable ports/misc/lv, multilingual file viewer. (once imported into ports/textproc/lv, but moved to ports/misc/lv) Submitted by: sumikawa@kame.net Move suggested by: asami Revision Changes Path 1.175 +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 Nov 23 20:48:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA04673 for cvs-all-outgoing; Mon, 23 Nov 1998 20:48: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 UAA04668; Mon, 23 Nov 1998 20:48:43 -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 UAA16024; Mon, 23 Nov 1998 20:49:21 -0800 (PST) Date: Mon, 23 Nov 1998 20:49:21 -0800 (PST) Message-Id: <199811240449.UAA16024@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/misc/lv Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/11/23 20:49:21 PST Modified files: misc/lv Makefile Log: Makefile comment change. Revision Changes Path 1.2 +3 -3 ports/misc/lv/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 20:55:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA05507 for cvs-all-outgoing; Mon, 23 Nov 1998 20:55:09 -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 UAA05500; Mon, 23 Nov 1998 20:55:05 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (IDENT:WHAT_THE_HELL_YOU_LOOKING_AT_@d60-147.leach.ucdavis.edu [169.237.60.147]) by relay.nuxi.com (8.9.1/8.9.1) with ESMTP id UAA13704; Mon, 23 Nov 1998 20:55:03 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.1/8.9.1) id EAA07840; Tue, 24 Nov 1998 04:55:02 GMT (envelope-from obrien) Message-ID: <19981123205502.A11237@nuxi.com> Date: Mon, 23 Nov 1998 20:55:02 -0800 From: "David O'Brien" To: Seiichirou Hiraoka , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/deskutils/xmulti - Imported sources Reply-To: obrien@NUXI.com References: <199811230252.SAA10198@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199811230252.SAA10198@freefall.freebsd.org>; from Seiichirou Hiraoka on Sun, Nov 22, 1998 at 06:52:45PM -0800 X-Operating-System: FreeBSD 3.0-CURRENT 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 On Sun, Nov 22, 1998 at 06:52:45PM -0800, Seiichirou Hiraoka wrote: > Log Message: > Initial Import xmulti. Hi Seiichirou, It is customary to add the contents of pkg/DESCR here (or a smaller version) so people know what the new port is about. Enjoy! -- -- 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 Nov 23 21:08:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA06998 for cvs-all-outgoing; Mon, 23 Nov 1998 21: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 VAA06993; Mon, 23 Nov 1998 21:08:29 -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 VAA16596; Mon, 23 Nov 1998 21:09:07 -0800 (PST) Date: Mon, 23 Nov 1998 21:09:07 -0800 (PST) Message-Id: <199811240509.VAA16596@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/databases/postgresql Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/23 21:09:06 PST Modified files: databases/postgresql Makefile Log: Add PKGNAME without the "v" in version number. Revision Changes Path 1.30 +2 -1 ports/databases/postgresql/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Nov 23 23:41:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA18557 for cvs-all-outgoing; Mon, 23 Nov 1998 23:41: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 XAA18551; Mon, 23 Nov 1998 23:41:47 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA23531; Mon, 23 Nov 1998 23:42:25 -0800 (PST) Date: Mon, 23 Nov 1998 23:42:25 -0800 (PST) Message-Id: <199811240742.XAA23531@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/deskutils/xmulti Makefile ports/deskutils/xmulti/pkg COMMENT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/23 23:42:24 PST Modified files: deskutils/xmulti Makefile deskutils/xmulti/pkg COMMENT Log: Changes CATEGORY from deskutils to games. Fix typo pkg/COMMENT 'To Heart' not 'Two Heart' Revision Changes Path 1.2 +2 -2 ports/deskutils/xmulti/Makefile 1.2 +1 -1 ports/deskutils/xmulti/pkg/COMMENT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 00:14:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA21411 for cvs-all-outgoing; Tue, 24 Nov 1998 00:14: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 AAA21406; Tue, 24 Nov 1998 00:14:31 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA26407; Tue, 24 Nov 1998 00:15:09 -0800 (PST) Date: Tue, 24 Nov 1998 00:15:09 -0800 (PST) Message-Id: <199811240815.AAA26407@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libc/sys Makefile.inc Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1998/11/24 00:15:09 PST Modified files: lib/libc/sys Makefile.inc Log: Enable aio_read(2). Revision Changes Path 1.57 +2 -2 src/lib/libc/sys/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 00:22:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA21907 for cvs-all-outgoing; Tue, 24 Nov 1998 00:22: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 AAA21902; Tue, 24 Nov 1998 00:22:14 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA26877; Tue, 24 Nov 1998 00:22:52 -0800 (PST) Date: Tue, 24 Nov 1998 00:22:52 -0800 (PST) Message-Id: <199811240822.AAA26877@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/24 00:22:51 PST Modified files: . modules Log: Remove xmulti & xhime. Revision Changes Path 1.2523 +1 -3 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 00:34:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA22943 for cvs-all-outgoing; Tue, 24 Nov 1998 00:34: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 AAA22938; Tue, 24 Nov 1998 00:34:22 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA27902; Tue, 24 Nov 1998 00:35:00 -0800 (PST) Date: Tue, 24 Nov 1998 00:35:00 -0800 (PST) Message-Id: <199811240835.AAA27902@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/deskutils/xhime Makefile ports/deskutils/xhime/files md5 ports/deskutils/xhime/patches patch-aa ports/deskutils/xhime/pkg COMMENT DESCR PLIST ports/deskutils/xmulti Makefile ports/deskutils/xmulti/files md5 ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/24 00:34:59 PST Removed files: deskutils/xhime Makefile deskutils/xhime/files md5 deskutils/xhime/patches patch-aa deskutils/xhime/pkg COMMENT DESCR PLIST deskutils/xmulti Makefile deskutils/xmulti/files md5 deskutils/xmulti/patches patch-aa deskutils/xmulti/pkg COMMENT DESCR PLIST Log: Remove xhime,xmulti. Change CATEGORIES from deskutils to games. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 00:45:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA23871 for cvs-all-outgoing; Tue, 24 Nov 1998 00: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 AAA23866; Tue, 24 Nov 1998 00:45:18 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA28406; Tue, 24 Nov 1998 00:45:56 -0800 (PST) Date: Tue, 24 Nov 1998 00:45:56 -0800 (PST) Message-Id: <199811240845.AAA28406@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/24 00:45:55 PST Modified files: . modules Log: xhime --> ports/games/xhime Revision Changes Path 1.2524 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 00:49:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA24251 for cvs-all-outgoing; Tue, 24 Nov 1998 00:49: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 AAA24246; Tue, 24 Nov 1998 00:49:07 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA28596; Tue, 24 Nov 1998 00:49:45 -0800 (PST) Date: Tue, 24 Nov 1998 00:49:45 -0800 (PST) Message-Id: <199811240849.AAA28596@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/games/xhime - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/24 00:49:45 PST ports/games/xhime - Imported sources Update of /home/ncvs/ports/games/xhime In directory freefall.freebsd.org:/c/users/flathill/xhime Log Message: reImport xhime. Resident Himechan for X Window System This was registered in ports/deskutils/xhime. But CATEGORIES was wrong. Status: Vendor Tag: FLATHILL Release Tags: xhime_1_15 I ports/games/xhime/CVS N ports/games/xhime/Makefile I ports/games/xhime/files/CVS N ports/games/xhime/files/md5 I ports/games/xhime/patches/CVS N ports/games/xhime/patches/patch-aa I ports/games/xhime/pkg/CVS N ports/games/xhime/pkg/COMMENT N ports/games/xhime/pkg/DESCR N ports/games/xhime/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 00:53:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA24624 for cvs-all-outgoing; Tue, 24 Nov 1998 00:53: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 AAA24619; Tue, 24 Nov 1998 00:53:17 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA29068; Tue, 24 Nov 1998 00:53:55 -0800 (PST) Date: Tue, 24 Nov 1998 00:53:55 -0800 (PST) Message-Id: <199811240853.AAA29068@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/deskutils Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/24 00:53:54 PST Modified files: deskutils Makefile Log: Remove xhime,xmulti Revision Changes Path 1.6 +1 -3 ports/deskutils/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 01:11:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA26163 for cvs-all-outgoing; Tue, 24 Nov 1998 01:11: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 BAA26158; Tue, 24 Nov 1998 01:11:09 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA29868; Tue, 24 Nov 1998 01:11:47 -0800 (PST) Date: Tue, 24 Nov 1998 01:11:47 -0800 (PST) Message-Id: <199811240911.BAA29868@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/24 01:11:46 PST Modified files: . modules Log: xmulti --> ports/games/xmulti Revision Changes Path 1.2525 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 01:13:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA26349 for cvs-all-outgoing; Tue, 24 Nov 1998 01:13: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 BAA26343; Tue, 24 Nov 1998 01:13:30 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA00103; Tue, 24 Nov 1998 01:14:08 -0800 (PST) Date: Tue, 24 Nov 1998 01:14:08 -0800 (PST) Message-Id: <199811240914.BAA00103@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/games/xmulti - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/24 01:14:08 PST ports/games/xmulti - Imported sources Update of /home/ncvs/ports/games/xmulti In directory freefall.freebsd.org:/c/users/flathill/xmulti Log Message: reImport xmulti. a X11 mascot based on gal-game "To Heart" This was registered in ports/deskutils/xmulti. But CATEGORIES was wrong. Status: Vendor Tag: TORU Release Tags: xmulti_2_00_beta4 N ports/games/xmulti/Makefile I ports/games/xmulti/CVS N ports/games/xmulti/files/md5 N ports/games/xmulti/pkg/COMMENT N ports/games/xmulti/pkg/DESCR N ports/games/xmulti/pkg/PLIST N ports/games/xmulti/patches/patch-aa No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 01:15:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA26544 for cvs-all-outgoing; Tue, 24 Nov 1998 01:15: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 BAA26539; Tue, 24 Nov 1998 01:15:15 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA00252; Tue, 24 Nov 1998 01:15:53 -0800 (PST) Date: Tue, 24 Nov 1998 01:15:53 -0800 (PST) Message-Id: <199811240915.BAA00252@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/games Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/24 01:15:53 PST Modified files: games Makefile Log: Add SUBDIR xmulti and xhime Revision Changes Path 1.170 +3 -1 ports/games/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 01:21:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA27187 for cvs-all-outgoing; Tue, 24 Nov 1998 01:21: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 BAA27176; Tue, 24 Nov 1998 01:21:10 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA00572; Tue, 24 Nov 1998 01:21:48 -0800 (PST) Date: Tue, 24 Nov 1998 01:21:48 -0800 (PST) Message-Id: <199811240921.BAA00572@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports LEGAL Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/24 01:21:48 PST Modified files: . LEGAL Log: Fix following. ports/deskutils/xhime to ports/games/xhime ports/misc/glimpse to ports/textproc/glimpse ports/x11/sharefonts to ports/x11-fonts/sharefonts Revision Changes Path 1.120 +4 -4 ports/LEGAL To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 01:30:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA28264 for cvs-all-outgoing; Tue, 24 Nov 1998 01:30: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 BAA28259; Tue, 24 Nov 1998 01:30:19 -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 BAA01274; Tue, 24 Nov 1998 01:30:56 -0800 (PST) Date: Tue, 24 Nov 1998 01:30:56 -0800 (PST) Message-Id: <199811240930.BAA01274@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/teTeX-beta Makefile ports/print/teTeX-beta/files md5 ports/print/teTeX-beta/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/11/24 01:30:56 PST Modified files: print/teTeX-beta Makefile print/teTeX-beta/files md5 print/teTeX-beta/pkg PLIST Log: Upgrade to 981113. Revision Changes Path 1.29 +2 -4 ports/print/teTeX-beta/Makefile 1.13 +2 -2 ports/print/teTeX-beta/files/md5 1.14 +8 -10 ports/print/teTeX-beta/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 Nov 24 02:09:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA01590 for cvs-all-outgoing; Tue, 24 Nov 1998 02:09: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 CAA01583; Tue, 24 Nov 1998 02:09: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 CAA03588; Tue, 24 Nov 1998 02:10:24 -0800 (PST) Date: Tue, 24 Nov 1998 02:10:24 -0800 (PST) Message-Id: <199811241010.CAA03588@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-toolkits/pmw Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/11/24 02:10:24 PST Modified files: x11-toolkits/pmw Makefile Log: Create installation directory first. Revision Changes Path 1.4 +2 -1 ports/x11-toolkits/pmw/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 02:11:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA02005 for cvs-all-outgoing; Tue, 24 Nov 1998 02:11: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 CAA02000; Tue, 24 Nov 1998 02:11:50 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA03758; Tue, 24 Nov 1998 02:12:28 -0800 (PST) Date: Tue, 24 Nov 1998 02:12:28 -0800 (PST) Message-Id: <199811241012.CAA03758@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/audio/mikmod Makefile ports/audio/mikmod/files config.sh patch-s3mvolslides.diff md5 ports/audio/mikmod/patches patch-aa ports/audio/mikmod/pkg DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/24 02:12:28 PST Modified files: audio/mikmod Makefile audio/mikmod/files md5 audio/mikmod/patches patch-aa audio/mikmod/pkg DESCR PLIST Added files: audio/mikmod/files config.sh patch-s3mvolslides.diff Log: Update to mikmod-3.0.4. Changes pkg/COMMENT Revision Changes Path 1.6 +22 -12 ports/audio/mikmod/Makefile 1.3 +1 -1 ports/audio/mikmod/files/md5 1.3 +92 -42 ports/audio/mikmod/patches/patch-aa 1.3 +3 -4 ports/audio/mikmod/pkg/DESCR 1.5 +9 -5 ports/audio/mikmod/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 Nov 24 02:23:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA03004 for cvs-all-outgoing; Tue, 24 Nov 1998 02:23: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 CAA02997; Tue, 24 Nov 1998 02:23:08 -0800 (PST) (envelope-from stb@FreeBSD.org) From: Stefan Bethke Received: (from stb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA04707; Tue, 24 Nov 1998 02:23:46 -0800 (PST) Date: Tue, 24 Nov 1998 02:23:46 -0800 (PST) Message-Id: <199811241023.CAA04707@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk stb 1998/11/24 02:23:46 PST Modified files: . modules Log: netatalk-asun --> ports/net/netatalk-asun Revision Changes Path 1.2526 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 02:23:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA03219 for cvs-all-outgoing; Tue, 24 Nov 1998 02:23: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 CAA03214; Tue, 24 Nov 1998 02:23:49 -0800 (PST) (envelope-from stb@FreeBSD.org) From: Stefan Bethke Received: (from stb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA04754; Tue, 24 Nov 1998 02:24:27 -0800 (PST) Date: Tue, 24 Nov 1998 02:24:27 -0800 (PST) Message-Id: <199811241024.CAA04754@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/netatalk-asun - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk stb 1998/11/24 02:24:27 PST ports/net/netatalk-asun - Imported sources Update of /home/ncvs/ports/net/netatalk-asun In directory freefall.freebsd.org:/c/users/stb/netatalk+asun Log Message: netatalk-asun - File and Print server for AppleTalk, enhanced by Adrian Sun Status: Vendor Tag: UMICH_ASUN Release Tags: netatalk_1_4b2_asun_2_1_0 N ports/net/netatalk-asun/Makefile I ports/net/netatalk-asun/CVS N ports/net/netatalk-asun/files/md5 N ports/net/netatalk-asun/patches/patch-ac N ports/net/netatalk-asun/patches/patch-ab N ports/net/netatalk-asun/patches/patch-aa N ports/net/netatalk-asun/patches/patch-ba N ports/net/netatalk-asun/patches/patch-bb N ports/net/netatalk-asun/patches/patch-bc N ports/net/netatalk-asun/patches/patch-bd N ports/net/netatalk-asun/patches/patch-ad N ports/net/netatalk-asun/patches/patch-ae N ports/net/netatalk-asun/patches/patch-af N ports/net/netatalk-asun/patches/patch-ag N ports/net/netatalk-asun/patches/patch-ak N ports/net/netatalk-asun/pkg/COMMENT N ports/net/netatalk-asun/pkg/DESCR N ports/net/netatalk-asun/pkg/PLIST N ports/net/netatalk-asun/pkg/INSTALL No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 02:51:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA05557 for cvs-all-outgoing; Tue, 24 Nov 1998 02:51:54 -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 CAA05540; Tue, 24 Nov 1998 02:51:50 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca3-185.ix.netcom.com [209.109.233.185]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id CAA19271; Tue, 24 Nov 1998 02:51:30 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id CAA20335; Tue, 24 Nov 1998 02:51:10 -0800 (PST) Date: Tue, 24 Nov 1998 02:51:10 -0800 (PST) Message-Id: <199811241051.CAA20335@silvia.hip.berkeley.edu> To: ports@FreeBSD.ORG CC: committers@FreeBSD.ORG Subject: Ports freeze at Nov 25th 9PM PST From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ...for 2.2.8R. It should be something like 5AM of 26th in UTC. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 02:56:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA06139 for cvs-all-outgoing; Tue, 24 Nov 1998 02:56: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 CAA06131; Tue, 24 Nov 1998 02:56:16 -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 CAA06647; Tue, 24 Nov 1998 02:56:54 -0800 (PST) Date: Tue, 24 Nov 1998 02:56:54 -0800 (PST) Message-Id: <199811241056.CAA06647@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/handbook porting.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/24 02:56:53 PST Modified files: handbook porting.sgml Log: Add __FreeBSD_version values for 2.2.8R onwards. Revision Changes Path 1.117 +4 -2 doc/handbook/porting.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 05:18:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA21595 for cvs-all-outgoing; Tue, 24 Nov 1998 05:18: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 FAA21590; Tue, 24 Nov 1998 05:18:54 -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 FAA14249; Tue, 24 Nov 1998 05:19:32 -0800 (PST) Date: Tue, 24 Nov 1998 05:19:32 -0800 (PST) Message-Id: <199811241319.FAA14249@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/editors/staroffice Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/24 05:19:32 PST Modified files: editors/staroffice Makefile Log: {SED} -> ${SED} Revision Changes Path 1.9 +2 -2 ports/editors/staroffice/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 06:04:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA25750 for cvs-all-outgoing; Tue, 24 Nov 1998 06:04: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 GAA25744; Tue, 24 Nov 1998 06:04:38 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA16109; Tue, 24 Nov 1998 06:05:16 -0800 (PST) Date: Tue, 24 Nov 1998 06:05:16 -0800 (PST) Message-Id: <199811241405.GAA16109@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/gtk Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/24 06:05:15 PST Modified files: japanese/gtk Makefile Log: Switch the Maintainer. Revision Changes Path 1.2 +2 -2 ports/japanese/gtk/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 06:13:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA26853 for cvs-all-outgoing; Tue, 24 Nov 1998 06:13: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 GAA26751; Tue, 24 Nov 1998 06:13:09 -0800 (PST) (envelope-from stb@FreeBSD.org) From: Stefan Bethke Received: (from stb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA16497; Tue, 24 Nov 1998 06:13:48 -0800 (PST) Date: Tue, 24 Nov 1998 06:13:48 -0800 (PST) Message-Id: <199811241413.GAA16497@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/netatalk-asun/patches patch-ah patch-aa patch-ab patch-ac patch-ad Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk stb 1998/11/24 06:13:47 PST Modified files: net/netatalk-asun/patches patch-aa patch-ab patch-ac Added files: net/netatalk-asun/patches patch-ah Removed files: net/netatalk-asun/patches patch-ad Log: - obey CFLAGS - put pid files in /var/run - make start-up script work on different PREFIX Revision Changes Path 1.2 +14 -3 ports/net/netatalk-asun/patches/patch-aa 1.2 +31 -28 ports/net/netatalk-asun/patches/patch-ab 1.2 +9 -1 ports/net/netatalk-asun/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 Nov 24 07:08:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA01305 for cvs-all-outgoing; Tue, 24 Nov 1998 07:08: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 HAA01299; Tue, 24 Nov 1998 07:08:33 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA05760; Tue, 24 Nov 1998 07:09:11 -0800 (PST) Date: Tue, 24 Nov 1998 07:09:11 -0800 (PST) Message-Id: <199811241509.HAA05760@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/netscape4-communicator Makefile ports/japanese/netscape4-communicator/files md5 start.sh.in Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/24 07:09:10 PST Modified files: japanese/netscape4-communicator Makefile japanese/netscape4-communicator/files md5 start.sh.in Log: Update of resource file. Make the wrapper to initialize Japanese font settings at the first startup time. Revision Changes Path 1.9 +15 -13 ports/japanese/netscape4-communicator/Makefile 1.4 +1 -0 ports/japanese/netscape4-communicator/files/md5 1.3 +5 -0 ports/japanese/netscape4-communicator/files/start.sh.in To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 08:04:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA05749 for cvs-all-outgoing; Tue, 24 Nov 1998 08:04: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 IAA05743; Tue, 24 Nov 1998 08:04:05 -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 IAA08455; Tue, 24 Nov 1998 08:04:43 -0800 (PST) Date: Tue, 24 Nov 1998 08:04:43 -0800 (PST) Message-Id: <199811241604.IAA08455@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-wm/windowmaker Makefile ports/x11-wm/windowmaker/patches patch-ac ports/x11-wm/windowmaker/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/11/24 08:04:42 PST Modified files: x11-wm/windowmaker Makefile x11-wm/windowmaker/pkg PLIST Removed files: x11-wm/windowmaker/patches patch-ac Log: Don't use the shared libPropList. This is supposed to fix the SIGBUS on startup people are seeing. PR: 8783 Reviewed by: Brian Handy Revision Changes Path 1.38 +2 -10 ports/x11-wm/windowmaker/Makefile 1.17 +0 -4 ports/x11-wm/windowmaker/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 Nov 24 08:05:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA05823 for cvs-all-outgoing; Tue, 24 Nov 1998 08:05: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 IAA05818; Tue, 24 Nov 1998 08:05: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 IAA08549; Tue, 24 Nov 1998 08:06:24 -0800 (PST) Date: Tue, 24 Nov 1998 08:06:24 -0800 (PST) Message-Id: <199811241606.IAA08549@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11/wdm Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/11/24 08:06:24 PST Modified files: x11/wdm Makefile Log: Use the static libPropList. Revision Changes Path 1.14 +3 -3 ports/x11/wdm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 10:38:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA22427 for cvs-all-outgoing; Tue, 24 Nov 1998 10:38: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 KAA22422; Tue, 24 Nov 1998 10:38:24 -0800 (PST) (envelope-from nectar@FreeBSD.org) From: Jacques Vidrine Received: (from nectar@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA16675; Tue, 24 Nov 1998 10:39:03 -0800 (PST) Date: Tue, 24 Nov 1998 10:39:03 -0800 (PST) Message-Id: <199811241839.KAA16675@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mbone/nte Makefile ports/mbone/nte/files Makefile.freebsd ports/mbone/nte/patches patch-ab patch-af Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nectar 1998/11/24 10:39:02 PST Modified files: mbone/nte Makefile mbone/nte/files Makefile.freebsd mbone/nte/patches patch-ab patch-af Log: Fix for building on 3.0 Revision Changes Path 1.13 +3 -13 ports/mbone/nte/Makefile 1.4 +3 -2 ports/mbone/nte/files/Makefile.freebsd 1.2 +12 -3 ports/mbone/nte/patches/patch-ab 1.2 +0 -8 ports/mbone/nte/patches/patch-af To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 10:45:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA22879 for cvs-all-outgoing; Tue, 24 Nov 1998 10:45: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 KAA22873; Tue, 24 Nov 1998 10:45:32 -0800 (PST) (envelope-from nectar@FreeBSD.org) From: Jacques Vidrine Received: (from nectar@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA17335; Tue, 24 Nov 1998 10:46:10 -0800 (PST) Date: Tue, 24 Nov 1998 10:46:10 -0800 (PST) Message-Id: <199811241846.KAA17335@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/rexx-imc Makefile ports/lang/rexx-imc/files Makefile md5 ports/lang/rexx-imc/patches patch-ad ports/lang/rexx-imc/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nectar 1998/11/24 10:46:10 PST Modified files: lang/rexx-imc Makefile lang/rexx-imc/files Makefile md5 lang/rexx-imc/pkg PLIST Added files: lang/rexx-imc/patches patch-ad Log: * Update checksum for distribution. * Fix for ELF. * Fix misuse of errno as a structure member name (original author notified). * Build and install both static and shared libraries. * Move install target from port Makefile to files/Makefile. Revision Changes Path 1.6 +25 -24 ports/lang/rexx-imc/Makefile 1.2 +35 -8 ports/lang/rexx-imc/files/Makefile 1.5 +1 -1 ports/lang/rexx-imc/files/md5 1.4 +4 -3 ports/lang/rexx-imc/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 10:58:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA23671 for cvs-all-outgoing; Tue, 24 Nov 1998 10:58: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 KAA23663; Tue, 24 Nov 1998 10:58:06 -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 KAA18120; Tue, 24 Nov 1998 10:58:44 -0800 (PST) Date: Tue, 24 Nov 1998 10:58:44 -0800 (PST) Message-Id: <199811241858.KAA18120@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/conf files Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk eivind 1998/11/24 10:58:44 PST Modified files: sys/conf files Log: perl -> perl5, to allow to compile on older boxes with perl5 installed (but without perl5 as the system perl) Revision Changes Path 1.174 +4 -4 src/sys/conf/files To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 11:02:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA24036 for cvs-all-outgoing; Tue, 24 Nov 1998 11:02: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 LAA24030; Tue, 24 Nov 1998 11:02:05 -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 LAA18406; Tue, 24 Nov 1998 11:02:44 -0800 (PST) Date: Tue, 24 Nov 1998 11:02:44 -0800 (PST) Message-Id: <199811241902.LAA18406@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/conf files Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk eivind 1998/11/24 11:02:43 PST Modified files: sys/conf files Log: Whoops - wrong copy of files, so all wasn't converted. Rest of perl -> perl5 Revision Changes Path 1.175 +6 -6 src/sys/conf/files To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 11:47:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA28735 for cvs-all-outgoing; Tue, 24 Nov 1998 11:47: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 LAA28729; Tue, 24 Nov 1998 11:47:22 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA21390; Tue, 24 Nov 1998 11:48:00 -0800 (PST) Date: Tue, 24 Nov 1998 11:48:00 -0800 (PST) Message-Id: <199811241948.LAA21390@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/jvim3 Makefile ports/japanese/jvim3/files md5 ports/japanese/jvim3/patches patch-aa patch-ac patch-ad ports/japanese/jvim3/pkg PLIST ports/japanese/jvim3-canna Makefile ports/japanese/jvim3-canna+wnn4 Makefile ports/japanese/jvim3-canna+wnn6 ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/24 11:47:59 PST Modified files: japanese/jvim3 Makefile japanese/jvim3/files md5 japanese/jvim3/patches patch-aa japanese/jvim3/pkg PLIST japanese/jvim3-canna Makefile japanese/jvim3-canna+wnn4 Makefile japanese/jvim3-canna+wnn6 Makefile japanese/jvim3-direct_canna Makefile japanese/jvim3-wnn4 Makefile japanese/jvim3-wnn6 Makefile Removed files: japanese/jvim3/patches patch-ac patch-ad japanese/jvim3-canna+wnn6/pkg PLIST japanese/jvim3-wnn6/pkg PLIST Log: Version up of jvim3: 1.3d -> 1.3i PR: ports/8755 Submitted by: Satoshi TAOKA Revision Changes Path 1.6 +12 -14 ports/japanese/jvim3/Makefile 1.2 +1 -1 ports/japanese/jvim3/files/md5 1.2 +17 -11 ports/japanese/jvim3/patches/patch-aa 1.2 +2 -0 ports/japanese/jvim3/pkg/PLIST 1.2 +4 -4 ports/japanese/jvim3-canna/Makefile 1.2 +4 -4 ports/japanese/jvim3-canna+wnn4/Makefile 1.2 +4 -4 ports/japanese/jvim3-canna+wnn6/Makefile 1.2 +4 -4 ports/japanese/jvim3-direct_canna/Makefile 1.2 +4 -4 ports/japanese/jvim3-wnn4/Makefile 1.2 +4 -4 ports/japanese/jvim3-wnn6/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 12:10:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA01214 for cvs-all-outgoing; Tue, 24 Nov 1998 12:10:44 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from jade.chc-chimes.com (jade.chc-chimes.com [206.67.97.83]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA01204; Tue, 24 Nov 1998 12:10:39 -0800 (PST) (envelope-from billf@jade.chc-chimes.com) Received: from localhost (billf@localhost) by jade.chc-chimes.com (8.8.8/8.8.8) with SMTP id PAA25863; Tue, 24 Nov 1998 15:10:28 -0500 (EST) (envelope-from billf@jade.chc-chimes.com) Date: Tue, 24 Nov 1998 15:10:28 -0500 (EST) From: Bill Fumerola To: Seiichirou Hiraoka cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/deskutils/xhime Makefile ports/deskutils/xhime/files md5 ports/deskutils/xhime/patches patch-aa ports/deskutils/xhime/pkg COMMENT DESCR PLIST ports/deskutils/xmulti Makefile ports/deskutils/xmulti/files md5 ... In-Reply-To: <199811240835.AAA27902@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 Tue, 24 Nov 1998, Seiichirou Hiraoka wrote: > Remove xhime,xmulti. > Change CATEGORIES from deskutils to games. Eeek. This should have been a repository copy. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 12:17:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA01922 for cvs-all-outgoing; Tue, 24 Nov 1998 12:17: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 MAA01913; Tue, 24 Nov 1998 12:17:38 -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 MAA22865; Tue, 24 Nov 1998 12:18:16 -0800 (PST) Date: Tue, 24 Nov 1998 12:18:16 -0800 (PST) Message-Id: <199811242018.MAA22865@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/handbook mirrors.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jdp 1998/11/24 12:18:16 PST Modified files: handbook mirrors.sgml Log: New maintainer e-mail address for the Polish CVSup mirror, by request of the maintainer. Revision Changes Path 1.98 +2 -2 doc/handbook/mirrors.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 12:24:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA02505 for cvs-all-outgoing; Tue, 24 Nov 1998 12:24:42 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from jade.chc-chimes.com (jade.chc-chimes.com [206.67.97.83]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA02489; Tue, 24 Nov 1998 12:24:35 -0800 (PST) (envelope-from billf@jade.chc-chimes.com) Received: from localhost (billf@localhost) by jade.chc-chimes.com (8.8.8/8.8.8) with SMTP id PAA02445; Tue, 24 Nov 1998 15:24:25 -0500 (EST) (envelope-from billf@jade.chc-chimes.com) Date: Tue, 24 Nov 1998 15:24:25 -0500 (EST) From: Bill Fumerola To: Seiichirou Hiraoka cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/deskutils/xhime Makefile ports/deskutils/xhime/files md5 ports/deskutils/xhime/patches patch-aa ports/deskutils/xhime/pkg COMMENT DESCR PLIST ports/deskutils/xmulti Makefile ports/deskutils/xmulti/files md5 ... In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Tue, 24 Nov 1998, Bill Fumerola wrote: > On Tue, 24 Nov 1998, Seiichirou Hiraoka wrote: > > > Remove xhime,xmulti. > > Change CATEGORIES from deskutils to games. > > Eeek. This should have been a repository copy. nevermind, I saw rev1.3 and assumed there was history, when in fact the only history was import, prepare for move, move. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 12:25:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA02578 for cvs-all-outgoing; Tue, 24 Nov 1998 12: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 MAA02570; Tue, 24 Nov 1998 12:25:14 -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 MAA23150; Tue, 24 Nov 1998 12:25:52 -0800 (PST) Date: Tue, 24 Nov 1998 12:25:52 -0800 (PST) Message-Id: <199811242025.MAA23150@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/i386 pmap.c src/sys/i386/include pmap.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk eivind 1998/11/24 12:25:52 PST Modified files: sys/i386/i386 pmap.c sys/i386/include pmap.h Log: Move the declaration of PPro_vmtrr from the header file to pmap.c, replacing the one in the header file with a definition. This makes it easier to work with tools that grok ANSI C only. Revision Changes Path 1.213 +6 -1 src/sys/i386/i386/pmap.c 1.57 +4 -3 src/sys/i386/include/pmap.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 12:39:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA03600 for cvs-all-outgoing; Tue, 24 Nov 1998 12:39: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 MAA03592; Tue, 24 Nov 1998 12:39:21 -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 MAA23864; Tue, 24 Nov 1998 12:40:00 -0800 (PST) Date: Tue, 24 Nov 1998 12:40:00 -0800 (PST) Message-Id: <199811242040.MAA23864@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/netscape45-communicator Makefile ports/www/netscape45-communicator/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/11/24 12:39:59 PST Modified files: www/netscape45-communicator Makefile www/netscape45-communicator/files md5 Log: * Fix md5 checksum that I messed up on last commit. * Add back Fortify support. It works with navigator-45, it should work here. (note that port is still broken so I can't fully test it) Going to get yelled at by: thepish Revision Changes Path 1.28 +14 -5 ports/www/netscape45-communicator/Makefile 1.21 +2 -0 ports/www/netscape45-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 Tue Nov 24 12:40:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA03853 for cvs-all-outgoing; Tue, 24 Nov 1998 12: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 MAA03848; Tue, 24 Nov 1998 12:40:24 -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 MAA23943; Tue, 24 Nov 1998 12:41:02 -0800 (PST) Date: Tue, 24 Nov 1998 12:41:02 -0800 (PST) Message-Id: <199811242041.MAA23943@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/netscape45-navigator Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/11/24 12:41:02 PST Modified files: www/netscape45-navigator Makefile Log: * use ${BINOWN}.${BINGRP} rather than `bin.bin' as 3.0+ uses root.wheel. * combine two `if' logic statements Revision Changes Path 1.30 +3 -6 ports/www/netscape45-navigator/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 12:55:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA04925 for cvs-all-outgoing; Tue, 24 Nov 1998 12:55:07 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA04890; Tue, 24 Nov 1998 12:55:03 -0800 (PST) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id OAA11965; Tue, 24 Nov 1998 14:55:01 -0600 (CST) Date: Tue, 24 Nov 1998 14:55:01 -0600 (CST) From: Steve Price To: Seiichirou Hiraoka cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports LEGAL In-Reply-To: <199811240921.BAA00572@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 Tue, 24 Nov 1998, Seiichirou Hiraoka wrote: # flathill 1998/11/24 01:21:48 PST # # Modified files: # . LEGAL # Log: # Fix following. # ports/deskutils/xhime to ports/games/xhime # ports/misc/glimpse to ports/textproc/glimpse # ports/x11/sharefonts to ports/x11-fonts/sharefonts PR: 8828 66% submitted by: Josh Gilliam # Revision Changes Path # 1.120 +4 -4 ports/LEGAL # To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 14:04:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA12741 for cvs-all-outgoing; Tue, 24 Nov 1998 14:04: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 OAA12735; Tue, 24 Nov 1998 14:04: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 OAA28498; Tue, 24 Nov 1998 14:05:19 -0800 (PST) Date: Tue, 24 Nov 1998 14:05:19 -0800 (PST) Message-Id: <199811242205.OAA28498@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/netscape45-communicator Makefile ports/www/netscape45-communicator/files md5 netscape.sh ports/www/netscape45-communicator/patches patch-aa ports/www/netscape45-communicator/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/11/24 14:05:19 PST Modified files: www/netscape45-communicator Makefile www/netscape45-communicator/files md5 netscape.sh www/netscape45-communicator/patches patch-aa www/netscape45-communicator/pkg COMMENT DESCR PLIST Log: I don't want to see 2.2.8 go out w/o Comunicator 4.5 and this has been broken for quite some time, so... PR: 8724 Submitted by: Adrian Penisoara Going to get yelled at by: thepish Revision Changes Path 1.29 +18 -13 ports/www/netscape45-communicator/Makefile 1.22 +1 -0 ports/www/netscape45-communicator/files/md5 1.10 +1 -1 ports/www/netscape45-communicator/files/netscape.sh 1.4 +4 -4 ports/www/netscape45-communicator/patches/patch-aa 1.5 +1 -1 ports/www/netscape45-communicator/pkg/COMMENT 1.18 +0 -17 ports/www/netscape45-communicator/pkg/DESCR 1.19 +196 -198 ports/www/netscape45-communicator/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 Nov 24 14:10:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA13483 for cvs-all-outgoing; Tue, 24 Nov 1998 14:10: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 OAA13464; Tue, 24 Nov 1998 14:10:04 -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 OAA28837; Tue, 24 Nov 1998 14:10:42 -0800 (PST) Date: Tue, 24 Nov 1998 14:10:42 -0800 (PST) Message-Id: <199811242210.OAA28837@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/netscape45-communicator Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/11/24 14:10:42 PST Modified files: www/netscape45-communicator Makefile Log: Add in one more part. Revision Changes Path 1.30 +3 -4 ports/www/netscape45-communicator/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 14:40:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA16732 for cvs-all-outgoing; Tue, 24 Nov 1998 14:40: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 OAA16727; Tue, 24 Nov 1998 14:40:05 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA00750; Tue, 24 Nov 1998 14:40:43 -0800 (PST) Date: Tue, 24 Nov 1998 14:40:43 -0800 (PST) Message-Id: <199811242240.OAA00750@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1998/11/24 14:40:43 PST Modified files: . modules Log: upsmon --> ports/sysutils/upsmon Revision Changes Path 1.2527 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 14:43:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA17048 for cvs-all-outgoing; Tue, 24 Nov 1998 14:43: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 OAA17039; Tue, 24 Nov 1998 14:43:02 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA00992; Tue, 24 Nov 1998 14:43:40 -0800 (PST) Date: Tue, 24 Nov 1998 14:43:40 -0800 (PST) Message-Id: <199811242243.OAA00992@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/sysutils/upsmon - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1998/11/24 14:43:40 PST ports/sysutils/upsmon - Imported sources Update of /home/ncvs/ports/sysutils/upsmon In directory freefall.freebsd.org:/x/tmp/cvs-serv878 Log Message: Initial import of ports/sysutils/upsmon Designed specifically for the APC SmartUPS devices, the software is dependent on the SmartUPS interface and will only function with SmartUPS devices. Essentially, this is a simpler version of upsd. Status: Vendor Tag: IGOR Release Tags: v2_1_3 N ports/sysutils/upsmon/Makefile N ports/sysutils/upsmon/files/md5 N ports/sysutils/upsmon/files/upsmon.sh N ports/sysutils/upsmon/patches/patch-aa N ports/sysutils/upsmon/pkg/COMMENT N ports/sysutils/upsmon/pkg/DESCR N ports/sysutils/upsmon/pkg/PLIST N ports/sysutils/upsmon/pkg/MESSAGE No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 14:44:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA17224 for cvs-all-outgoing; Tue, 24 Nov 1998 14:44: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 OAA17219; Tue, 24 Nov 1998 14:44:56 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA01165; Tue, 24 Nov 1998 14:45:34 -0800 (PST) Date: Tue, 24 Nov 1998 14:45:34 -0800 (PST) Message-Id: <199811242245.OAA01165@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports LEGAL Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1998/11/24 14:45:34 PST Modified files: . LEGAL Log: Add reasoning for NO_PACKAGE on ports/sysutils/upsmon Revision Changes Path 1.121 +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 Tue Nov 24 14:45:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA17291 for cvs-all-outgoing; Tue, 24 Nov 1998 14: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 OAA17285; Tue, 24 Nov 1998 14:45:36 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA01226; Tue, 24 Nov 1998 14:46:14 -0800 (PST) Date: Tue, 24 Nov 1998 14:46:14 -0800 (PST) Message-Id: <199811242246.OAA01226@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/sysutils Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1998/11/24 14:46:14 PST Modified files: sysutils Makefile Log: Activate upsmon PR: ports/8157 Revision Changes Path 1.49 +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 Tue Nov 24 16:11:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA27972 for cvs-all-outgoing; Tue, 24 Nov 1998 16:11: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 QAA27962; Tue, 24 Nov 1998 16:11:51 -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 QAA05314; Tue, 24 Nov 1998 16:12:29 -0800 (PST) Date: Tue, 24 Nov 1998 16:12:29 -0800 (PST) Message-Id: <199811250012.QAA05314@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/mk bsd.port.mk Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/24 16:12:29 PST Modified files: share/mk bsd.port.mk Log: Change USE_QT to use version 1.41. I know this is a little premature, but I'd like as many people to test this before the release. Revision Changes Path 1.299 +2 -2 src/share/mk/bsd.port.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 16:12:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA28067 for cvs-all-outgoing; Tue, 24 Nov 1998 16:12: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 QAA28059; Tue, 24 Nov 1998 16: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 QAA05412; Tue, 24 Nov 1998 16:13:02 -0800 (PST) Date: Tue, 24 Nov 1998 16:13:02 -0800 (PST) Message-Id: <199811250013.QAA05412@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/mk bsd.port.mk Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/24 16:13:02 PST Modified files: (Branch: RELENG_2_2) share/mk bsd.port.mk Log: Merge 1.299. Revision Changes Path 1.227.2.63 +2 -2 src/share/mk/bsd.port.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 16:25:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA29577 for cvs-all-outgoing; Tue, 24 Nov 1998 16:25:53 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from varmail.net (varmail.net [203.46.50.11] (may be forged)) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA29443; Tue, 24 Nov 1998 16:23:36 -0800 (PST) (envelope-from offer@varmail.net) Received: from localhost (root@localhost) by varmail.net (8.8.8/8.8.8) with SMTP id KAA08558; Wed, 25 Nov 1998 10:22:43 +1000 (EST) (envelope-from offer@varmail.net) Date: Wed, 25 Nov 1998 10:22:43 +1000 (EST) Received: by varmail.net (bulk_mailer v1.11); Wed, 25 Nov 1998 02:07:25 +1000 From: melanie@varmail.net To: members@wetmelanie.com Subject: A Great Selection of FREE Adult Sites! Message-ID: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk We have put together a list of 4 Great Adult sites for your viewing pleasure, all FREE and exclusive. Just click on http://www.varmail.net/1011/ to browse the great, FREE content on offer. Click Here ------------------------------------------------ You are receiving this message because you, or someone pretending to be you, added your contact address to our list. To remove yourself from this mailing list please reply to this message with "Remove" in the subject field. ------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 16:27:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA00128 for cvs-all-outgoing; Tue, 24 Nov 1998 16:27:12 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from varmail.net (varmail.net [203.46.50.11] (may be forged)) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA29508; Tue, 24 Nov 1998 16:24:25 -0800 (PST) (envelope-from offer@varmail.net) Received: from localhost (root@localhost) by varmail.net (8.8.8/8.8.8) with SMTP id KAA08558; Wed, 25 Nov 1998 10:22:43 +1000 (EST) (envelope-from offer@varmail.net) Date: Wed, 25 Nov 1998 10:22:43 +1000 (EST) Received: by varmail.net (bulk_mailer v1.11); Wed, 25 Nov 1998 02:07:25 +1000 From: melanie@varmail.net To: members@wetmelanie.com Subject: A Great Selection of FREE Adult Sites! Message-ID: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk We have put together a list of 4 Great Adult sites for your viewing pleasure, all FREE and exclusive. Just click on http://www.varmail.net/1011/ to browse the great, FREE content on offer. Click Here ------------------------------------------------ You are receiving this message because you, or someone pretending to be you, added your contact address to our list. To remove yourself from this mailing list please reply to this message with "Remove" in the subject field. ------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 16:33:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA01438 for cvs-all-outgoing; Tue, 24 Nov 1998 16:33: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 QAA01433; Tue, 24 Nov 1998 16:33:34 -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 QAA06671; Tue, 24 Nov 1998 16:34:12 -0800 (PST) Date: Tue, 24 Nov 1998 16:34:12 -0800 (PST) Message-Id: <199811250034.QAA06671@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/audio/mikmod Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/24 16:34:11 PST Modified files: audio/mikmod Makefile Log: Mark this broken: ------- ===> Extracting for mikmod-3.0.4 >> Checksum OK for mikmod-3.0.4.tar.gz. ===> Patching for mikmod-3.0.4 1 out of 2 hunks failed--saving rejects to playercode/mplayer.c.rej *** Error code 1 Stop. *** Error code 1 Revision Changes Path 1.7 +3 -1 ports/audio/mikmod/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 16:41:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA02334 for cvs-all-outgoing; Tue, 24 Nov 1998 16:41: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 QAA02328; Tue, 24 Nov 1998 16:41:34 -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 QAA07055; Tue, 24 Nov 1998 16:42:12 -0800 (PST) Date: Tue, 24 Nov 1998 16:42:12 -0800 (PST) Message-Id: <199811250042.QAA07055@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/ORBit Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/24 16:42:11 PST Modified files: devel/ORBit Makefile Log: Mark this broken. === : cc -DPACKAGE=\"libIDL\" -DVERSION=\"0.5.0\" -DHAVE_CPP_PIPE_STDIN=1 -DCPP_PROGRAM=\"cc\ -E\" -DYYTEXT_POINTER=1 -DSTDC_HEADERS=1 -DHAVE_STDDEF_H=1 -I. -I. -DYYDEBUG=1 -DIDL_LIBRARY -I/usr/local/include/glib -O -pipe -c tstidl.c /bin/sh ./libtool --mode=link cc -O -pipe -o tstidl tstidl.o libIDL.la -L/usr/local/lib -lglib11 LD_LIBRARY_PATH=".libs:$LD_LIBRARY_PATH" cc -O -pipe -o .libs/tstidl tstidl.o -R/usr/local/lib -lIDL -L/usr/local/lib -lglib11 -L/usr/local/lib -lglib11 tstidl.o: Undefined symbol `_IDL_check_type_cast' referenced from text segment tstidl.o: Undefined symbol `_IDL_check_type_cast' referenced from text segment tstidl.o: Undefined symbol `___IDL_check_type_casts' referenced from text segment tstidl.o: Undefined symbol `___IDL_debug' referenced from text segment tstidl.o: Undefined symbol `_IDL_parse_filename' referenced from text segment tstidl.o: Undefined symbol `_IDL_tree_walk_in_order' referenced from text segment tstidl.o: Undefined symbol `_IDL_ns_free' referenced from text segment tstidl.o: Undefined symbol `_IDL_tree_free' referenced from text segment gmake[2]: *** [tstidl] Error 1 gmake[2]: Leaving directory `/usr/ports/devel/ORBit/work/ORBit-0.3.0/libIDL' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/devel/ORBit/work/ORBit-0.3.0' gmake: *** [all-recursive-am] Error 2 *** Error code 2 Stop. Revision Changes Path 1.6 +3 -1 ports/devel/ORBit/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 17:29:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA07937 for cvs-all-outgoing; Tue, 24 Nov 1998 17:29: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 RAA07932; Tue, 24 Nov 1998 17:29:56 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA09350; Tue, 24 Nov 1998 17:30:34 -0800 (PST) Date: Tue, 24 Nov 1998 17:30:34 -0800 (PST) Message-Id: <199811250130.RAA09350@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/audio/mpg123/patches patch-ab patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1998/11/24 17:30:34 PST Modified files: audio/mpg123/patches patch-aa Added files: audio/mpg123/patches patch-ab Log: Add a call to fpsetmask(3) to suppress FP related signals {new 'patch-ab'}. The patch can probably be made less specific to FreeBSD; to be visited after the 2.2.8 ports freeze ... Tweak work/.../Makefile to add -O2 to compiles. Submitted by: Matthew Hunt Revision Changes Path 1.5 +4 -4 ports/audio/mpg123/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 Tue Nov 24 17:38:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA08799 for cvs-all-outgoing; Tue, 24 Nov 1998 17:38: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 RAA08790; Tue, 24 Nov 1998 17:38:35 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA09797; Tue, 24 Nov 1998 17:39:12 -0800 (PST) Date: Tue, 24 Nov 1998 17:39:12 -0800 (PST) Message-Id: <199811250139.RAA09797@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/audio/mikmod Makefile ports/audio/mikmod/files patch-s3mvolslides.diff Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/24 17:39:12 PST Modified files: audio/mikmod Makefile audio/mikmod/files patch-s3mvolslides.diff Log: Fix BROKEN. in patches/patch-s3mvolslides.diff Revision Changes Path 1.8 +1 -3 ports/audio/mikmod/Makefile 1.2 +0 -8 ports/audio/mikmod/files/patch-s3mvolslides.diff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 17:50:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA09703 for cvs-all-outgoing; Tue, 24 Nov 1998 17:50: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 RAA09696; Tue, 24 Nov 1998 17:50:47 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA10193; Tue, 24 Nov 1998 17:51:25 -0800 (PST) Date: Tue, 24 Nov 1998 17:51:25 -0800 (PST) Message-Id: <199811250151.RAA10193@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/emulators/xsystem35 Makefile ports/emulators/xsystem35/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/24 17:51:25 PST Modified files: emulators/xsystem35 Makefile emulators/xsystem35/pkg DESCR Log: Switches MAINTAINER to FUJISHIMA Satsuki Revision Changes Path 1.5 +3 -3 ports/emulators/xsystem35/Makefile 1.4 +2 -2 ports/emulators/xsystem35/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 18:31:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA13115 for cvs-all-outgoing; Tue, 24 Nov 1998 18:31: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 SAA13108; Tue, 24 Nov 1998 18:31:04 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA11978; Tue, 24 Nov 1998 18:31:42 -0800 (PST) Date: Tue, 24 Nov 1998 18:31:42 -0800 (PST) Message-Id: <199811250231.SAA11978@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/mhonarc Makefile ports/www/mhonarc/files md5 ports/www/mhonarc/patches patch-aa ports/www/mhonarc/pkg DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1998/11/24 18:31:42 PST Modified files: www/mhonarc Makefile www/mhonarc/files md5 www/mhonarc/patches patch-aa www/mhonarc/pkg DESCR PLIST Log: Upgrade to v2.3.3. Requested by: Sheldon Hearn Revision Changes Path 1.5 +11 -9 ports/www/mhonarc/Makefile 1.3 +1 -1 ports/www/mhonarc/files/md5 1.2 +22 -10 ports/www/mhonarc/patches/patch-aa 1.2 +2 -1 ports/www/mhonarc/pkg/DESCR 1.3 +248 -202 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 Tue Nov 24 20:45:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA23316 for cvs-all-outgoing; Tue, 24 Nov 1998 20:45: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 UAA23311; Tue, 24 Nov 1998 20:45:12 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA21166; Tue, 24 Nov 1998 20:45:50 -0800 (PST) Date: Tue, 24 Nov 1998 20:45:50 -0800 (PST) Message-Id: <199811250445.UAA21166@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sbin/scsiformat scsiformat.sh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1998/11/24 20:45:50 PST Modified files: (Branch: RELENG_2_2) sbin/scsiformat scsiformat.sh Log: Bump timeout when formatting disks to 8 hours. PR: 7803 Submitted by: Andre Albsmeier Revision Changes Path 1.1.4.5 +3 -3 src/sbin/scsiformat/Attic/scsiformat.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 21:05:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA25073 for cvs-all-outgoing; Tue, 24 Nov 1998 21:05: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 VAA25066; Tue, 24 Nov 1998 21:05: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 VAA27828; Tue, 24 Nov 1998 21:06:29 -0800 (PST) Date: Tue, 24 Nov 1998 21:06:29 -0800 (PST) Message-Id: <199811250506.VAA27828@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/graphics/ImageMagick Makefile ports/graphics/ImageMagick/patches patch-ad ports/x11/dgs Makefile ports/graphics/fxtv Makefile ports/graphics/fxtv/patches patch-aa ports/graphics/gimp1 Makefile ports/x11/gnomelibs Makefile ports/x11/gnomelibs/patches patch-aa ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/11/24 21:06:28 PST Modified files: graphics/ImageMagick Makefile x11/dgs Makefile graphics/fxtv Makefile graphics/fxtv/patches patch-aa graphics/gimp1 Makefile x11/gnomelibs Makefile x11/gnomelibs/patches patch-aa comms/hylafax Makefile x11-wm/iconmaker Makefile x11-wm/iconmaker/patches patch-aa graphics/imlib Makefile graphics/imlib/patches patch-aa patch-ab japanese/gimp Makefile graphics/netpbm Makefile graphics/netpbm/patches patch-ag graphics/tiff34 Makefile graphics/tiff34/patches patch-aa patch-ac graphics/tiff34/pkg PLIST x11-toolkits/tkstep80 Makefile x11-toolkits/tkstep80/patches patch-aa graphics/urt Makefile graphics/urt/patches patch-aa x11/wdm Makefile x11/wdm/patches patch-aa x11-wm/windowmaker Makefile x11-wm/windowmaker/patches patch-ad graphics/xpaint Makefile graphics/xv Makefile graphics/xv/patches patch-ad Added files: graphics/xpaint/patches patch-aa Removed files: graphics/ImageMagick/patches patch-ad Log: libtiff34->libtiff and include/tiff34/*.h -> include/*.h Approved by: asami Revision Changes Path 1.58 +2 -2 ports/graphics/ImageMagick/Makefile 1.8 +2 -2 ports/x11/dgs/Makefile 1.13 +2 -2 ports/graphics/fxtv/Makefile 1.5 +1 -1 ports/graphics/fxtv/patches/patch-aa 1.50 +3 -3 ports/graphics/gimp1/Makefile 1.16 +2 -2 ports/x11/gnomelibs/Makefile 1.4 +0 -21 ports/x11/gnomelibs/patches/patch-aa 1.19 +4 -4 ports/comms/hylafax/Makefile 1.11 +2 -2 ports/x11-wm/iconmaker/Makefile 1.5 +1 -1 ports/x11-wm/iconmaker/patches/patch-aa 1.35 +2 -2 ports/graphics/imlib/Makefile 1.17 +0 -21 ports/graphics/imlib/patches/patch-aa 1.10 +2 -2 ports/graphics/imlib/patches/patch-ab 1.2 +3 -4 ports/japanese/gimp/Makefile 1.13 +2 -2 ports/graphics/netpbm/Makefile 1.4 +4 -4 ports/graphics/netpbm/patches/patch-ag 1.11 +2 -2 ports/graphics/tiff34/Makefile 1.9 +8 -113 ports/graphics/tiff34/patches/patch-aa 1.4 +2 -2 ports/graphics/tiff34/patches/patch-ac 1.9 +5 -6 ports/graphics/tiff34/pkg/PLIST 1.17 +3 -3 ports/x11-toolkits/tkstep80/Makefile 1.5 +0 -9 ports/x11-toolkits/tkstep80/patches/patch-aa 1.10 +2 -2 ports/graphics/urt/Makefile 1.7 +2 -2 ports/graphics/urt/patches/patch-aa 1.15 +3 -3 ports/x11/wdm/Makefile 1.6 +0 -57 ports/x11/wdm/patches/patch-aa 1.39 +3 -3 ports/x11-wm/windowmaker/Makefile 1.10 +0 -84 ports/x11-wm/windowmaker/patches/patch-ad 1.30 +2 -2 ports/graphics/xpaint/Makefile 1.30 +2 -2 ports/graphics/xv/Makefile 1.7 +2 -2 ports/graphics/xv/patches/patch-ad To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 21:12:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA25675 for cvs-all-outgoing; Tue, 24 Nov 1998 21:12:12 -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 VAA25663 for ; Tue, 24 Nov 1998 21:12:08 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca3-185.ix.netcom.com [209.109.233.185]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id VAA20167 for ; Tue, 24 Nov 1998 21:12:04 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id VAA23714; Tue, 24 Nov 1998 21:11:53 -0800 (PST) Date: Tue, 24 Nov 1998 21:11:53 -0800 (PST) Message-Id: <199811250511.VAA23714@silvia.hip.berkeley.edu> To: committers@FreeBSD.ORG Subject: Reminder: 24 hours before ports freeze From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ------- Start of forwarded message ------- Date: Tue, 24 Nov 1998 02:51:10 -0800 (PST) To: ports@freebsd.org CC: committers@freebsd.org Subject: Ports freeze at Nov 25th 9PM PST From: asami@cs.berkeley.edu (Satoshi Asami) ...for 2.2.8R. It should be something like 5AM of 26th in UTC. Satoshi ------- End of forwarded message ------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 22:08:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA00624 for cvs-all-outgoing; Tue, 24 Nov 1998 22:08: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 WAA00619; Tue, 24 Nov 1998 22:08:40 -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 WAA05763; Tue, 24 Nov 1998 22:09:18 -0800 (PST) Date: Tue, 24 Nov 1998 22:09:18 -0800 (PST) Message-Id: <199811250609.WAA05763@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-wm/windowmaker-i18n Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/24 22:09:17 PST Modified files: x11-wm/windowmaker-i18n Makefile Log: Mark this broken while it awaits upgrade after repository copy. Revision Changes Path 1.40 +3 -1 ports/x11-wm/windowmaker-i18n/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 22:10:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA00721 for cvs-all-outgoing; Tue, 24 Nov 1998 22:10:10 -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 WAA00715; Tue, 24 Nov 1998 22:10:02 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca3-185.ix.netcom.com [209.109.233.185]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id WAA20216; Tue, 24 Nov 1998 22:09:57 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id WAA23835; Tue, 24 Nov 1998 22:09:52 -0800 (PST) Date: Tue, 24 Nov 1998 22:09:52 -0800 (PST) Message-Id: <199811250609.WAA23835@silvia.hip.berkeley.edu> To: flathill@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199811250139.RAA09797@freefall.freebsd.org> (message from Seiichirou Hiraoka on Tue, 24 Nov 1998 17:39:12 -0800 (PST)) Subject: Re: cvs commit: ports/audio/mikmod Makefile ports/audio/mikmod/files patch-s3mvolslides.diff From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Fix BROKEN. Thanks, works fine now. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 22:13:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA00811 for cvs-all-outgoing; Tue, 24 Nov 1998 22:13: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 WAA00806; Tue, 24 Nov 1998 22:13: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 WAA07526; Tue, 24 Nov 1998 22:13:42 -0800 (PST) Date: Tue, 24 Nov 1998 22:13:42 -0800 (PST) Message-Id: <199811250613.WAA07526@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/graphics/tiff34 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/24 22:13:42 PST Modified files: graphics/tiff34 Makefile Log: Create libtiff.so symlink for a.out case. Revision Changes Path 1.12 +7 -2 ports/graphics/tiff34/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 23:16:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA04920 for cvs-all-outgoing; Tue, 24 Nov 1998 23:16:10 -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 XAA04894; Tue, 24 Nov 1998 23:15:52 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (IDENT:WHAT_THE_HELL_YOU_LOOKING_AT_@d60-147.leach.ucdavis.edu [169.237.60.147]) by relay.nuxi.com (8.9.1/8.9.1) with ESMTP id XAA19223; Tue, 24 Nov 1998 23:15:48 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.1/8.9.1) id HAA28349; Wed, 25 Nov 1998 07:15:48 GMT (envelope-from obrien) Message-ID: <19981124231547.B23930@nuxi.com> Date: Tue, 24 Nov 1998 23:15:47 -0800 From: "David O'Brien" To: Jun-ichiro Itoh , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/misc Makefile Reply-To: obrien@NUXI.com References: <199811240447.UAA15936@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199811240447.UAA15936@freefall.freebsd.org>; from Jun-ichiro Itoh on Mon, Nov 23, 1998 at 08:47:11PM -0800 X-Operating-System: FreeBSD 3.0-CURRENT 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 > (once imported into ports/textproc/lv, but moved to ports/misc/lv) :~-( I kinda like ports/converters. :-) -- -- 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 Tue Nov 24 23:40:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA06103 for cvs-all-outgoing; Tue, 24 Nov 1998 23:40: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 XAA06098; Tue, 24 Nov 1998 23:40:13 -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 XAA28891; Tue, 24 Nov 1998 23:40:50 -0800 (PST) Date: Tue, 24 Nov 1998 23:40:50 -0800 (PST) Message-Id: <199811250740.XAA28891@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/vm vm_fault.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dg 1998/11/24 23:40:50 PST Modified files: sys/vm vm_fault.c Log: Add missing splvm protection around unqueue call. Without this, the page queues would eventually get corrupted. Revision Changes Path 1.91 +4 -4 src/sys/vm/vm_fault.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 23:44:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA06505 for cvs-all-outgoing; Tue, 24 Nov 1998 23:44: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 XAA06497; Tue, 24 Nov 1998 23:44:23 -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 XAA28986; Tue, 24 Nov 1998 23:45:01 -0800 (PST) Date: Tue, 24 Nov 1998 23:45:01 -0800 (PST) Message-Id: <199811250745.XAA28986@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/vm vm_fault.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dg 1998/11/24 23:45:01 PST Modified files: (Branch: RELENG_2_2) sys/vm vm_fault.c Log: Brought in fix from rev 1.91: splvm protect unqueue call. Revision Changes Path 1.57.2.5 +4 -4 src/sys/vm/vm_fault.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Nov 24 23:46:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA06785 for cvs-all-outgoing; Tue, 24 Nov 1998 23:46: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 XAA06780; Tue, 24 Nov 1998 23:46: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 XAA29090; Tue, 24 Nov 1998 23:47:24 -0800 (PST) Date: Tue, 24 Nov 1998 23:47:24 -0800 (PST) Message-Id: <199811250747.XAA29090@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/games/xgammon Makefile ports/games/xgammon/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/11/24 23:47:24 PST Modified files: games/xgammon Makefile games/xgammon/files md5 Log: Distfile has been changed. Use better mirror site. Revision Changes Path 1.10 +4 -4 ports/games/xgammon/Makefile 1.6 +1 -1 ports/games/xgammon/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 Nov 25 01:00:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA12014 for cvs-all-outgoing; Wed, 25 Nov 1998 01:00: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 BAA12009; Wed, 25 Nov 1998 01:00:48 -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 BAA03574; Wed, 25 Nov 1998 01:01:26 -0800 (PST) Date: Wed, 25 Nov 1998 01:01:26 -0800 (PST) Message-Id: <199811250901.BAA03574@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/graphics/tiff34 Makefile ports/graphics/tiff34/patches patch-ab ports/graphics/tiff34/pkg PLIST ports/comms/hylafax Makefile ports/graphics/ImageMagick Makefile ports/graphics/fxtv Makefile ports/graphics/gimp1 Makefile ports/graphics/imlib ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/25 01:01:26 PST Modified files: graphics/tiff34 Makefile graphics/tiff34/patches patch-ab graphics/tiff34/pkg PLIST comms/hylafax Makefile graphics/ImageMagick Makefile graphics/fxtv Makefile graphics/gimp1 Makefile graphics/imlib Makefile graphics/netpbm Makefile graphics/urt Makefile graphics/xpaint Makefile graphics/xv Makefile japanese/gimp Makefile x11-toolkits/tkstep80 Makefile x11-wm/iconmaker Makefile x11-wm/windowmaker Makefile x11/dgs Makefile x11/gnomelibs Makefile x11/wdm Makefile Log: Change libtiff shared lib to version 4.0 -- we've shipped 3.3 before, so 1.0 would go backwards. Revision Changes Path 1.13 +2 -2 ports/graphics/tiff34/Makefile 1.5 +2 -2 ports/graphics/tiff34/patches/patch-ab 1.10 +1 -1 ports/graphics/tiff34/pkg/PLIST 1.20 +2 -2 ports/comms/hylafax/Makefile 1.59 +2 -2 ports/graphics/ImageMagick/Makefile 1.14 +2 -2 ports/graphics/fxtv/Makefile 1.51 +2 -2 ports/graphics/gimp1/Makefile 1.36 +2 -2 ports/graphics/imlib/Makefile 1.14 +2 -2 ports/graphics/netpbm/Makefile 1.11 +2 -2 ports/graphics/urt/Makefile 1.31 +2 -2 ports/graphics/xpaint/Makefile 1.31 +2 -2 ports/graphics/xv/Makefile 1.3 +2 -2 ports/japanese/gimp/Makefile 1.18 +2 -2 ports/x11-toolkits/tkstep80/Makefile 1.12 +2 -2 ports/x11-wm/iconmaker/Makefile 1.40 +2 -2 ports/x11-wm/windowmaker/Makefile 1.9 +2 -2 ports/x11/dgs/Makefile 1.17 +2 -2 ports/x11/gnomelibs/Makefile 1.16 +2 -2 ports/x11/wdm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 01:33:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA14380 for cvs-all-outgoing; Wed, 25 Nov 1998 01:33: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 BAA14375; Wed, 25 Nov 1998 01:33:22 -0800 (PST) (envelope-from dfr@FreeBSD.org) From: Doug Rabson Received: (from dfr@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA07424; Wed, 25 Nov 1998 01:34:01 -0800 (PST) Date: Wed, 25 Nov 1998 01:34:01 -0800 (PST) Message-Id: <199811250934.BAA07424@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/bin/ps print.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dfr 1998/11/25 01:34:00 PST Modified files: bin/ps print.c Log: Fix formatting of %CPU value on alpha. Submitted by: Hidetoshi Shimokawa Revision Changes Path 1.33 +3 -3 src/bin/ps/print.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 01:44:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA15533 for cvs-all-outgoing; Wed, 25 Nov 1998 01:44: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 BAA15527; Wed, 25 Nov 1998 01:44:50 -0800 (PST) (envelope-from dfr@FreeBSD.org) From: Doug Rabson Received: (from dfr@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA07892; Wed, 25 Nov 1998 01:45:28 -0800 (PST) Date: Wed, 25 Nov 1998 01:45:28 -0800 (PST) Message-Id: <199811250945.BAA07892@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/alpha/alpha machdep.c src/contrib/top loadavg.h src/usr.bin/top machine.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dfr 1998/11/25 01:45:28 PST Modified files: sys/alpha/alpha machdep.c contrib/top loadavg.h usr.bin/top machine.c Log: Port top to the alpha. Submitted by: Hidetoshi Shimokawa Revision Changes Path 1.24 +3 -1 src/sys/alpha/alpha/machdep.c 1.2 +1 -1 src/contrib/top/loadavg.h 1.16 +4 -4 src/usr.bin/top/machine.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 02:28:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA18815 for cvs-all-outgoing; Wed, 25 Nov 1998 02:28: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 CAA18809; Wed, 25 Nov 1998 02:28:29 -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 CAA09910; Wed, 25 Nov 1998 02:29:07 -0800 (PST) Date: Wed, 25 Nov 1998 02:29:07 -0800 (PST) Message-Id: <199811251029.CAA09910@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mail/exim/patches patch-ae Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/11/25 02:29:07 PST Added files: mail/exim/patches patch-ae Log: Fix bug in which unexpected identd responses from connecting hosts may cause problems. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 02:43:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA19943 for cvs-all-outgoing; Wed, 25 Nov 1998 02:43: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 CAA19938; Wed, 25 Nov 1998 02:43:23 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA10509; Wed, 25 Nov 1998 02:44:02 -0800 (PST) Date: Wed, 25 Nov 1998 02:44:02 -0800 (PST) Message-Id: <199811251044.CAA10509@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-wm/windowmaker-i18n Makefile ports/x11-wm/windowmaker-i18n/files md5 ports/x11-wm/windowmaker-i18n/patches patch-ab patch-ad ports/x11-wm/windowmaker-i18n/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/25 02:44:01 PST Modified files: x11-wm/windowmaker-i18n Makefile x11-wm/windowmaker-i18n/files md5 x11-wm/windowmaker-i18n/patches patch-ab patch-ad x11-wm/windowmaker-i18n/pkg COMMENT DESCR PLIST Log: This is a GNUStep-compliant NeXTStep clone window manager with i18n extention Based on ports/x11-wm/windowmaker. Revision Changes Path 1.41 +28 -17 ports/x11-wm/windowmaker-i18n/Makefile 1.18 +1 -0 ports/x11-wm/windowmaker-i18n/files/md5 1.2 +4 -3 ports/x11-wm/windowmaker-i18n/patches/patch-ab 1.11 +115 -2 ports/x11-wm/windowmaker-i18n/patches/patch-ad 1.2 +1 -1 ports/x11-wm/windowmaker-i18n/pkg/COMMENT 1.3 +5 -0 ports/x11-wm/windowmaker-i18n/pkg/DESCR 1.18 +22 -0 ports/x11-wm/windowmaker-i18n/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 02:48:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA20448 for cvs-all-outgoing; Wed, 25 Nov 1998 02:48: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 CAA20443; Wed, 25 Nov 1998 02:48:56 -0800 (PST) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA11013; Wed, 25 Nov 1998 02:49:30 -0800 (PST) Date: Wed, 25 Nov 1998 02:49:30 -0800 (PST) Message-Id: <199811251049.CAA11013@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/p5-ParallelUA Makefile ports/www/p5-ParallelUA/files md5 ports/www/p5-ParallelUA/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1998/11/25 02:49:30 PST Modified files: www/p5-ParallelUA Makefile www/p5-ParallelUA/files md5 Removed files: www/p5-ParallelUA/patches patch-aa Log: upgrade to 2.39 Revision Changes Path 1.5 +3 -6 ports/www/p5-ParallelUA/Makefile 1.3 +1 -1 ports/www/p5-ParallelUA/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 Nov 25 02:51:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA20922 for cvs-all-outgoing; Wed, 25 Nov 1998 02:51: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 CAA20917; Wed, 25 Nov 1998 02:51:15 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA11102; Wed, 25 Nov 1998 02:51:53 -0800 (PST) Date: Wed, 25 Nov 1998 02:51:53 -0800 (PST) Message-Id: <199811251051.CAA11102@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/25 02:51:52 PST Modified files: . modules Log: Add windowmaker-i18n Revision Changes Path 1.2528 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 02:52:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA21076 for cvs-all-outgoing; Wed, 25 Nov 1998 02:52: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 CAA21071; Wed, 25 Nov 1998 02:52:32 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA11165; Wed, 25 Nov 1998 02:53:11 -0800 (PST) Date: Wed, 25 Nov 1998 02:53:11 -0800 (PST) Message-Id: <199811251053.CAA11165@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-wm Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/25 02:53:10 PST Modified files: x11-wm Makefile Log: Add SUBDIR += windowmaker-i18n Revision Changes Path 1.7 +2 -1 ports/x11-wm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 02:52:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA21098 for cvs-all-outgoing; Wed, 25 Nov 1998 02:52: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 CAA21093; Wed, 25 Nov 1998 02:52: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 CAA11191; Wed, 25 Nov 1998 02:53:21 -0800 (PST) Date: Wed, 25 Nov 1998 02:53:21 -0800 (PST) Message-Id: <199811251053.CAA11191@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf GENERIC98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/11/25 02:53:21 PST Modified files: sys/pc98/conf GENERIC98 Log: Cosmetic change. Revision Changes Path 1.58 +6 -7 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 Wed Nov 25 02:59:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA21619 for cvs-all-outgoing; Wed, 25 Nov 1998 02:59: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 CAA21614; Wed, 25 Nov 1998 02:59:54 -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 DAA11659; Wed, 25 Nov 1998 03:00:32 -0800 (PST) Date: Wed, 25 Nov 1998 03:00:32 -0800 (PST) Message-Id: <199811251100.DAA11659@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf GENERIC98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/11/25 03:00:32 PST Modified files: sys/pc98/conf GENERIC98 Log: Reorder entries of ed drivers. Many NICs can be automatically detected, even though a user doesn't disable unused entries with userconfig. Submitted by: Nobuyuki Koganemaru Revision Changes Path 1.59 +5 -5 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 Wed Nov 25 03:05:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA21933 for cvs-all-outgoing; Wed, 25 Nov 1998 03:05: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 DAA21924; Wed, 25 Nov 1998 03:05: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 DAA12026; Wed, 25 Nov 1998 03:05:49 -0800 (PST) Date: Wed, 25 Nov 1998 03:05:49 -0800 (PST) Message-Id: <199811251105.DAA12026@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf GENERIC98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/11/25 03:05:49 PST Modified files: (Branch: RELENG_2_2) sys/pc98/conf GENERIC98 Log: MFC: revision 1.59 (reorder ed drivers' entries). Submitted by: Nobuyuki Koganemaru Revision Changes Path 1.8.2.29 +5 -5 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 Wed Nov 25 03:08:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA22225 for cvs-all-outgoing; Wed, 25 Nov 1998 03:08: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 DAA22220; Wed, 25 Nov 1998 03:08:17 -0800 (PST) (envelope-from abial@FreeBSD.org) From: Andrzej Bialecki Received: (from abial@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA12218; Wed, 25 Nov 1998 03:08:55 -0800 (PST) Date: Wed, 25 Nov 1998 03:08:55 -0800 (PST) Message-Id: <199811251108.DAA12218@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/picobsd/doc/src UCI.html Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk abial 1998/11/25 03:08:55 PST Modified files: release/picobsd/doc/src UCI.html Log: New revision of UCI project document. Comments are welcome... Revision Changes Path 1.2 +152 -49 src/release/picobsd/doc/src/UCI.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 03:12:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA22686 for cvs-all-outgoing; Wed, 25 Nov 1998 03:12: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 DAA22679; Wed, 25 Nov 1998 03:12:42 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA12437; Wed, 25 Nov 1998 03:13:20 -0800 (PST) Date: Wed, 25 Nov 1998 03:13:20 -0800 (PST) Message-Id: <199811251113.DAA12437@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/games/xhime - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/25 03:13:20 PST ports/games/xhime - Imported sources Update of /home/ncvs/ports/games/xhime In directory freefall.freebsd.org:/c/users/flathill/xhime Log Message: reImport xhime. because,I mistook Release Tag. Status: Vendor Tag: FLATHILL Release Tags: xhime_1_51 U ports/games/xhime/Makefile U ports/games/xhime/files/md5 U ports/games/xhime/patches/patch-aa U ports/games/xhime/pkg/COMMENT U ports/games/xhime/pkg/DESCR U ports/games/xhime/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 03:38:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA24543 for cvs-all-outgoing; Wed, 25 Nov 1998 03:38:22 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from dana.clari.net.au (dana.clari.net.au [203.27.85.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA24537; Wed, 25 Nov 1998 03:38:14 -0800 (PST) (envelope-from thepish@freebsd.org) Received: from localhost (thepish@localhost) by dana.clari.net.au (8.9.1/8.8.7) with ESMTP id WAA16448; Wed, 25 Nov 1998 22:38:02 +1100 (EST) (envelope-from thepish@freebsd.org) X-Authentication-Warning: dana.clari.net.au: thepish owned process doing -bs Date: Wed, 25 Nov 1998 22:38:02 +1100 (EST) From: Peter Hawkins X-Sender: thepish@dana.clari.net.au To: "David E. O'Brien" cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/www/netscape45-communicator Makefile ports/www/netscape45-communicator/files md5 In-Reply-To: <199811242040.MAA23864@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Going to get yelled at by: thepish That was funny enough that I am going to offer you: *shake* Peter Hilink Internet Peter Hawkins 381 Swan St Richmond, Vic, Australia Ph: +61-3-9421 2006 Fax: +61-3-9421 2007 http://www.hilink.com.au Peter@hilink.com.au FreeBSD Project: thepish@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 03:39:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA24733 for cvs-all-outgoing; Wed, 25 Nov 1998 03:39:12 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from dana.clari.net.au (dana.clari.net.au [203.27.85.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA24727; Wed, 25 Nov 1998 03:39:06 -0800 (PST) (envelope-from thepish@freebsd.org) Received: from localhost (thepish@localhost) by dana.clari.net.au (8.9.1/8.8.7) with ESMTP id WAA16453; Wed, 25 Nov 1998 22:38:55 +1100 (EST) (envelope-from thepish@freebsd.org) X-Authentication-Warning: dana.clari.net.au: thepish owned process doing -bs Date: Wed, 25 Nov 1998 22:38:55 +1100 (EST) From: Peter Hawkins X-Sender: thepish@dana.clari.net.au To: "David E. O'Brien" cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/www/netscape45-communicator Makefile ports/www/netscape45-communicator/files md5 In-Reply-To: <199811242040.MAA23864@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Actually I felt kinda yelled at too hence the long pause from doing shit Hilink Internet Peter Hawkins 381 Swan St Richmond, Vic, Australia Ph: +61-3-9421 2006 Fax: +61-3-9421 2007 http://www.hilink.com.au Peter@hilink.com.au FreeBSD Project: thepish@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 04:20:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA29178 for cvs-all-outgoing; Wed, 25 Nov 1998 04:20:30 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA29171 for ; Wed, 25 Nov 1998 04:20:22 -0800 (PST) (envelope-from dag-erli@ifi.uio.no) Received: from hrotti.ifi.uio.no (2602@hrotti.ifi.uio.no [129.240.64.15]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with ESMTP id NAA03379; Wed, 25 Nov 1998 13:20:10 +0100 (MET) Received: (from dag-erli@localhost) by hrotti.ifi.uio.no ; Wed, 25 Nov 1998 13:20:02 +0100 (MET) Message-ID: <19981125132001.46976@hrotti.ifi.uio.no> Date: Wed, 25 Nov 1998 13:20:01 +0100 From: =?iso-8859-1?Q?Dag-Erling_Coidan_Sm=F8rgrav?= To: cvs-committers@FreeBSD.ORG, core@daemonnews.org Subject: Incommunicado Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Mutt 0.69 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk I am currently having difficulties with my Internet connectivity (amongst other things, I lost my dialup connection when my ISP upgraded to buggy V.90 dialup routers) and will be "off the air" for some more time until I can get a proper setup running at University. DES -- Dag-Erling Smørgrav - dag-erli@ifi.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 05:15:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA03168 for cvs-all-outgoing; Wed, 25 Nov 1998 05: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 FAA03163; Wed, 25 Nov 1998 05:15:55 -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 FAA19595; Wed, 25 Nov 1998 05:16:33 -0800 (PST) Date: Wed, 25 Nov 1998 05:16:33 -0800 (PST) Message-Id: <199811251316.FAA19595@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/ORBit Makefile ports/devel/ORBit/patches patch-ac Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/11/25 05:16:33 PST Modified files: devel/ORBit Makefile devel/ORBit/patches patch-ac Log: Remove BROKEN tag. Remind by: asami Revision Changes Path 1.7 +1 -3 ports/devel/ORBit/Makefile 1.4 +10 -1 ports/devel/ORBit/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 Wed Nov 25 05:49:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA05094 for cvs-all-outgoing; Wed, 25 Nov 1998 05:49: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 FAA05088; Wed, 25 Nov 1998 05:49:32 -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 FAA21408; Wed, 25 Nov 1998 05:50:11 -0800 (PST) Date: Wed, 25 Nov 1998 05:50:11 -0800 (PST) Message-Id: <199811251350.FAA21408@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/cam cam_xpt.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk joerg 1998/11/25 05:50:11 PST Modified files: sys/cam cam_xpt.c Log: This old firmware of the TDC3620 hangs the SCSI bus upon serial number requests. Don't ask it so. Revision Changes Path 1.27 +12 -1 src/sys/cam/cam_xpt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 05:52:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA05281 for cvs-all-outgoing; Wed, 25 Nov 1998 05:52: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 FAA05273; Wed, 25 Nov 1998 05:52:00 -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 FAA21578; Wed, 25 Nov 1998 05:52:38 -0800 (PST) Date: Wed, 25 Nov 1998 05:52:38 -0800 (PST) Message-Id: <199811251352.FAA21578@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk joerg 1998/11/25 05:52:38 PST Modified files: . modules Log: Update `relnotes' to reflect current reality. Revision Changes Path 1.2529 +2 -2 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 05:54:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA05398 for cvs-all-outgoing; Wed, 25 Nov 1998 05: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 FAA05393; Wed, 25 Nov 1998 05:54:53 -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 FAA21740; Wed, 25 Nov 1998 05:55:32 -0800 (PST) Date: Wed, 25 Nov 1998 05:55:32 -0800 (PST) Message-Id: <199811251355.FAA21740@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/texts RELNOTES.TXT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk joerg 1998/11/25 05:55:32 PST Modified files: release/texts RELNOTES.TXT Log: Mention the preprocessor changes to ipfw(8). Revision Changes Path 1.3 +6 -0 src/release/texts/RELNOTES.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 06:05:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA06447 for cvs-all-outgoing; Wed, 25 Nov 1998 06:05: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 GAA06440; Wed, 25 Nov 1998 06:05:38 -0800 (PST) (envelope-from mckay@FreeBSD.org) From: Stephen McKay Received: (from mckay@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA22430; Wed, 25 Nov 1998 06:06:16 -0800 (PST) Date: Wed, 25 Nov 1998 06:06:16 -0800 (PST) Message-Id: <199811251406.GAA22430@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/timedef/data Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mckay 1998/11/25 06:06:16 PST Modified files: (Branch: RELENG_2_2) share/timedef/data Makefile Log: MFC rev 1.28: AU dates are like GB dates not US dates. PR: 8302 Revision Changes Path 1.2.2.13 +7 -2 src/share/timedef/data/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 06:08:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA06875 for cvs-all-outgoing; Wed, 25 Nov 1998 06:08: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 GAA06866; Wed, 25 Nov 1998 06:08:37 -0800 (PST) (envelope-from mckay@FreeBSD.org) From: Stephen McKay Received: (from mckay@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA23213; Wed, 25 Nov 1998 06:09:16 -0800 (PST) Date: Wed, 25 Nov 1998 06:09:16 -0800 (PST) Message-Id: <199811251409.GAA23213@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/at at.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mckay 1998/11/25 06:09:15 PST Modified files: (Branch: RELENG_2_2) usr.bin/at at.c Log: MFC rev 1.14: atq ignored locale. PR: 8300 Revision Changes Path 1.7.2.3 +5 -1 src/usr.bin/at/at.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 06:58:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA12176 for cvs-all-outgoing; Wed, 25 Nov 1998 06:58: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 GAA12171; Wed, 25 Nov 1998 06:58:50 -0800 (PST) (envelope-from abial@FreeBSD.org) From: Andrzej Bialecki Received: (from abial@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA21304; Wed, 25 Nov 1998 06:59:29 -0800 (PST) Date: Wed, 25 Nov 1998 06:59:29 -0800 (PST) Message-Id: <199811251459.GAA21304@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/picobsd/doc/src UCI.html Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk abial 1998/11/25 06:59:28 PST Modified files: release/picobsd/doc/src UCI.html Log: Fix errors in last commit. Revision Changes Path 1.3 +4 -2 src/release/picobsd/doc/src/UCI.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 09:07:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA21768 for cvs-all-outgoing; Wed, 25 Nov 1998 09:07: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 JAA21763; Wed, 25 Nov 1998 09:07:05 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA28538; Wed, 25 Nov 1998 09:07:44 -0800 (PST) Date: Wed, 25 Nov 1998 09:07:44 -0800 (PST) Message-Id: <199811251707.JAA28538@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-wm/windowmaker-i18n/patches patch-aj patch-ak patch-al Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/25 09:07:44 PST Added files: x11-wm/windowmaker-i18n/patches patch-aj patch-ak patch-al Log: Sorry,this was BROKEN. I forgot 'cvs add patch-a[j-l'. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 09:10:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA22005 for cvs-all-outgoing; Wed, 25 Nov 1998 09:10: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 JAA21962; Wed, 25 Nov 1998 09:10:01 -0800 (PST) (envelope-from flathill@FreeBSD.org) From: Seiichirou Hiraoka Received: (from flathill@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA28678; Wed, 25 Nov 1998 09:10:38 -0800 (PST) Date: Wed, 25 Nov 1998 09:10:38 -0800 (PST) Message-Id: <199811251710.JAA28678@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk flathill 1998/11/25 09:10:38 PST Modified files: . modules Log: typo ports/x11-wm/windowmaker-18n.Fix to ports/x11-wm/windowmaker-i18n Revision Changes Path 1.2530 +2 -2 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 11:12:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA00482 for cvs-all-outgoing; Wed, 25 Nov 1998 11:12: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 LAA00477; Wed, 25 Nov 1998 11:12:19 -0800 (PST) (envelope-from imp@FreeBSD.org) From: Warner Losh Received: (from imp@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA05863; Wed, 25 Nov 1998 11:12:57 -0800 (PST) Date: Wed, 25 Nov 1998 11:12:57 -0800 (PST) Message-Id: <199811251912.LAA05863@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/dev/aha aha.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk imp 1998/11/25 11:12:57 PST Modified files: sys/dev/aha aha.c Log: o Patch, slightly altered, from Graham Menhennitt for older aha 1542B cards. My machine didn't tickle this problem, so I can't tell if it fixed anything or not. However, it didn't break my already working 1542-{B,C,CF,CP} probes. o Minor comment correction o Minor correction in printf Revision Changes Path 1.13 +15 -6 src/sys/dev/aha/aha.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 11:45:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA03345 for cvs-all-outgoing; Wed, 25 Nov 1998 11:45: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 LAA03339; Wed, 25 Nov 1998 11:45:33 -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 LAA08762; Wed, 25 Nov 1998 11:46:11 -0800 (PST) Date: Wed, 25 Nov 1998 11:46:11 -0800 (PST) Message-Id: <199811251946.LAA08762@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/contrib/libpam/bin README src/contrib/libpam/conf Makefile install install_conf md5itall mkdirp pam.conf src/contrib/libpam/conf/pam_conv1 Makefile README lex.yy.c pam_conv.lex pam_conv.tab.c pam_conv.y src/contrib/libpam/defs ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jdp 1998/11/25 11:46:10 PST Removed files: contrib/libpam/bin README contrib/libpam/conf Makefile install install_conf md5itall mkdirp pam.conf contrib/libpam/conf/pam_conv1 Makefile README lex.yy.c pam_conv.lex pam_conv.tab.c pam_conv.y contrib/libpam/defs hpux.defs linux.defs morgan.defs redhat.defs solaris.defs sunos.defs contrib/libpam/doc/modules README module.sgml-template pam_chroot.sgml pam_cracklib.sgml pam_deny.sgml pam_env.sgml pam_filter.sgml pam_ftp.sgml pam_group.sgml pam_krb4.sgml pam_lastlog.sgml pam_limits.sgml pam_listfile.sgml pam_mail.sgml pam_nologin.sgml pam_permit.sgml pam_pwdb.sgml pam_radius.sgml pam_rhosts.sgml pam_rootok.sgml pam_securetty.sgml pam_time.sgml pam_warn.sgml pam_wheel.sgml contrib/libpam/doc/ps README contrib/libpam/doc/specs draft-morgan-pam-00.raw contrib/libpam/doc/specs/formatter Makefile parse.lex parse.y contrib/libpam/doc/txts README contrib/libpam/examples Makefile blank.c check_user.c test.c vpass.c xsh.c contrib/libpam/modules Makefile README dont_makefile contrib/libpam/modules/pam_access Makefile README access.conf install_conf pam_access.c contrib/libpam/modules/pam_cracklib Makefile README pam_cracklib.c contrib/libpam/modules/pam_deny Makefile README pam_deny.c contrib/libpam/modules/pam_env Makefile README install_conf pam_env.c pam_env.conf-example contrib/libpam/modules/pam_filter Makefile README pam_filter.c contrib/libpam/modules/pam_filter/include pam_filter.h contrib/libpam/modules/pam_filter/upperLOWER Makefile upperLOWER.c contrib/libpam/modules/pam_ftp Makefile README pam_ftp.c contrib/libpam/modules/pam_group Makefile group.conf install_conf pam_group.c contrib/libpam/modules/pam_lastlog Makefile pam_lastlog.c contrib/libpam/modules/pam_limits Makefile README install_conf limits.skel pam_limits.c contrib/libpam/modules/pam_listfile Makefile README pam_listfile.c contrib/libpam/modules/pam_mail Makefile pam_mail.c contrib/libpam/modules/pam_nologin Makefile README pam_nologin.c contrib/libpam/modules/pam_permit Makefile README pam_permit.c contrib/libpam/modules/pam_pwdb BUGS CHANGELOG Makefile README TODO bigcrypt.-c md5.c md5.h md5_crypt.c pam_pwdb.c pam_unix_acct.-c pam_unix_auth.-c pam_unix_md.-c pam_unix_passwd.-c pam_unix_pwupd.-c pam_unix_sess.-c pwdb_chkpwd.c support.-c contrib/libpam/modules/pam_radius Makefile README pam_radius.c pam_radius.h contrib/libpam/modules/pam_rhosts Makefile README pam_rhosts_auth.c contrib/libpam/modules/pam_rootok Makefile README pam_rootok.c contrib/libpam/modules/pam_securetty Makefile README pam_securetty.c contrib/libpam/modules/pam_shells Makefile README pam_shells.c contrib/libpam/modules/pam_stress Makefile README pam_stress.c contrib/libpam/modules/pam_tally Makefile README pam_tally.c contrib/libpam/modules/pam_time Makefile README install_conf pam_time.c time.conf contrib/libpam/modules/pam_unix CHANGELOG Makefile README pam_unix_acct.c pam_unix_auth.c pam_unix_passwd.c pam_unix_sess.c support.c contrib/libpam/modules/pam_warn Makefile README pam_warn.c contrib/libpam/modules/pam_wheel Makefile README pam_wheel.c Log: Remove files that we don't use and are unlikely to use. You can still get them with "cvs upd -r pam_unpruned" if you want to look at them. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 12:03:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA04818 for cvs-all-outgoing; Wed, 25 Nov 1998 12:03:16 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from korin.warman.org.pl (korin.nask.waw.pl [195.187.243.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA04810 for ; Wed, 25 Nov 1998 12:03:13 -0800 (PST) (envelope-from abial@nask.pl) Received: from localhost (abial@localhost) by korin.warman.org.pl (8.9.1/8.8.5) with SMTP id VAA22938 for ; Wed, 25 Nov 1998 21:09:26 +0100 (CET) X-Authentication-Warning: korin.warman.org.pl: abial owned process doing -bs Date: Wed, 25 Nov 1998 21:09:26 +0100 (CET) From: Andrzej Bialecki X-Sender: abial@korin.warman.org.pl To: cvs-committers@FreeBSD.ORG Subject: CVS - seeking advice Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Hi, I'm about to commit massive changes to picobsd stuff, and I'm not sure what is the best way to do this. I need to rearrange several directories, rename them, and add several new files. Is there any magic CVS incantation which will do this in one easy step? (I doubt there is, but at least I asked.. :-). How to do this efficiently? Andrzej Bialecki -------------------- ++-------++ ------------------------------------- ||PicoBSD|| FreeBSD in your pocket? Go and see: Research & Academic |+-------+| "Small & Embedded FreeBSD" Network in Poland | |TT~~~| | http://www.freebsd.org/~picobsd/ -------------------- ~-+==---+-+ ------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 12:16:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA06124 for cvs-all-outgoing; Wed, 25 Nov 1998 12:16: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 MAA06118; Wed, 25 Nov 1998 12:16:23 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA11038; Wed, 25 Nov 1998 12:17:01 -0800 (PST) Date: Wed, 25 Nov 1998 12:17:01 -0800 (PST) Message-Id: <199811252017.MAA11038@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/graphics/gfont Makefile ports/graphics/gfont/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1998/11/25 12:17:00 PST Modified files: graphics/gfont Makefile Added files: graphics/gfont/patches patch-aa Log: Added patch-aa so this didn't break in -CURRENT UnBROKENed Makefile, and changed HAS_CONFIGURE to the more appropriate GNU_CONFIGURE. Port builds on -STABLE(jade.chc-chimes.com) and -CURRENT(bento) now. PR: ports/8807 Submitted by: Ian Struble Revision Changes Path 1.7 +2 -6 ports/graphics/gfont/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 12:48:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA09194 for cvs-all-outgoing; Wed, 25 Nov 1998 12: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 MAA09189; Wed, 25 Nov 1998 12:48:24 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA13404; Wed, 25 Nov 1998 12:49:02 -0800 (PST) Date: Wed, 25 Nov 1998 12:49:02 -0800 (PST) Message-Id: <199811252049.MAA13404@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/apache13-fp Makefile ports/www/apache13-fp/patches patch-ab ports/www/apache13-fp/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1998/11/25 12:49:02 PST Modified files: www/apache13-fp Makefile www/apache13-fp/patches patch-ab www/apache13-fp/pkg PLIST Log: Update bug where a non-existant ${PREFIX}/www/data will make the install fail. PR: ports/8857 Submitted by: maintainer (hetzels@westbend.net) Revision Changes Path 1.5 +4 -12 ports/www/apache13-fp/Makefile 1.3 +1 -1 ports/www/apache13-fp/patches/patch-ab 1.4 +0 -1 ports/www/apache13-fp/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 Nov 25 13:16:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA12040 for cvs-all-outgoing; Wed, 25 Nov 1998 13:16: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 NAA12035; Wed, 25 Nov 1998 13:16:07 -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 NAA15279; Wed, 25 Nov 1998 13:16:45 -0800 (PST) Date: Wed, 25 Nov 1998 13:16:45 -0800 (PST) Message-Id: <199811252116.NAA15279@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/etc rc.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/11/25 13:16:45 PST Modified files: etc rc.conf Log: Don't suggest that NO is allowed here; you use "0" or "" to turn the cache off. Submitted by: jdp Revision Changes Path 1.63 +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 Wed Nov 25 13:26:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA12585 for cvs-all-outgoing; Wed, 25 Nov 1998 13:26:54 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from wall.polstra.com (rtrwan160.accessone.com [206.213.115.74]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA12579 for ; Wed, 25 Nov 1998 13:26:52 -0800 (PST) (envelope-from jdp@polstra.com) Received: from vashon.polstra.com (vashon.polstra.com [206.213.73.13]) by wall.polstra.com (8.9.1/8.9.1) with ESMTP id NAA08365; Wed, 25 Nov 1998 13:26:36 -0800 (PST) (envelope-from jdp@polstra.com) From: John Polstra Received: (from jdp@localhost) by vashon.polstra.com (8.9.1/8.9.1) id NAA02895; Wed, 25 Nov 1998 13:26:23 -0800 (PST) (envelope-from jdp@polstra.com) Date: Wed, 25 Nov 1998 13:26:23 -0800 (PST) Message-Id: <199811252126.NAA02895@vashon.polstra.com> To: abial@nask.pl Subject: Re: CVS - seeking advice Newsgroups: polstra.freebsd.committers In-Reply-To: Organization: Polstra & Co., Seattle, WA Cc: committers@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In article , Andrzej Bialecki wrote: > > I'm about to commit massive changes to picobsd stuff, and I'm not sure > what is the best way to do this. > > I need to rearrange several directories, rename them, and add several new > files. Is there any magic CVS incantation which will do this in one easy > step? (I doubt there is, but at least I asked.. :-). How to do this > efficiently? If a whole bunch of files are being renamed or moved to a different directory, we sometimes do a so-called "repository copy" in order to preserve the change history in the newly-named files. However, I personally am not a big advocate of that technique, except perhaps as a way to correct erroneous commits or imports immediately after they've occurred. (I should note that all repository copies must be done by peter@freebsd.org or jdp@freebsd.org, or by asami@freebsd.org in the case of ports.) Usually I prefer to use "cvs rm" and "cvs add", because they avoid behind-the-scenes hackery on the CVS repository. So ... I guess my answer to your question is no, there isn't a magic incantation. John -- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Nobody ever went broke underestimating the taste of the American public." -- H. L. Mencken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 13:48:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA14615 for cvs-all-outgoing; Wed, 25 Nov 1998 13:48: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 NAA14609; Wed, 25 Nov 1998 13:48:11 -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 NAA16937; Wed, 25 Nov 1998 13:48:49 -0800 (PST) Date: Wed, 25 Nov 1998 13:48:49 -0800 (PST) Message-Id: <199811252148.NAA16937@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_vnops.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/11/25 13:48:49 PST Modified files: (Branch: RELENG_2_2) sys/nfs nfs_vnops.c Log: Bring the NFS ACCESS acclerator back from -current. Note that on this branch it defaults to OFF, requiring an explicit poke to turn it on. Revision Changes Path 1.36.2.8 +89 -22 src/sys/nfs/nfs_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 13:48:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA14657 for cvs-all-outgoing; Wed, 25 Nov 1998 13:48: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 NAA14652; Wed, 25 Nov 1998 13:48:36 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA16991; Wed, 25 Nov 1998 13:49:14 -0800 (PST) Date: Wed, 25 Nov 1998 13:49:14 -0800 (PST) Message-Id: <199811252149.NAA16991@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/gtk/patches patch-ac patch-aa ports/japanese/gtk/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/25 13:49:14 PST Modified files: japanese/gtk/patches patch-aa japanese/gtk/pkg PLIST Added files: japanese/gtk/patches patch-ac Log: Change libnames: libgtk -> libgtkjp, etc. Revision Changes Path 1.2 +132 -9 ports/japanese/gtk/patches/patch-aa 1.2 +12 -12 ports/japanese/gtk/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 13:50:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA14852 for cvs-all-outgoing; Wed, 25 Nov 1998 13:50: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 NAA14846; Wed, 25 Nov 1998 13:50:56 -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 NAA17099; Wed, 25 Nov 1998 13:51:35 -0800 (PST) Date: Wed, 25 Nov 1998 13:51:35 -0800 (PST) Message-Id: <199811252151.NAA17099@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/etc rc.conf rc.network Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/11/25 13:51:34 PST Modified files: (Branch: RELENG_2_2) etc rc.conf rc.network Log: Add hooks for configuring the NFS ACCESS cache, defaulting it to disabled. Revision Changes Path 1.1.2.48 +2 -1 src/etc/rc.conf 1.1.2.23 +4 -1 src/etc/rc.network To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 13:51:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA14888 for cvs-all-outgoing; Wed, 25 Nov 1998 13:51: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 NAA14883; Wed, 25 Nov 1998 13:51:25 -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 NAA17130; Wed, 25 Nov 1998 13:52:04 -0800 (PST) Date: Wed, 25 Nov 1998 13:52:04 -0800 (PST) Message-Id: <199811252152.NAA17130@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/man/man5 rc.conf.5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/11/25 13:52:04 PST Modified files: (Branch: RELENG_2_2) share/man/man5 rc.conf.5 Log: Document the nfs_access_cache rc.conf variable. Revision Changes Path 1.1.2.12 +11 -1 src/share/man/man5/rc.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 13:55:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA15122 for cvs-all-outgoing; Wed, 25 Nov 1998 13:55: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 NAA15117; Wed, 25 Nov 1998 13:55:47 -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 NAA17305; Wed, 25 Nov 1998 13:56:25 -0800 (PST) Date: Wed, 25 Nov 1998 13:56:25 -0800 (PST) Message-Id: <199811252156.NAA17305@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfsnode.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/11/25 13:56:25 PST Modified files: (Branch: RELENG_2_2) sys/nfs nfsnode.h Log: Merge NFS ACCESS accelerator code from current (left this one out last time). Revision Changes Path 1.15.4.3 +4 -1 src/sys/nfs/nfsnode.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 14:03:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA15823 for cvs-all-outgoing; Wed, 25 Nov 1998 14:03: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 OAA15818; Wed, 25 Nov 1998 14:03:51 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA18601; Wed, 25 Nov 1998 14:04:29 -0800 (PST) Date: Wed, 25 Nov 1998 14:04:29 -0800 (PST) Message-Id: <199811252204.OAA18601@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/sysutils/upsmon/files upsmon.sh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1998/11/25 14:04:29 PST Modified files: sysutils/upsmon/files upsmon.sh Log: Typo "sbin/upsmon" -> "sbin/upsmond" Submitted by: Igor Vinokurov Revision Changes Path 1.2 +1 -1 ports/sysutils/upsmon/files/upsmon.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 14:09:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA16724 for cvs-all-outgoing; Wed, 25 Nov 1998 14:09: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 OAA16719; Wed, 25 Nov 1998 14:09:03 -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 OAA19584; Wed, 25 Nov 1998 14:09:41 -0800 (PST) Date: Wed, 25 Nov 1998 14:09:41 -0800 (PST) Message-Id: <199811252209.OAA19584@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_vnops.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/11/25 14:09:41 PST Modified files: (Branch: RELENG_2_2) sys/nfs nfs_vnops.c Log: Stamp out some time_second usages that snuck through. Revision Changes Path 1.36.2.9 +3 -3 src/sys/nfs/nfs_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 14:09:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA16754 for cvs-all-outgoing; Wed, 25 Nov 1998 14:09: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 OAA16749; Wed, 25 Nov 1998 14:09: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 OAA19598; Wed, 25 Nov 1998 14:09:48 -0800 (PST) Date: Wed, 25 Nov 1998 14:09:48 -0800 (PST) Message-Id: <199811252209.OAA19598@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/texts RELNOTES.TXT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/11/25 14:09:47 PST Modified files: (Branch: RELENG_2_2) release/texts RELNOTES.TXT Log: Mention the NFS ACCESS accelerator and the 'acd' driver. Revision Changes Path 1.2.2.3 +4 -1 src/release/texts/RELNOTES.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 14:15:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA17360 for cvs-all-outgoing; Wed, 25 Nov 1998 14:15: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 OAA17355; Wed, 25 Nov 1998 14:15:01 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA19843; Wed, 25 Nov 1998 14:15:35 -0800 (PST) Date: Wed, 25 Nov 1998 14:15:35 -0800 (PST) Message-Id: <199811252215.OAA19843@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/gimp Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/25 14:15:35 PST Modified files: japanese/gimp Makefile Log: Follow ja-gtk's libnames change. Change Maintainer's mail address. Revision Changes Path 1.4 +10 -10 ports/japanese/gimp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 14:15:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA17384 for cvs-all-outgoing; Wed, 25 Nov 1998 14:15:06 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from enya.hilink.com.au (enya.hilink.com.au [203.8.14.116]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA17346; Wed, 25 Nov 1998 14:14:53 -0800 (PST) (envelope-from danny@enya.hilink.com.au) Received: from localhost (danny@localhost) by enya.hilink.com.au (8.8.8/8.8.7) with SMTP id JAA29185; Thu, 26 Nov 1998 09:14:45 +1100 (EST) (envelope-from danny@enya.hilink.com.au) Date: Thu, 26 Nov 1998 09:14:45 +1100 (EST) From: "Daniel O'Callaghan" To: Stephen McKay cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/share/timedef/data Makefile In-Reply-To: <199811251406.GAA22430@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 Wed, 25 Nov 1998, Stephen McKay wrote: > mckay 1998/11/25 06:06:16 PST > > Modified files: (Branch: RELENG_2_2) > share/timedef/data Makefile > Log: > MFC rev 1.28: AU dates are like GB dates not US dates. This should probably be done/checked for en_CA, too, but I'm not Canadian so I won't make a definitive statement. Danny To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 14:18:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA17813 for cvs-all-outgoing; Wed, 25 Nov 1998 14:18: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 OAA17806; Wed, 25 Nov 1998 14:18:43 -0800 (PST) (envelope-from nate@FreeBSD.org) From: Nate Williams Received: (from nate@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA20124; Wed, 25 Nov 1998 14:19:22 -0800 (PST) Date: Wed, 25 Nov 1998 14:19:22 -0800 (PST) Message-Id: <199811252219.OAA20124@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/netinet in_pcb.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nate 1998/11/25 14:19:21 PST Modified files: (Branch: RELENG_2_2) sys/netinet in_pcb.c Log: MFC: Fix the bind security fix introduced in rev 1.38 to work with multicast. [ This bug allows Multicast in the JDK to work ] Revision Changes Path 1.23.2.4 +9 -3 src/sys/netinet/in_pcb.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 14:19:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA17920 for cvs-all-outgoing; Wed, 25 Nov 1998 14:19:21 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from hp9000.chc-chimes.com (hp9000.chc-chimes.com [206.67.97.84]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA17910; Wed, 25 Nov 1998 14:19:16 -0800 (PST) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA256132297; Wed, 25 Nov 1998 17:18:17 -0500 Date: Wed, 25 Nov 1998 17:18:17 -0500 (EST) From: Bill Fumerola To: Doug White Cc: freebsd-ports@FreeBSD.ORG, committers@FreeBSD.ORG Subject: Re: ports/7875 In-Reply-To: Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Wed, 25 Nov 1998, Doug White wrote: > > Just remember the ports freeze before you import it. :> > > Hm, haven't seen any mention of a freeze, but I'm not on -ports. It is tonight (11/25/98) at 9:00 PM PST, IIRC. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 14:23:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA18453 for cvs-all-outgoing; Wed, 25 Nov 1998 14:23: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 OAA18447; Wed, 25 Nov 1998 14:23:21 -0800 (PST) (envelope-from motoyuki@FreeBSD.org) From: Motoyuki Konno Received: (from motoyuki@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA20375; Wed, 25 Nov 1998 14:24:00 -0800 (PST) Date: Wed, 25 Nov 1998 14:24:00 -0800 (PST) Message-Id: <199811252224.OAA20375@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/ja/handbook mirrors.sgml stable.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk motoyuki 1998/11/25 14:23:59 PST Modified files: ja/handbook mirrors.sgml stable.sgml Log: Merge the following changes in the English version: mirrors.sgml : 1.92 -> 1.96 stable.sgml : 1.17 -> 1.18 Submitted by: Ichimiya Ryo Revision Changes Path 1.34 +42 -4 doc/ja/handbook/mirrors.sgml 1.13 +29 -16 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 Wed Nov 25 14:27:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA18978 for cvs-all-outgoing; Wed, 25 Nov 1998 14:27: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 OAA18973; Wed, 25 Nov 1998 14:27:15 -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 OAA20674; Wed, 25 Nov 1998 14:27:53 -0800 (PST) Date: Wed, 25 Nov 1998 14:27:53 -0800 (PST) Message-Id: <199811252227.OAA20674@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT avail Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/25 14:27:52 PST Modified files: . avail Log: Add Wes Peters to committers; welcome, Wes! Revision Changes Path 1.55 +2 -4 CVSROOT/avail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 14:28:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA19092 for cvs-all-outgoing; Wed, 25 Nov 1998 14:28: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 OAA19087; Wed, 25 Nov 1998 14:28:09 -0800 (PST) (envelope-from motoyuki@FreeBSD.org) From: Motoyuki Konno Received: (from motoyuki@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA20719; Wed, 25 Nov 1998 14:28:48 -0800 (PST) Date: Wed, 25 Nov 1998 14:28:48 -0800 (PST) Message-Id: <199811252228.OAA20719@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/ja/FAQ misc.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk motoyuki 1998/11/25 14:28:48 PST Modified files: ja/FAQ misc.sgml Log: Fix typo. Submitted by: SAKATA Tomoyuki Reviewed by: Yoshiaki Uchikawa Revision Changes Path 1.8 +3 -3 doc/ja/FAQ/misc.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 14:30:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA19368 for cvs-all-outgoing; Wed, 25 Nov 1998 14:30: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 OAA19363; Wed, 25 Nov 1998 14:30:50 -0800 (PST) (envelope-from sada@FreeBSD.org) From: SADA Kenji Received: (from sada@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA20896; Wed, 25 Nov 1998 14:31:29 -0800 (PST) Date: Wed, 25 Nov 1998 14:31:29 -0800 (PST) Message-Id: <199811252231.OAA20896@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/gicq Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1998/11/25 14:31:28 PST Modified files: japanese/gicq Makefile Log: Follow ja-gtk's libnames change. Switch `BUILD_DEPENDS' to `LIB_DEPENDS'. Revision Changes Path 1.3 +4 -3 ports/japanese/gicq/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 14:32:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA19533 for cvs-all-outgoing; Wed, 25 Nov 1998 14:32: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 OAA19528; Wed, 25 Nov 1998 14:32:34 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA21032; Wed, 25 Nov 1998 14:33:12 -0800 (PST) Date: Wed, 25 Nov 1998 14:33:12 -0800 (PST) Message-Id: <199811252233.OAA21032@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/scogdb Makefile ports/devel/scogdb/files md5 ports/devel/scogdb/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1998/11/25 14:33:12 PST Modified files: devel/scogdb Makefile devel/scogdb/files md5 Removed files: devel/scogdb/patches patch-aa Log: Upgrade from 4.16 -> 4.17, as the old version was unfetchable. Removed the current MAINTAINER, per his request, and marked the port NO_CDROM, due to the limited audience for this program, and the crosscompiler situation. PR: ports/8853 Submitted by: Pedro Giffuni (old maintainer) Revision Changes Path 1.5 +12 -10 ports/devel/scogdb/Makefile 1.2 +1 -1 ports/devel/scogdb/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 Nov 25 14:36:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA20362 for cvs-all-outgoing; Wed, 25 Nov 1998 14:36: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 OAA20353; Wed, 25 Nov 1998 14:36:39 -0800 (PST) (envelope-from motoyuki@FreeBSD.org) From: Motoyuki Konno Received: (from motoyuki@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA21362; Wed, 25 Nov 1998 14:37:17 -0800 (PST) Date: Wed, 25 Nov 1998 14:37:17 -0800 (PST) Message-Id: <199811252237.OAA21362@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/ja/releases index.sgml www/ja/releases/3.0R notes.sgml Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk motoyuki 1998/11/25 14:37:17 PST Modified files: ja/releases index.sgml ja/releases/3.0R Makefile Added files: ja/releases/3.0R notes.sgml Log: New translation: releases/3.0R/notes.sgml And related changes. Submitted by: Japanese doc team. Revision Changes Path 1.12 +3 -3 www/ja/releases/index.sgml 1.2 +2 -2 www/ja/releases/3.0R/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 14:36:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA20386 for cvs-all-outgoing; Wed, 25 Nov 1998 14:36: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 OAA20379; Wed, 25 Nov 1998 14:36:43 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA21394; Wed, 25 Nov 1998 14:37:20 -0800 (PST) Date: Wed, 25 Nov 1998 14:37:20 -0800 (PST) Message-Id: <199811252237.OAA21394@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/apache13-php3/scripts configure.php Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1998/11/25 14:37:19 PST Modified files: www/apache13-php3/scripts configure.php Log: Whoops! This script has a LIB_DEPENDS that didn't have it's regexp information removed, and thus breaks on an ELF system. Removed the regexp support. PR: ports/8808 Submitted by: Palle Girgensohn Revision Changes Path 1.6 +1 -1 ports/www/apache13-php3/scripts/configure.php To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 14:39:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA20838 for cvs-all-outgoing; Wed, 25 Nov 1998 14:39: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 OAA20831; Wed, 25 Nov 1998 14:39:50 -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 OAA21588; Wed, 25 Nov 1998 14:40:29 -0800 (PST) Date: Wed, 25 Nov 1998 14:40:29 -0800 (PST) Message-Id: <199811252240.OAA21588@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-toolkits/qt141/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/11/25 14:40:29 PST Modified files: x11-toolkits/qt141/pkg PLIST Log: remove manpages from PLIST as requested by Satoshi Revision Changes Path 1.17 +0 -355 ports/x11-toolkits/qt141/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 Nov 25 14:47:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA21695 for cvs-all-outgoing; Wed, 25 Nov 1998 14: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 OAA21690; Wed, 25 Nov 1998 14:47:33 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA22021; Wed, 25 Nov 1998 14:48:07 -0800 (PST) Date: Wed, 25 Nov 1998 14:48:07 -0800 (PST) Message-Id: <199811252248.OAA22021@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/ytalk Makefile ports/net/ytalk/files md5 ports/net/ytalk/patches patch-aa patch-ab ports/net/ytalk/pkg DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1998/11/25 14:48:07 PST Modified files: net/ytalk Makefile net/ytalk/files md5 net/ytalk/pkg DESCR PLIST Removed files: net/ytalk/patches patch-aa patch-ab Log: Upgrade to 3.1, and remove all the patches as the author seems to have merged them all in. PR: ports/8836 Submitted by: Dominic Mitchell Revision Changes Path 1.8 +9 -11 ports/net/ytalk/Makefile 1.2 +1 -1 ports/net/ytalk/files/md5 1.2 +2 -3 ports/net/ytalk/pkg/DESCR 1.3 +1 -1 ports/net/ytalk/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 Nov 25 15:05:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA24211 for cvs-all-outgoing; Wed, 25 Nov 1998 15:05: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 PAA24201; Wed, 25 Nov 1998 15:05: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 PAA22897; Wed, 25 Nov 1998 15:05:46 -0800 (PST) Date: Wed, 25 Nov 1998 15:05:46 -0800 (PST) Message-Id: <199811252305.PAA22897@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-wm/windowmaker-i18n Makefile ports/x11-wm/windowmaker-i18n/patches patch-ad Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/25 15:05:46 PST Modified files: x11-wm/windowmaker-i18n Makefile x11-wm/windowmaker-i18n/patches patch-ad Log: libtiff is now "tiff.4", not "tiff34.1". Revision Changes Path 1.42 +2 -2 ports/x11-wm/windowmaker-i18n/Makefile 1.12 +0 -84 ports/x11-wm/windowmaker-i18n/patches/patch-ad To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 16:20:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA03164 for cvs-all-outgoing; Wed, 25 Nov 1998 16:20: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 QAA03159; Wed, 25 Nov 1998 16:20:48 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA26306; Wed, 25 Nov 1998 16:21:26 -0800 (PST) Date: Wed, 25 Nov 1998 16:21:26 -0800 (PST) Message-Id: <199811260021.QAA26306@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/man/man7 man.7 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1998/11/25 16:21:25 PST Modified files: share/man/man7 Makefile Added files: share/man/man7 man.7 Log: Add a manual page for man(7). Thanks-to: Joerg Wunsch for sending me a sample page for inspiration. Revision Changes Path 1.8 +3 -3 src/share/man/man7/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 16:53:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA05852 for cvs-all-outgoing; Wed, 25 Nov 1998 16:53: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 QAA05846; Wed, 25 Nov 1998 16:53:09 -0800 (PST) (envelope-from paul@FreeBSD.org) From: Paul Richards Received: (from paul@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA27656; Wed, 25 Nov 1998 16:53:47 -0800 (PST) Date: Wed, 25 Nov 1998 16:53:47 -0800 (PST) Message-Id: <199811260053.QAA27656@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa if_lnc.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk paul 1998/11/25 16:53:46 PST Modified files: sys/i386/isa if_lnc.c Log: Despite what people may think the Am79C970 returns the chip id of an Am79C965. Fix the PCI probe code to accept this id otherwise cards based on the Am79C970 fail to probe. Revision Changes Path 1.49 +2 -2 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 Wed Nov 25 16:56:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA06158 for cvs-all-outgoing; Wed, 25 Nov 1998 16:56: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 QAA06152; Wed, 25 Nov 1998 16:56:55 -0800 (PST) (envelope-from paul@FreeBSD.org) From: Paul Richards Received: (from paul@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA27813; Wed, 25 Nov 1998 16:57:33 -0800 (PST) Date: Wed, 25 Nov 1998 16:57:33 -0800 (PST) Message-Id: <199811260057.QAA27813@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa if_lnc.c if_lnc.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk paul 1998/11/25 16:57:33 PST Modified files: sys/i386/isa if_lnc.c if_lnc.h Log: Add Id string to if_lnc.h and fix up copyrights to be consistent and up to date. Revision Changes Path 1.50 +2 -2 src/sys/i386/isa/if_lnc.c 1.9 +32 -7 src/sys/i386/isa/if_lnc.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 18:08:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA12243 for cvs-all-outgoing; Wed, 25 Nov 1998 18:08:03 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from octopus.originative.co.uk (originat.demon.co.uk [158.152.220.9]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA12200; Wed, 25 Nov 1998 18:07:59 -0800 (PST) (envelope-from paul@originative.co.uk) Received: by OCTOPUS with Internet Mail Service (5.5.1960.3) id ; Thu, 26 Nov 1998 02:07:15 -0000 Message-ID: From: Paul Richards To: "'Paul Richards'" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: RE: cvs commit: src/sys/i386/isa if_lnc.c Date: Thu, 26 Nov 1998 02:07:14 -0000 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.1960.3) Content-Type: text/plain Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk The two commits made recently to try and improve the probing to PCI based chips had various flaws. This patch should at least get most people with PCI cards working again. Could someone with a Hitach VisionBook get in touch with me and let me know whether they're having any problems. I'd really like feedback from everyone who uses this driver (send me dmesg output) so I can check that the probes are working properly on all cards. This is only in current at the moment, stable only had one of the two commits applied and I want more info before I decide how to deal with it. Paul Richards Ph.D. Originative Solutions Ltd > -----Original Message----- > From: Paul Richards [mailto:paul@FreeBSD.ORG] > Sent: Thursday, November 26, 1998 12:54 AM > To: cvs-committers@FreeBSD.ORG; cvs-all@FreeBSD.ORG > Subject: cvs commit: src/sys/i386/isa if_lnc.c > > > paul 1998/11/25 16:53:46 PST > > Modified files: > sys/i386/isa if_lnc.c > Log: > Despite what people may think the Am79C970 returns the chip > id of an Am79C965. > Fix the PCI probe code to accept this id otherwise cards > based on the Am79C970 > fail to probe. > > Revision Changes Path > 1.49 +2 -2 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 Wed Nov 25 18:08:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA12275 for cvs-all-outgoing; Wed, 25 Nov 1998 18:08:15 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ren.dtir.qld.gov.au (ns.dtir.qld.gov.au [203.108.138.66]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA12129; Wed, 25 Nov 1998 18:07:47 -0800 (PST) (envelope-from syssgm@dtir.qld.gov.au) Received: by ren.dtir.qld.gov.au; id MAA09710; Thu, 26 Nov 1998 12:06:19 +1000 (EST) Received: from ogre.dtir.qld.gov.au(167.123.8.3) by ren.dtir.qld.gov.au via smap (3.2) id xma009663; Thu, 26 Nov 98 12:06:02 +1000 Received: from atlas.dtir.qld.gov.au (atlas.dtir.qld.gov.au [167.123.8.9]) by ogre.dtir.qld.gov.au (8.8.8/8.8.7) with ESMTP id MAA03344; Thu, 26 Nov 1998 12:06:02 +1000 (EST) Received: from nymph.dtir.qld.gov.au (nymph.dtir.qld.gov.au [167.123.10.10]) by atlas.dtir.qld.gov.au (8.8.5/8.8.5) with ESMTP id MAA06230; Thu, 26 Nov 1998 12:06:01 +1000 (EST) Received: from nymph.dtir.qld.gov.au (localhost.dtir.qld.gov.au [127.0.0.1]) by nymph.dtir.qld.gov.au (8.8.8/8.8.7) with ESMTP id MAA15645; Thu, 26 Nov 1998 12:06:01 +1000 (EST) (envelope-from syssgm@nymph.dtir.qld.gov.au) Message-Id: <199811260206.MAA15645@nymph.dtir.qld.gov.au> To: "Daniel O'Callaghan" cc: Stephen McKay , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, Luoqi Chen Subject: Re: cvs commit: src/share/timedef/data Makefile References: In-Reply-To: from "Daniel O'Callaghan" at "Thu, 26 Nov 1998 09:14:45 +1100" Date: Thu, 26 Nov 1998 12:06:01 +1000 From: Stephen McKay Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Thursday, 26th November 1998, "Daniel O'Callaghan" wrote: >On Wed, 25 Nov 1998, Stephen McKay wrote: > >> mckay 1998/11/25 06:06:16 PST >> >> Modified files: (Branch: RELENG_2_2) >> share/timedef/data Makefile >> Log: >> MFC rev 1.28: AU dates are like GB dates not US dates. > >This should probably be done/checked for en_CA, too, but I'm not Canadian >so I won't make a definitive statement. I only did what I knew. Canadians, please stand and be counted! There is also the extra file "zh_CN.EUC". Since Luoqi Chen submitted it, I suppose that he should judge if it is required for 2.2.8. Stephen. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 19:29:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA18981 for cvs-all-outgoing; Wed, 25 Nov 1998 19:29: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 TAA18976; Wed, 25 Nov 1998 19:29:50 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA04045; Wed, 25 Nov 1998 19:30:28 -0800 (PST) Date: Wed, 25 Nov 1998 19:30:28 -0800 (PST) Message-Id: <199811260330.TAA04045@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/repquota repquota.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1998/11/25 19:30:27 PST Modified files: (Branch: RELENG_2_2) usr.sbin/repquota repquota.c Log: Increase format widths to handle large block and file limits. Add a space between fields so that the numbers do not run into each other. PR: 8730 Submitted by: Andre Albsmeier Reviewed by: jkoshy Revision Changes Path 1.3.6.4 +5 -5 src/usr.sbin/repquota/repquota.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 21:14:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA25700 for cvs-all-outgoing; Wed, 25 Nov 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 VAA25680; Wed, 25 Nov 1998 21:14:49 -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 VAA08870; Wed, 25 Nov 1998 21:15:27 -0800 (PST) Date: Wed, 25 Nov 1998 21:15:27 -0800 (PST) Message-Id: <199811260515.VAA08870@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/man/man7 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/25 21:15:27 PST Modified files: (Branch: RELENG_2_2) share/man/man7 Makefile Log: Add man.7, which was just tagged in. Revision Changes Path 1.5.2.3 +2 -2 src/share/man/man7/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 21:24:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA26283 for cvs-all-outgoing; Wed, 25 Nov 1998 21:24: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 VAA26275; Wed, 25 Nov 1998 21:24: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 VAA09251; Wed, 25 Nov 1998 21:25:00 -0800 (PST) Date: Wed, 25 Nov 1998 21:25:00 -0800 (PST) Message-Id: <199811260525.VAA09251@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/webglimpse Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/25 21:25:00 PST Modified files: www/webglimpse Makefile Log: Mark this NO_CDROM; this depends on glimpse, and it will hang forever if it can't find it. Revision Changes Path 1.6 +2 -1 ports/www/webglimpse/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 21:30:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA26733 for cvs-all-outgoing; Wed, 25 Nov 1998 21:30: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 VAA26728 for ; Wed, 25 Nov 1998 21:30:25 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca3-185.ix.netcom.com [209.109.233.185]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id VAA21379 for ; Wed, 25 Nov 1998 21:30:09 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id VAA26305; Wed, 25 Nov 1998 21:30:01 -0800 (PST) Date: Wed, 25 Nov 1998 21:30:01 -0800 (PST) Message-Id: <199811260530.VAA26305@silvia.hip.berkeley.edu> To: committers@FreeBSD.ORG Subject: ports tree FROZEN now From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Hi all, The ports tree is in the pre-release "freeze" state now. From now until the final release of 2.2.8, all the commits to the ports tree has to be approved by me. There are no exceptions. Thanks for your cooperation. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 21:35:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA27029 for cvs-all-outgoing; Wed, 25 Nov 1998 21:35: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 VAA27022; Wed, 25 Nov 1998 21:35: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 VAA09802; Wed, 25 Nov 1998 21:35:42 -0800 (PST) Date: Wed, 25 Nov 1998 21:35:42 -0800 (PST) Message-Id: <199811260535.VAA09802@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/guileobjc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/25 21:35:42 PST Modified files: lang/guileobjc Makefile Log: Escape quote. Revision Changes Path 1.6 +2 -2 ports/lang/guileobjc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 21:36:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA27136 for cvs-all-outgoing; Wed, 25 Nov 1998 21:36: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 VAA27131; Wed, 25 Nov 1998 21:36: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 VAA09890; Wed, 25 Nov 1998 21:37:11 -0800 (PST) Date: Wed, 25 Nov 1998 21:37:11 -0800 (PST) Message-Id: <199811260537.VAA09890@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mail/tkrat Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/25 21:37:11 PST Modified files: mail/tkrat Makefile Log: Change library name. Revision Changes Path 1.14 +2 -2 ports/mail/tkrat/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 21:42:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA27442 for cvs-all-outgoing; Wed, 25 Nov 1998 21:42: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 VAA27437; Wed, 25 Nov 1998 21:42: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 VAA10158; Wed, 25 Nov 1998 21:43:03 -0800 (PST) Date: Wed, 25 Nov 1998 21:43:03 -0800 (PST) Message-Id: <199811260543.VAA10158@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/teTeX Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/25 21:43:02 PST Modified files: print/teTeX Makefile Log: Sorry, still doesn't package. ===> Building package for teTeX-0.9-981113 tar: can't add file share/texmf/web2c/etex.efmt : No such file or directory tar: can't add file share/texmf/web2c/etex.log : No such file or directory tar: can't add file share/texmf/web2c/lambda.fmt : No such file or directory tar: can't add file share/texmf/web2c/lambda.log : No such file or directory tar: can't add file share/texmf/web2c/omega.fmt : No such file or directory tar: can't add file share/texmf/web2c/omega.log : No such file or directory tar: can't add file share/texmf/web2c/pdflatex.fmt : No such file or directory tar: can't add file share/texmf/web2c/pdflatex.log : No such file or directory tar: can't add file share/texmf/web2c/pdftex.fmt : No such file or directory tar: can't add file share/texmf/web2c/pdftex.log : No such file or directory pkg_create: tar command failed with code 256 Creating package /usr/ports/packages/All/teTeX-0.9-981113.tgz Registering depends: libwww-5.2 png-1.0.2. Creating gzip'd tar ball in '/usr/ports/packages/All/teTeX-0.9-981113.tgz' *** Error code 1 Stop. Revision Changes Path 1.24 +3 -1 ports/print/teTeX/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 21:45:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA27567 for cvs-all-outgoing; Wed, 25 Nov 1998 21:45: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 VAA27562; Wed, 25 Nov 1998 21:45: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 VAA10246; Wed, 25 Nov 1998 21:45:52 -0800 (PST) Date: Wed, 25 Nov 1998 21:45:52 -0800 (PST) Message-Id: <199811260545.VAA10246@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/mhonarc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/25 21:45:52 PST Modified files: www/mhonarc Makefile Log: Doesn't package.... ===> Building package for mhonarc-2.3.3 tar: can't add file lib/perl5/site_perl/MHonArc/base64.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/ewhutil.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/iso8859.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhamain.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhdb.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhdysub.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhexternal.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhfile.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhidxrc.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhindex.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhinit.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhmimetypes.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhmsgfile.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhnote.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhnull.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhopt.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhrcfile.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhrcvars.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhrmm.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhscan.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhsingle.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhthread.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhtime.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhtxttsv.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhtxtenrich.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhtxthtml.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhtxtplain.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhtxtsetext.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhusage.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/mhutil.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/osinit.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/qprint.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/readmail.pl : No such file or directory tar: can't add file lib/perl5/site_perl/MHonArc/rfc822.pl : No such file or directory pkg_create: tar command failed with code 256 Revision Changes Path 1.6 +3 -1 ports/www/mhonarc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 21:59:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA28285 for cvs-all-outgoing; Wed, 25 Nov 1998 21:59:02 -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 VAA28254; Wed, 25 Nov 1998 21:58:49 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca3-185.ix.netcom.com [209.109.233.185]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id VAA21399; Wed, 25 Nov 1998 21:58:43 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id VAA26362; Wed, 25 Nov 1998 21:58:27 -0800 (PST) Date: Wed, 25 Nov 1998 21:58:27 -0800 (PST) Message-Id: <199811260558.VAA26362@silvia.hip.berkeley.edu> To: andreas@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199811252240.OAA21588@freefall.freebsd.org> (message from Andreas Klemm on Wed, 25 Nov 1998 14:40:29 -0800 (PST)) Subject: Re: cvs commit: ports/x11-toolkits/qt141/pkg PLIST From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Modified files: * x11-toolkits/qt141/pkg PLIST * Log: * remove manpages from PLIST as requested by Satoshi Um, you deleted them from PLIST, and where did they go?!? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 22:24:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA29777 for cvs-all-outgoing; Wed, 25 Nov 1998 22:24: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 WAA29772; Wed, 25 Nov 1998 22:24:00 -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 WAA12505; Wed, 25 Nov 1998 22:24:38 -0800 (PST) Date: Wed, 25 Nov 1998 22:24:38 -0800 (PST) Message-Id: <199811260624.WAA12505@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/teTeX-beta Makefile ports/print/teTeX Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/25 22:24:38 PST Modified files: print/teTeX-beta Makefile print/teTeX Makefile Log: Sorry, marked teTeX instead af teTeX-beta broken by mistake. Also, change broken to manual-package-build, it can only be built with an empty /usr/local. Revision Changes Path 1.30 +2 -1 ports/print/teTeX-beta/Makefile 1.25 +1 -3 ports/print/teTeX/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 23:01:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA02475 for cvs-all-outgoing; Wed, 25 Nov 1998 23:01: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 XAA02470; Wed, 25 Nov 1998 23:01:16 -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 XAA13868; Wed, 25 Nov 1998 23:01:54 -0800 (PST) Date: Wed, 25 Nov 1998 23:01:54 -0800 (PST) Message-Id: <199811260701.XAA13868@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/ja/handbook porting.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/25 23:01:54 PST Modified files: ja/handbook porting.sgml Log: Changes between 1.113 -> 1.117 in original are merged. Reviewed by: simokawa@jp.freebsd.org Revision Changes Path 1.51 +855 -274 doc/ja/handbook/porting.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Nov 25 23:14:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA03473 for cvs-all-outgoing; Wed, 25 Nov 1998 23:14: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 XAA03468; Wed, 25 Nov 1998 23:14: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 XAA14424; Wed, 25 Nov 1998 23:14:50 -0800 (PST) Date: Wed, 25 Nov 1998 23:14:50 -0800 (PST) Message-Id: <199811260714.XAA14424@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp Makefile README.alias README.devel alias_cmd.c alias_cmd.h arp.c arp.h async.c async.h auth.c auth.h ccp.c ccp.h chap.c chap.h chap_ms.c chap_ms.h chat.c chat.h command.c command.h deflate.c deflate.h defs.c defs.h filter.c ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/25 23:14:50 PST Modified files: (Branch: RELENG_2_2) usr.sbin/ppp Makefile README.alias README.devel alias_cmd.c alias_cmd.h arp.c arp.h async.c async.h auth.c auth.h ccp.c ccp.h chap.c chap.h chap_ms.c chap_ms.h chat.c chat.h command.c command.h deflate.c deflate.h defs.c defs.h filter.c filter.h fsm.c fsm.h hdlc.c hdlc.h id.c id.h ip.c ip.h ipcp.c ipcp.h iplist.c iplist.h lcp.c lcp.h lcpproto.h log.c log.h lqr.c lqr.h main.c main.h mbuf.c mbuf.h modem.c modem.h pap.c pap.h ppp.8 pred.c pred.h route.c route.h server.c server.h sig.c sig.h slcompress.c slcompress.h systems.c systems.h throughput.c throughput.h timer.c timer.h tun.c tun.h vjcomp.c vjcomp.h Log: MFC: megacommit to bring 2.2 ppp up to full merge status with 3.0. This has been tested at several sites and proven to be substantially less buggy than the 2.2 version. New files have already been tagged in, though they do not appear in this commit. OK'd by: brian Revision Changes Path 1.9.2.18 +22 -15 src/usr.sbin/ppp/Makefile 1.1.2.2 +23 -23 src/usr.sbin/ppp/README.alias 1.1.2.2 +5 -8 src/usr.sbin/ppp/README.devel 1.1.2.6 +74 -54 src/usr.sbin/ppp/alias_cmd.c 1.1.2.3 +5 -3 src/usr.sbin/ppp/alias_cmd.h 1.5.2.7 +70 -105 src/usr.sbin/ppp/arp.c 1.1.4.4 +7 -3 src/usr.sbin/ppp/arp.h 1.5.2.7 +56 -69 src/usr.sbin/ppp/async.c 1.2.2.2 +25 -5 src/usr.sbin/ppp/async.h 1.7.2.10 +172 -105 src/usr.sbin/ppp/auth.c 1.3.2.5 +21 -13 src/usr.sbin/ppp/auth.h 1.7.2.10 +380 -201 src/usr.sbin/ppp/ccp.c 1.3.2.5 +69 -33 src/usr.sbin/ppp/ccp.h 1.7.2.12 +110 -99 src/usr.sbin/ppp/chap.c 1.3.2.4 +15 -3 src/usr.sbin/ppp/chap.h 1.5.2.2 +4 -8 src/usr.sbin/ppp/chap_ms.c 1.2.2.2 +2 -2 src/usr.sbin/ppp/chap_ms.h 1.11.2.19 +578 -458 src/usr.sbin/ppp/chat.c 1.1.4.6 +76 -23 src/usr.sbin/ppp/chat.h 1.24.2.53 +1840 -1057src/usr.sbin/ppp/command.c 1.2.6.5 +27 -26 src/usr.sbin/ppp/command.h 1.6.2.2 +222 -246 src/usr.sbin/ppp/deflate.c 1.3.2.2 +1 -1 src/usr.sbin/ppp/deflate.h 1.11.2.4 +59 -60 src/usr.sbin/ppp/defs.c 1.4.2.12 +34 -38 src/usr.sbin/ppp/defs.h 1.6.2.10 +240 -202 src/usr.sbin/ppp/filter.c 1.4.2.5 +22 -17 src/usr.sbin/ppp/filter.h 1.7.2.11 +484 -289 src/usr.sbin/ppp/fsm.c 1.5.2.5 +61 -34 src/usr.sbin/ppp/fsm.h 1.9.2.9 +282 -220 src/usr.sbin/ppp/hdlc.c 1.4.2.6 +59 -10 src/usr.sbin/ppp/hdlc.h 1.6.2.3 +79 -24 src/usr.sbin/ppp/id.c 1.3.2.3 +7 -2 src/usr.sbin/ppp/id.h 1.9.2.19 +222 -193 src/usr.sbin/ppp/ip.c 1.1.4.4 +12 -9 src/usr.sbin/ppp/ip.h 1.9.2.22 +837 -394 src/usr.sbin/ppp/ipcp.c 1.4.2.6 +75 -43 src/usr.sbin/ppp/ipcp.h 1.4.2.2 +8 -8 src/usr.sbin/ppp/iplist.c 1.2.2.3 +13 -11 src/usr.sbin/ppp/iplist.h 1.10.2.27 +715 -472 src/usr.sbin/ppp/lcp.c 1.4.6.4 +88 -34 src/usr.sbin/ppp/lcp.h 1.4.6.4 +5 -1 src/usr.sbin/ppp/lcpproto.h 1.4.2.11 +273 -51 src/usr.sbin/ppp/log.c 1.6.2.7 +50 -22 src/usr.sbin/ppp/log.h 1.7.2.13 +190 -151 src/usr.sbin/ppp/lqr.c 1.3.2.4 +26 -31 src/usr.sbin/ppp/lqr.h 1.22.2.50 +321 -869 src/usr.sbin/ppp/main.c 1.1.4.4 +2 -8 src/usr.sbin/ppp/main.h 1.3.6.6 +83 -47 src/usr.sbin/ppp/mbuf.c 1.2.6.4 +28 -22 src/usr.sbin/ppp/mbuf.h 1.24.2.33 +658 -494 src/usr.sbin/ppp/modem.c 1.5.2.4 +21 -19 src/usr.sbin/ppp/modem.h 1.7.2.11 +81 -94 src/usr.sbin/ppp/pap.c 1.1.1.1.6.4 +7 -3 src/usr.sbin/ppp/pap.h 1.19.2.39 +1894 -673 src/usr.sbin/ppp/ppp.8 1.7.2.6 +98 -107 src/usr.sbin/ppp/pred.c 1.1.4.4 +1 -1 src/usr.sbin/ppp/pred.h 1.9.2.15 +203 -215 src/usr.sbin/ppp/route.c 1.1.4.4 +29 -5 src/usr.sbin/ppp/route.h 1.1.2.8 +180 -64 src/usr.sbin/ppp/server.c 1.1.2.4 +21 -5 src/usr.sbin/ppp/server.h 1.2.2.6 +4 -6 src/usr.sbin/ppp/sig.c 1.2.2.6 +3 -3 src/usr.sbin/ppp/sig.h 1.6.2.7 +70 -64 src/usr.sbin/ppp/slcompress.c 1.3.6.6 +26 -11 src/usr.sbin/ppp/slcompress.h 1.6.2.11 +155 -133 src/usr.sbin/ppp/systems.c 1.1.4.5 +9 -3 src/usr.sbin/ppp/systems.h 1.4.2.2 +83 -33 src/usr.sbin/ppp/throughput.c 1.2.2.2 +12 -3 src/usr.sbin/ppp/throughput.h 1.5.2.10 +70 -112 src/usr.sbin/ppp/timer.c 1.5.2.2 +10 -11 src/usr.sbin/ppp/timer.h 1.6.2.2 +28 -16 src/usr.sbin/ppp/tun.c 1.3.2.3 +6 -4 src/usr.sbin/ppp/tun.h 1.4.2.6 +48 -35 src/usr.sbin/ppp/vjcomp.c 1.5.2.2 +8 -4 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 Wed Nov 25 23:40:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA05821 for cvs-all-outgoing; Wed, 25 Nov 1998 23:40: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 XAA05815; Wed, 25 Nov 1998 23:40:18 -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 XAA15288; Wed, 25 Nov 1998 23:40:56 -0800 (PST) Date: Wed, 25 Nov 1998 23:40:56 -0800 (PST) Message-Id: <199811260740.XAA15288@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mail/smtpfeed Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/25 23:40:56 PST Modified files: mail/smtpfeed Makefile Log: Mark broken, can't fetch. Revision Changes Path 1.21 +3 -1 ports/mail/smtpfeed/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 00:01:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA07176 for cvs-all-outgoing; Thu, 26 Nov 1998 00:01: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 AAA07171; Thu, 26 Nov 1998 00:01: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 AAA16152; Thu, 26 Nov 1998 00:02:03 -0800 (PST) Date: Thu, 26 Nov 1998 00:02:03 -0800 (PST) Message-Id: <199811260802.AAA16152@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/emulators/xzx Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/26 00:02:03 PST Modified files: emulators/xzx Makefile Log: Add another master site. Submitted by: Sheldon Hearn Revision Changes Path 1.8 +3 -2 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 Thu Nov 26 02:47:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA17109 for cvs-all-outgoing; Thu, 26 Nov 1998 02:47: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 CAA17104; Thu, 26 Nov 1998 02:47:16 -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 CAA23097; Thu, 26 Nov 1998 02:47:54 -0800 (PST) Date: Thu, 26 Nov 1998 02:47:54 -0800 (PST) Message-Id: <199811261047.CAA23097@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/cam/scsi scsi_sa.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk joerg 1998/11/26 02:47:53 PST Modified files: sys/cam/scsi scsi_sa.c Log: ...nor does this old TDC3620 like to be asked for compression. But well, now it's running again! Revision Changes Path 1.6 +5 -1 src/sys/cam/scsi/scsi_sa.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 03:10:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA18277 for cvs-all-outgoing; Thu, 26 Nov 1998 03:10: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 DAA18272; Thu, 26 Nov 1998 03:10:52 -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 DAA24127; Thu, 26 Nov 1998 03:11:30 -0800 (PST) Date: Thu, 26 Nov 1998 03:11:30 -0800 (PST) Message-Id: <199811261111.DAA24127@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/boot/netboot Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk joerg 1998/11/26 03:11:30 PST Modified files: sys/i386/boot/netboot Makefile Log: Make netboot work again. All this depends on the object format being a.out (by now). Revision Changes Path 1.20 +13 -10 src/sys/i386/boot/netboot/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 03:47:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA20618 for cvs-all-outgoing; Thu, 26 Nov 1998 03:47: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 DAA20613; Thu, 26 Nov 1998 03:47:14 -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 DAA25963; Thu, 26 Nov 1998 03:47:52 -0800 (PST) Date: Thu, 26 Nov 1998 03:47:52 -0800 (PST) Message-Id: <199811261147.DAA25963@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/boot/netboot Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/11/26 03:47:52 PST Modified files: sys/pc98/boot/netboot Makefile Log: Sync with sys/i386/boot/netboot/Makefile revision 1.20. Revision Changes Path 1.8 +12 -9 src/sys/pc98/boot/netboot/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 04:23:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA24942 for cvs-all-outgoing; Thu, 26 Nov 1998 04:23: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 EAA24937; Thu, 26 Nov 1998 04:23:57 -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 EAA28469; Thu, 26 Nov 1998 04:24:36 -0800 (PST) Date: Thu, 26 Nov 1998 04:24:36 -0800 (PST) Message-Id: <199811261224.EAA28469@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sbin/i386/fdisk fdisk.8 fdisk.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk joerg 1998/11/26 04:24:36 PST Modified files: sbin/i386/fdisk fdisk.8 fdisk.c Log: sd0 -> da0 Revision Changes Path 1.11 +2 -2 src/sbin/i386/fdisk/fdisk.8 1.27 +2 -2 src/sbin/i386/fdisk/fdisk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 04:41:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA25882 for cvs-all-outgoing; Thu, 26 Nov 1998 04:41: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 EAA25875; Thu, 26 Nov 1998 04:41: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 EAA29197; Thu, 26 Nov 1998 04:42:07 -0800 (PST) Date: Thu, 26 Nov 1998 04:42:07 -0800 (PST) Message-Id: <199811261242.EAA29197@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall network.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/26 04:42:07 PST Modified files: (Branch: RELENG_2_2) release/sysinstall network.c Log: Now that ppp is merged, update the config file we write. Revision Changes Path 1.16.2.16 +2 -1 src/release/sysinstall/network.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 04:42:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA26154 for cvs-all-outgoing; Thu, 26 Nov 1998 04:42: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 EAA26149; Thu, 26 Nov 1998 04:42:49 -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 EAA29249; Thu, 26 Nov 1998 04:43:28 -0800 (PST) Date: Thu, 26 Nov 1998 04:43:28 -0800 (PST) Message-Id: <199811261243.EAA29249@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/etc/ppp ppp.conf.sample ppp.deny ppp.linkdown.sample ppp.linkup.sample ppp.secret.sample ppp.shells.sample Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/26 04:43:27 PST Modified files: (Branch: RELENG_2_2) etc/ppp ppp.conf.sample ppp.deny ppp.linkdown.sample ppp.linkup.sample ppp.secret.sample ppp.shells.sample Log: MFC: Update ppp sample files. Revision Changes Path 1.5.2.16 +183 -69 src/etc/ppp/ppp.conf.sample 1.1.2.2 +1 -1 src/etc/ppp/ppp.deny 1.1.2.2 +9 -1 src/etc/ppp/ppp.linkdown.sample 1.3.2.6 +8 -14 src/etc/ppp/ppp.linkup.sample 1.2.6.2 +29 -11 src/etc/ppp/ppp.secret.sample 1.1.2.2 +1 -1 src/etc/ppp/ppp.shells.sample To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 04:45:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA26249 for cvs-all-outgoing; Thu, 26 Nov 1998 04: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 EAA26244; Thu, 26 Nov 1998 04:45:50 -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 EAA29420; Thu, 26 Nov 1998 04:46:29 -0800 (PST) Date: Thu, 26 Nov 1998 04:46:29 -0800 (PST) Message-Id: <199811261246.EAA29420@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/texts RELNOTES.TXT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/26 04:46:29 PST Modified files: (Branch: RELENG_2_2) release/texts RELNOTES.TXT Log: Note merge of ppp. Revision Changes Path 1.2.2.4 +3 -0 src/release/texts/RELNOTES.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 04:58:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA27065 for cvs-all-outgoing; Thu, 26 Nov 1998 04:58: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 EAA27060; Thu, 26 Nov 1998 04:58:43 -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 EAA29934; Thu, 26 Nov 1998 04:59:21 -0800 (PST) Date: Thu, 26 Nov 1998 04:59:21 -0800 (PST) Message-Id: <199811261259.EAA29934@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/top machine.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/11/26 04:59:21 PST Modified files: usr.bin/top machine.c Log: Removed unused nlist'ed variables stathz and hz. These used to be used to half compensate for broken scaling of p_pctcpu in the kernel, but the previous commit removed this compensation. %cpu values will be wrong by a factor of stathz/hz until the kernel is fixed. (The kernel gets it wrong by a factor of stathz/hz, and top got the compensation wrong by a factor of 100/stathz.) Revision Changes Path 1.17 +13 -26 src/usr.bin/top/machine.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 05:22:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA28378 for cvs-all-outgoing; Thu, 26 Nov 1998 05:22:18 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.15.68.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA28361; Thu, 26 Nov 1998 05:22:07 -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 AAA21735; Fri, 27 Nov 1998 00:22:01 +1100 Date: Fri, 27 Nov 1998 00:22:01 +1100 From: Bruce Evans Message-Id: <199811261322.AAA21735@godzilla.zeta.org.au> To: bde@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/top machine.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > previous commit removed this compensation. %cpu values will be wrong by > a factor of stathz/hz until the kernel is fixed. (The kernel gets it > wrong by a factor of stathz/hz, and top got the compensation wrong by > a factor of 100/stathz.) ^^^^^^^^^^ Oops, actually 100/hz (normally 1). `hz' was also overloaded to hold stathz in top. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 05:44:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA29805 for cvs-all-outgoing; Thu, 26 Nov 1998 05:44: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 FAA29800; Thu, 26 Nov 1998 05:44:44 -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 FAA01811; Thu, 26 Nov 1998 05:45:22 -0800 (PST) Date: Thu, 26 Nov 1998 05:45:22 -0800 (PST) Message-Id: <199811261345.FAA01811@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/projects projects.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/11/26 05:45:22 PST Modified files: en/projects projects.sgml Log: New URL for BSD ATM Added description form BSD ATM Submitted by: Jeroen Ruigrok/Asmodai Revision Changes Path 1.32 +17 -3 www/en/projects/projects.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 05:50:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA00162 for cvs-all-outgoing; Thu, 26 Nov 1998 05:50: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 FAA00119; Thu, 26 Nov 1998 05:50:00 -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 FAA02204; Thu, 26 Nov 1998 05:50:39 -0800 (PST) Date: Thu, 26 Nov 1998 05:50:39 -0800 (PST) Message-Id: <199811261350.FAA02204@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/ghostscript300 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/11/26 05:50:38 PST Modified files: japanese/ghostscript300 Makefile Log: Mark BROKEN for ELF: /usr/libexec/elf/ld: warning: libSM.so.6, needed by /usr/X11R6/lib/libXt.so, not found (try using --rpath) /usr/libexec/elf/ld: warning: libICE.so.6, needed by /usr/X11R6/lib/libXt.so, not found (try using --rpath) /usr/X11R6/lib/libXt.so: undefined reference to `SmcSaveYourselfDone' /usr/X11R6/lib/libXt.so: undefined reference to `IceConnectionNumber' Revision Changes Path 1.15 +2 -1 ports/japanese/ghostscript300/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 05:59:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA00903 for cvs-all-outgoing; Thu, 26 Nov 1998 05:59: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 FAA00898; Thu, 26 Nov 1998 05:59: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 GAA02641; Thu, 26 Nov 1998 06:00:09 -0800 (PST) Date: Thu, 26 Nov 1998 06:00:09 -0800 (PST) Message-Id: <199811261400.GAA02641@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern kern_synch.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/11/26 06:00:09 PST Modified files: sys/kern kern_synch.c Log: Fixed scaling of p_pctcpu. It was wrong by a factor of stathz/hz. Until recently, this was half compensated for in at least ps and top by multiplying by 100/stathz to get a better wrong factor of 100/hz. Revision Changes Path 1.66 +8 -8 src/sys/kern/kern_synch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 06:05:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA01485 for cvs-all-outgoing; Thu, 26 Nov 1998 06:05: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 GAA01480; Thu, 26 Nov 1998 06:05:20 -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 GAA02839; Thu, 26 Nov 1998 06:05:58 -0800 (PST) Date: Thu, 26 Nov 1998 06:05:58 -0800 (PST) Message-Id: <199811261405.GAA02839@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern kern_synch.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/11/26 06:05:58 PST Modified files: sys/kern kern_synch.c Log: Oops, yet again back out some local changes that shouldn't have been in the previous commit. Revision Changes Path 1.67 +5 -5 src/sys/kern/kern_synch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 06:11:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA02280 for cvs-all-outgoing; Thu, 26 Nov 1998 06:11:54 -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 GAA02273; Thu, 26 Nov 1998 06:11:52 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca3-185.ix.netcom.com [209.109.233.185]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id GAA21819; Thu, 26 Nov 1998 06:11:46 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id GAA27482; Thu, 26 Nov 1998 06:11:42 -0800 (PST) Date: Thu, 26 Nov 1998 06:11:42 -0800 (PST) Message-Id: <199811261411.GAA27482@silvia.hip.berkeley.edu> To: jseger@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199811261350.FAA02204@freefall.freebsd.org> (jseger@FreeBSD.ORG) Subject: Re: cvs commit: ports/japanese/ghostscript300 Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Log: * Mark BROKEN for ELF: You forgot to add: === Approved by: asami === Satoshi :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 07:42:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA08960 for cvs-all-outgoing; Thu, 26 Nov 1998 07:42: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 HAA08955; Thu, 26 Nov 1998 07:42:00 -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 HAA23412; Thu, 26 Nov 1998 07:42:39 -0800 (PST) Date: Thu, 26 Nov 1998 07:42:39 -0800 (PST) Message-Id: <199811261542.HAA23412@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/gimp Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/11/26 07:42:38 PST Modified files: japanese/gimp Makefile Log: Mark BROKEN for ELF: ===> Compressing manual pages for ja-gimp-1.0.2 ===> Registering installation for ja-gimp-1.0.2 ===> Building package for ja-gimp-1.0.2 Creating package /usr/ports/packages/All/ja-gimp-1.0.2.tgz Registering depends: XFree86-3.3.3 aalib-1.2 ja-gtk-1.0.6 jpeg-6b mpeg_lib-1.2.1 png-1.0.2 tiff-3.4 xdelta-0.23 xpm-3.4k. Creating gzip'd tar ball in '/usr/ports/packages/All/ja-gimp-1.0.2.tgz' tar: can't add file libexec/gimp/1.0/plug-ins/xd : No such file or directory /usr/sbin/pkg_create: tar command failed with code 256 *** Error code 1 Approved by: asami Revision Changes Path 1.5 +2 -1 ports/japanese/gimp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 08:49:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA13348 for cvs-all-outgoing; Thu, 26 Nov 1998 08:49: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 IAA13338; Thu, 26 Nov 1998 08:49:17 -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 IAA26734; Thu, 26 Nov 1998 08:49:55 -0800 (PST) Date: Thu, 26 Nov 1998 08:49:55 -0800 (PST) Message-Id: <199811261649.IAA26734@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern kern_synch.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/11/26 08:49:55 PST Modified files: sys/kern kern_synch.c Log: Fixed the previous fix - stathz doesn't give the statclock frequency when it is 0. Submitted by: mostly by Hidetoshi Shimokawa Revision Changes Path 1.68 +6 -5 src/sys/kern/kern_synch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 10:49:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA23756 for cvs-all-outgoing; Thu, 26 Nov 1998 10:49: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 KAA23751; Thu, 26 Nov 1998 10:49:46 -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 KAA04187; Thu, 26 Nov 1998 10:50:24 -0800 (PST) Date: Thu, 26 Nov 1998 10:50:24 -0800 (PST) Message-Id: <199811261850.KAA04187@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/i386 machdep.c mp_machdep.c src/sys/kern kern_lock.c src/sys/miscfs/devfs devfs_tree.c src/sys/netatalk at_rmx.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk eivind 1998/11/26 10:50:24 PST Modified files: sys/i386/i386 machdep.c mp_machdep.c sys/kern kern_lock.c sys/miscfs/devfs devfs_tree.c sys/netatalk at_rmx.c Log: Staticize. Revision Changes Path 1.316 +3 -3 src/sys/i386/i386/machdep.c 1.84 +3 -3 src/sys/i386/i386/mp_machdep.c 1.20 +2 -2 src/sys/kern/kern_lock.c 1.57 +2 -2 src/sys/miscfs/devfs/devfs_tree.c 1.5 +2 -2 src/sys/netatalk/at_rmx.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 10:54:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA24262 for cvs-all-outgoing; Thu, 26 Nov 1998 10:54: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 KAA24257; Thu, 26 Nov 1998 10:54:15 -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 KAA04559; Thu, 26 Nov 1998 10:54:53 -0800 (PST) Date: Thu, 26 Nov 1998 10:54:53 -0800 (PST) Message-Id: <199811261854.KAA04559@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/netinet fil.c ip_auth.c ip_frag.c ip_fw.c ip_log.c ip_nat.c ip_state.c mlf_ipl.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk eivind 1998/11/26 10:54:53 PST Modified files: sys/netinet fil.c ip_auth.c ip_frag.c ip_fw.c ip_log.c ip_nat.c ip_state.c mlf_ipl.c Log: Staticize some more. Revision Changes Path 1.4 +4 -4 src/sys/netinet/fil.c 1.6 +4 -4 src/sys/netinet/ip_auth.c 1.3 +6 -6 src/sys/netinet/ip_frag.c 1.99 +2 -2 src/sys/netinet/ip_fw.c 1.5 +3 -3 src/sys/netinet/ip_log.c 1.5 +4 -4 src/sys/netinet/ip_nat.c 1.4 +4 -4 src/sys/netinet/ip_state.c 1.9 +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 Thu Nov 26 12:32:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA02256 for cvs-all-outgoing; Thu, 26 Nov 1998 12:32: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 MAA02235; Thu, 26 Nov 1998 12:32:01 -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 MAA09890; Thu, 26 Nov 1998 12:32:38 -0800 (PST) Date: Thu, 26 Nov 1998 12:32:38 -0800 (PST) Message-Id: <199811262032.MAA09890@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall sysinstall.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/26 12:32:38 PST Modified files: (Branch: RELENG_2_2) release/sysinstall sysinstall.h Log: MFC: inexplicably missed patch. Revision Changes Path 1.82.2.56 +1 -2 src/release/sysinstall/sysinstall.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 13:57:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA08763 for cvs-all-outgoing; Thu, 26 Nov 1998 13:57: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 NAA08758; Thu, 26 Nov 1998 13:57:14 -0800 (PST) (envelope-from n_hibma@FreeBSD.org) From: Nick Hibma Received: (from n_hibma@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA13890; Thu, 26 Nov 1998 13:57:53 -0800 (PST) Date: Thu, 26 Nov 1998 13:57:53 -0800 (PST) Message-Id: <199811262157.NAA13890@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pci pcisupport.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk n_hibma 1998/11/26 13:57:53 PST Modified files: sys/pci pcisupport.c Log: Removed probes for USB chips 82371xB (done in dev/pci/uhci_pci.c) Revision Changes Path 1.74 +1 -5 src/sys/pci/pcisupport.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 14:32:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA11338 for cvs-all-outgoing; Thu, 26 Nov 1998 14:32: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 OAA11333; Thu, 26 Nov 1998 14:32:56 -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 OAA15969; Thu, 26 Nov 1998 14:33:35 -0800 (PST) Date: Thu, 26 Nov 1998 14:33:35 -0800 (PST) Message-Id: <199811262233.OAA15969@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/es/FAQ FAQ.sgml Makefile acknowledgments.sgml admin.sgml applications.sgml commercial.sgml hackers.sgml hardware.sgml includes.sgml install.sgml kernelconfig.sgml misc.sgml network.sgml preface.sgml serial.sgml troubleshoot.sgml ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nik 1998/11/26 14:33:35 PST Modified files: es/FAQ FAQ.sgml Makefile acknowledgments.sgml admin.sgml applications.sgml commercial.sgml hackers.sgml hardware.sgml includes.sgml install.sgml kernelconfig.sgml misc.sgml network.sgml preface.sgml serial.sgml troubleshoot.sgml x.sgml Log: Updates to the Spanish FAQ, given to me to commit by the FAQ maintainer. Submitted by: jesusr@ncsa.es Revision Changes Path 1.3 +1 -1 doc/es/FAQ/FAQ.sgml 1.3 +3 -2 doc/es/FAQ/Makefile 1.3 +0 -0 doc/es/FAQ/acknowledgments.sgml 1.3 +113 -10 doc/es/FAQ/admin.sgml 1.3 +6 -0 doc/es/FAQ/applications.sgml 1.3 +0 -0 doc/es/FAQ/commercial.sgml 1.3 +17 -2 doc/es/FAQ/hackers.sgml 1.3 +88 -0 doc/es/FAQ/hardware.sgml 1.3 +0 -0 doc/es/FAQ/includes.sgml 1.3 +254 -10 doc/es/FAQ/install.sgml 1.3 +0 -0 doc/es/FAQ/kernelconfig.sgml 1.3 +1 -1 doc/es/FAQ/misc.sgml 1.3 +15 -0 doc/es/FAQ/network.sgml 1.3 +94 -0 doc/es/FAQ/preface.sgml 1.3 +20 -1 doc/es/FAQ/serial.sgml 1.3 +17 -0 doc/es/FAQ/troubleshoot.sgml 1.3 +16 -0 doc/es/FAQ/x.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 15:12:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA14554 for cvs-all-outgoing; Thu, 26 Nov 1998 15:12: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 PAA14548; Thu, 26 Nov 1998 15:12:35 -0800 (PST) (envelope-from n_hibma@FreeBSD.org) From: Nick Hibma Received: (from n_hibma@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA18154; Thu, 26 Nov 1998 15:13:13 -0800 (PST) Date: Thu, 26 Nov 1998 15:13:13 -0800 (PST) Message-Id: <199811262313.PAA18154@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/conf GENERIC src/sys/conf files options src/usr.sbin/usbd Makefile usbd.8 usbd.c src/usr.sbin/usbdevs Makefile usbdevs.8 usbdevs.c src/sys/dev/usb hid.c hid.h ohcireg.h ohcivar.h queue.addendum.h ugen.c uhci.c uhcireg.h uhcivar.h ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk n_hibma 1998/11/26 15:13:13 PST Modified files: sys/i386/conf GENERIC sys/conf files options Added files: usr.sbin/usbd Makefile usbd.8 usbd.c usr.sbin/usbdevs Makefile usbdevs.8 usbdevs.c sys/dev/usb hid.c hid.h ohcireg.h ohcivar.h queue.addendum.h ugen.c uhci.c uhcireg.h uhcivar.h uhid.c uhub.c ukbd.c ulpt.c ums.c usb.c usb.h usb_if.m usb_mem.h usb_port.h usb_quirks.c usb_quirks.h usb_subr.c usbdevs.h usbdevs_data.h usbdi.c usbdi.h usbdi_util.c usbdi_util.h usbdivar.h usbhid.h sys/dev/pci uhci_pci.c Log: Initial commit of ported NetBSD USB stack Revision Changes Path 1.132 +20 -1 src/sys/i386/conf/GENERIC 1.176 +31 -0 src/sys/conf/files 1.109 +5 -1 src/sys/conf/options To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 15:13:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA14802 for cvs-all-outgoing; Thu, 26 Nov 1998 15:13: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 PAA14797; Thu, 26 Nov 1998 15:13:45 -0800 (PST) (envelope-from tegge@FreeBSD.org) From: Tor Egge Received: (from tegge@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA18273; Thu, 26 Nov 1998 15:14:23 -0800 (PST) Date: Thu, 26 Nov 1998 15:14:23 -0800 (PST) Message-Id: <199811262314.PAA18273@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/i386 mp_machdep.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tegge 1998/11/26 15:14:23 PST Modified files: sys/i386/i386 mp_machdep.c Log: Attempt to handle interrupts delivered to all IO APICs by using the first IO APIC with a sufficient number of pins. Revision Changes Path 1.85 +17 -2 src/sys/i386/i386/mp_machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 15:56:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA18594 for cvs-all-outgoing; Thu, 26 Nov 1998 15:56: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 PAA18586; Thu, 26 Nov 1998 15:56: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 PAA23822; Thu, 26 Nov 1998 15:56:58 -0800 (PST) Date: Thu, 26 Nov 1998 15:56:58 -0800 (PST) Message-Id: <199811262356.PAA23822@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/handbook porting.sgml doc/ja/handbook porting.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/26 15:56:58 PST Modified files: handbook porting.sgml ja/handbook porting.sgml Log: Fix two typos. One of them is reflected in the Japanese version as well. Submitted by: simokawa-sensei Revision Changes Path 1.118 +3 -3 doc/handbook/porting.sgml 1.52 +3 -3 doc/ja/handbook/porting.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 16:01:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA19238 for cvs-all-outgoing; Thu, 26 Nov 1998 16:01: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 QAA19230; Thu, 26 Nov 1998 16:01:39 -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 QAA26180; Thu, 26 Nov 1998 16:02:16 -0800 (PST) Date: Thu, 26 Nov 1998 16:02:16 -0800 (PST) Message-Id: <199811270002.QAA26180@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/handbook Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/26 16:02:16 PST Modified files: japanese/handbook Makefile Log: Change name of package to "-2.2.8" to approximate the release level we are at. Revision Changes Path 1.12 +3 -3 ports/japanese/handbook/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 16:08:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA21644 for cvs-all-outgoing; Thu, 26 Nov 1998 16:08: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 QAA21639; Thu, 26 Nov 1998 16:08: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 QAA29405; Thu, 26 Nov 1998 16:09:12 -0800 (PST) Date: Thu, 26 Nov 1998 16:09:12 -0800 (PST) Message-Id: <199811270009.QAA29405@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/elk Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/26 16:09:12 PST Modified files: lang/elk Makefile Log: This port requires X to compile, so define USE_XLIB. Revision Changes Path 1.17 +2 -1 ports/lang/elk/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 16:29:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA23169 for cvs-all-outgoing; Thu, 26 Nov 1998 16: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 QAA23164; Thu, 26 Nov 1998 16:29:32 -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 QAA09704; Thu, 26 Nov 1998 16:30:11 -0800 (PST) Date: Thu, 26 Nov 1998 16:30:11 -0800 (PST) Message-Id: <199811270030.QAA09704@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall dist.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/26 16:30:10 PST Modified files: release/sysinstall dist.c Log: Update for XFree86 3.3.3 Revision Changes Path 1.131 +4 -4 src/release/sysinstall/dist.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 16:30:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA23454 for cvs-all-outgoing; Thu, 26 Nov 1998 16:30: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 QAA23449; Thu, 26 Nov 1998 16:30: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 QAA10103; Thu, 26 Nov 1998 16:31:01 -0800 (PST) Date: Thu, 26 Nov 1998 16:31:01 -0800 (PST) Message-Id: <199811270031.QAA10103@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall dist.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/26 16:31:01 PST Modified files: (Branch: RELENG_2_2) release/sysinstall dist.c Log: MFC: update for XFree86 3.3.3 Revision Changes Path 1.73.2.51 +4 -4 src/release/sysinstall/dist.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 16:32:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA23626 for cvs-all-outgoing; Thu, 26 Nov 1998 16: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 QAA23621; Thu, 26 Nov 1998 16:32: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 QAA10708; Thu, 26 Nov 1998 16:33:30 -0800 (PST) Date: Thu, 26 Nov 1998 16:33:30 -0800 (PST) Message-Id: <199811270033.QAA10708@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports INDEX Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/26 16:33:30 PST Modified files: . INDEX Log: 1,876 ports. Huge diff is due to XFree86-3.3.3 upgrade. Revision Changes Path 1.198 +746 -741 ports/INDEX To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 17:13:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA27128 for cvs-all-outgoing; Thu, 26 Nov 1998 17:13: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 RAA27123; Thu, 26 Nov 1998 17:13:44 -0800 (PST) (envelope-from tegge@FreeBSD.org) From: Tor Egge Received: (from tegge@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA29012; Thu, 26 Nov 1998 17:14:22 -0800 (PST) Date: Thu, 26 Nov 1998 17:14:22 -0800 (PST) Message-Id: <199811270114.RAA29012@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern vfs_aio.c src/sys/i386/i386 pmap.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tegge 1998/11/26 17:14:22 PST Modified files: sys/kern vfs_aio.c sys/i386/i386 pmap.c Log: Don't forget to update the pmap associated with aio daemons when adding new page directory entries for a growing kernel virtual address space. Revision Changes Path 1.35 +2 -2 src/sys/kern/vfs_aio.c 1.214 +8 -1 src/sys/i386/i386/pmap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 18:57:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA03755 for cvs-all-outgoing; Thu, 26 Nov 1998 18:57:25 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from outmail.utsunomiya-u.ac.jp (outmail.utsunomiya-u.ac.jp [160.12.196.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA03748; Thu, 26 Nov 1998 18:57:21 -0800 (PST) (envelope-from yokota@zodiac.mech.utsunomiya-u.ac.jp) Received: from zodiac.mech.utsunomiya-u.ac.jp (IDENT:NRPOzUPjymxKjZxkUHXnECbNOAGU47iE@zodiac.mech.utsunomiya-u.ac.jp [160.12.42.1]) by outmail.utsunomiya-u.ac.jp (8.9.1/8.9.1) with ESMTP id LAA05860; Fri, 27 Nov 1998 11:57:14 +0900 (JST) Received: from zodiac.mech.utsunomiya-u.ac.jp (zodiac.mech.utsunomiya-u.ac.jp [160.12.42.1]) by zodiac.mech.utsunomiya-u.ac.jp (8.7.6+2.6Wbeta7/3.4W/zodiac-May96) with ESMTP id LAA24324; Fri, 27 Nov 1998 11:58:59 +0900 (JST) Message-Id: <199811270258.LAA24324@zodiac.mech.utsunomiya-u.ac.jp> To: Nick Hibma cc: cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: src/sys/i386/conf GENERIC src/sys/conf files options src/usr.sbin/usbd Makefile usbd.8 usbd.c src/usr.sbin/usbdevs Makefile usbdevs.8 usbdevs.c src/sys/dev/usb hid.c hid.h ohcireg.h ohcivar.h queue.addendum.h ugen.c uhci.c uhcireg.h uhcivar.h ... In-reply-to: Your message of "Thu, 26 Nov 1998 15:13:13 PST." <199811262313.PAA18154@freefall.freebsd.org> References: <199811262313.PAA18154@freefall.freebsd.org> Date: Fri, 27 Nov 1998 11:58:58 +0900 From: Kazutaka YOKOTA Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >n_hibma 1998/11/26 15:13:13 PST > > Modified files: > sys/i386/conf GENERIC > sys/conf files options > Added files: > usr.sbin/usbd Makefile usbd.8 usbd.c > usr.sbin/usbdevs Makefile usbdevs.8 usbdevs.c > sys/dev/usb hid.c hid.h ohcireg.h ohcivar.h > queue.addendum.h ugen.c uhci.c uhcireg.h > uhcivar.h uhid.c uhub.c ukbd.c ulpt.c > ums.c usb.c usb.h usb_if.m usb_mem.h > usb_port.h usb_quirks.c usb_quirks.h > usb_subr.c usbdevs.h usbdevs_data.h > usbdi.c usbdi.h usbdi_util.c usbdi_util.h > usbdivar.h usbhid.h > sys/dev/pci uhci_pci.c > Log: > Initial commit of ported NetBSD USB stack Hurray! Kazu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 20:03:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA07989 for cvs-all-outgoing; Thu, 26 Nov 1998 20:03: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 UAA07984; Thu, 26 Nov 1998 20:03: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 UAA11664; Thu, 26 Nov 1998 20:04:03 -0800 (PST) Date: Thu, 26 Nov 1998 20:04:03 -0800 (PST) Message-Id: <199811270404.UAA11664@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/gimp Makefile ports/japanese/gimp/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/26 20:04:02 PST Modified files: japanese/gimp Makefile japanese/gimp/pkg PLIST Log: Remove xdelta dependency. It's actually not xdelta that's the problem, it's the renamed glib that's confusing configure (now called glibjp, but configure is still looking for -lglib), but I don't have time to fix it now. Revision Changes Path 1.6 +2 -5 ports/japanese/gimp/Makefile 1.2 +0 -1 ports/japanese/gimp/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 Nov 26 22:30:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA15989 for cvs-all-outgoing; Thu, 26 Nov 1998 22:30: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 WAA15984; Thu, 26 Nov 1998 22:30: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 WAA19071; Thu, 26 Nov 1998 22:30:53 -0800 (PST) Date: Thu, 26 Nov 1998 22:30:53 -0800 (PST) Message-Id: <199811270630.WAA19071@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/astro/sattrack Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/26 22:30:52 PST Modified files: astro/sattrack Makefile Log: Define USE_XLIB. Revision Changes Path 1.9 +2 -1 ports/astro/sattrack/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Nov 26 23:05:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA18447 for cvs-all-outgoing; Thu, 26 Nov 1998 23:05: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 XAA18442; Thu, 26 Nov 1998 23:05:33 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA20567; Thu, 26 Nov 1998 23:06:12 -0800 (PST) Date: Thu, 26 Nov 1998 23:06:12 -0800 (PST) Message-Id: <199811270706.XAA20567@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/etc rc.network Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1998/11/26 23:06:11 PST Modified files: etc rc.network Log: Direct std{err,out} to /dev/null when invoking sysctl(8) for setting `nfs_access_cache_timeout'. Submitted by: Andre Albsmeier Revision Changes Path 1.36 +4 -3 src/etc/rc.network To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 01:04:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA28427 for cvs-all-outgoing; Fri, 27 Nov 1998 01:04: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 BAA28422; Fri, 27 Nov 1998 01:04:13 -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 BAA27328; Fri, 27 Nov 1998 01:04:51 -0800 (PST) Date: Fri, 27 Nov 1998 01:04:51 -0800 (PST) Message-Id: <199811270904.BAA27328@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/audio/cddbd Makefile ports/x11-toolkits/v Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/27 01:04:51 PST Modified files: audio/cddbd Makefile x11-toolkits/v Makefile Log: Unbreak (new master sites). Submitted by: Josh Gilliam Revision Changes Path 1.3 +3 -5 ports/audio/cddbd/Makefile 1.8 +4 -4 ports/x11-toolkits/v/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 02:18:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA04898 for cvs-all-outgoing; Fri, 27 Nov 1998 02:18: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 CAA04893; Fri, 27 Nov 1998 02:18: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 CAA04486; Fri, 27 Nov 1998 02:18:56 -0800 (PST) Date: Fri, 27 Nov 1998 02:18:56 -0800 (PST) Message-Id: <199811271018.CAA04486@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/tools/tools/kernxref kernxref.sh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/11/27 02:18:56 PST Modified files: tools/tools/kernxref kernxref.sh Log: Ignore objects used to build utilities (*aicasm*.o and *genassym*.o). Revision Changes Path 1.9 +3 -2 src/tools/tools/kernxref/kernxref.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 03:43:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA11035 for cvs-all-outgoing; Fri, 27 Nov 1998 03:43: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 DAA11030; Fri, 27 Nov 1998 03:43: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 DAA10614; Fri, 27 Nov 1998 03:44:26 -0800 (PST) Date: Fri, 27 Nov 1998 03:44:26 -0800 (PST) Message-Id: <199811271144.DAA10614@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern kern_synch.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dg 1998/11/27 03:44:26 PST Modified files: sys/kern kern_synch.c Log: Compare p_cpulimit with RLIM_INFINITY before comparing it with the process runtime. p_runtime is unsigned while p_cpulimit is not, so this avoids the nasty side effect of the process getting killed when the runtime comes up "negative" due to other bugs. Revision Changes Path 1.69 +3 -2 src/sys/kern/kern_synch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 07:18:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA28905 for cvs-all-outgoing; Fri, 27 Nov 1998 07: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 HAA28899; Fri, 27 Nov 1998 07:18:05 -0800 (PST) (envelope-from wes@FreeBSD.org) From: Wes Peters Received: (from wes@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA27131; Fri, 27 Nov 1998 07:18:43 -0800 (PST) Date: Fri, 27 Nov 1998 07:18:43 -0800 (PST) Message-Id: <199811271518.HAA27131@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/handbook authors.sgml contrib.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wes 1998/11/27 07:18:43 PST Modified files: handbook authors.sgml contrib.sgml Log: Reviewed by: jkh Submitted by: wes Added me to the contributors list. Look out! Revision Changes Path 1.126 +5 -1 doc/handbook/authors.sgml 1.323 +2 -1 doc/handbook/contrib.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 13:19:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA25532 for cvs-all-outgoing; Fri, 27 Nov 1998 13:19: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 NAA25527; Fri, 27 Nov 1998 13:19:14 -0800 (PST) (envelope-from dfr@FreeBSD.org) From: Doug Rabson Received: (from dfr@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA20119; Fri, 27 Nov 1998 13:19:53 -0800 (PST) Date: Fri, 27 Nov 1998 13:19:53 -0800 (PST) Message-Id: <199811272119.NAA20119@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/libexec/rtld-elf rtld.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dfr 1998/11/27 13:19:52 PST Modified files: libexec/rtld-elf rtld.c Log: Use the runpath of the main program for locating libraries loaded by dlopen(). Reviewed by: jdp Revision Changes Path 1.13 +2 -2 src/libexec/rtld-elf/rtld.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 14:40:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA02458 for cvs-all-outgoing; Fri, 27 Nov 1998 14:40: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 OAA02449; Fri, 27 Nov 1998 14:40:01 -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 OAA27886; Fri, 27 Nov 1998 14:40:40 -0800 (PST) Date: Fri, 27 Nov 1998 14:40:40 -0800 (PST) Message-Id: <199811272240.OAA27886@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/handbook mirrors.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jdp 1998/11/27 14:40:40 PST Modified files: handbook mirrors.sgml Log: Add new Korean FTP mirror sites. Submitted by: CHOI Junho Revision Changes Path 1.99 +10 -1 doc/handbook/mirrors.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 14:48:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA03482 for cvs-all-outgoing; Fri, 27 Nov 1998 14: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 OAA03474; Fri, 27 Nov 1998 14:48:20 -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 OAA28180; Fri, 27 Nov 1998 14:48:59 -0800 (PST) Date: Fri, 27 Nov 1998 14:48:59 -0800 (PST) Message-Id: <199811272248.OAA28180@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall menus.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jdp 1998/11/27 14:48:59 PST Modified files: release/sysinstall menus.c Log: Add new Korean FTP mirror sites. Revision Changes Path 1.174 +7 -1 src/release/sysinstall/menus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 15:21:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA06474 for cvs-all-outgoing; Fri, 27 Nov 1998 15:21: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 PAA06467; Fri, 27 Nov 1998 15:21:24 -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 PAA29424; Fri, 27 Nov 1998 15:22:02 -0800 (PST) Date: Fri, 27 Nov 1998 15:22:02 -0800 (PST) Message-Id: <199811272322.PAA29424@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfsproto.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/11/27 15:22:02 PST Modified files: (Branch: RELENG_2_2) sys/nfs nfsproto.h Log: Reduce NFS_SMALLFH to 52 to counteract the increased size of other data in the nfsnode. This can be overridden in the kernel configuration if there prove to be problems with the reduced size, at the cost of bloating the nfsnode (annoying but harmless). Reviewed by: Doug Rabson (dfr@freebsd.org) Revision Changes Path 1.1.4.1 +2 -2 src/sys/nfs/nfsproto.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 16:13:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA12593 for cvs-all-outgoing; Fri, 27 Nov 1998 16:13: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 QAA12588; Fri, 27 Nov 1998 16:13: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 QAA01055; Fri, 27 Nov 1998 16:14:31 -0800 (PST) Date: Fri, 27 Nov 1998 16:14:31 -0800 (PST) Message-Id: <199811280014.QAA01055@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/graphics/xli Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/27 16:14:31 PST Modified files: graphics/xli Makefile Log: Unbreak by fixing manpage variables. PR: 8869 Submitted by: zach@gaffaneys.com Revision Changes Path 1.11 +2 -5 ports/graphics/xli/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 16:20:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA13481 for cvs-all-outgoing; Fri, 27 Nov 1998 16:20: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 QAA13474; Fri, 27 Nov 1998 16:20:09 -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 QAA01357; Fri, 27 Nov 1998 16:20:48 -0800 (PST) Date: Fri, 27 Nov 1998 16:20:48 -0800 (PST) Message-Id: <199811280020.QAA01357@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/tcl80/pkg INSTALL.tclsh ports/x11-toolkits/tk80/pkg INSTALL.wish Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/27 16:20:48 PST Modified files: lang/tcl80/pkg INSTALL.tclsh x11-toolkits/tk80/pkg INSTALL.wish Log: Create ${PREFIX}/bin before cat'ing a file into it. Revision Changes Path 1.2 +1 -0 ports/lang/tcl80/pkg/INSTALL.tclsh 1.2 +1 -0 ports/x11-toolkits/tk80/pkg/INSTALL.wish To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 16:24:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA13863 for cvs-all-outgoing; Fri, 27 Nov 1998 16:24: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 QAA13858; Fri, 27 Nov 1998 16:24:54 -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 QAA01486; Fri, 27 Nov 1998 16:25:33 -0800 (PST) Date: Fri, 27 Nov 1998 16:25:33 -0800 (PST) Message-Id: <199811280025.QAA01486@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pci if_de.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/11/27 16:25:33 PST Modified files: sys/pci if_de.c Log: Alias Adaptec as a vendor of Cogent NICs. Revision Changes Path 1.91 +2 -1 src/sys/pci/if_de.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 16:25:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA14091 for cvs-all-outgoing; Fri, 27 Nov 1998 16:25: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 QAA14086; Fri, 27 Nov 1998 16:25:33 -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 QAA01524; Fri, 27 Nov 1998 16:26:11 -0800 (PST) Date: Fri, 27 Nov 1998 16:26:11 -0800 (PST) Message-Id: <199811280026.QAA01524@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pci if_de.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/11/27 16:26:11 PST Modified files: (Branch: RELENG_2_2) sys/pci if_de.c Log: MFC: Adaptec NICs are really Cogent NICs. Revision Changes Path 1.54.2.13 +2 -1 src/sys/pci/if_de.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 16:43:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA15466 for cvs-all-outgoing; Fri, 27 Nov 1998 16:43: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 QAA15461; Fri, 27 Nov 1998 16:43: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 QAA02173; Fri, 27 Nov 1998 16:44:35 -0800 (PST) Date: Fri, 27 Nov 1998 16:44:35 -0800 (PST) Message-Id: <199811280044.QAA02173@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/comms/xcept Makefile ports/cad/mars Makefile ports/cad/irsim Makefile ports/cad/sis Makefile ports/devel/ilu Makefile ports/devel/asl Makefile ports/editors/xvile Makefile ports/emulators/pcemu Makefile ports/games/golddig Makefile ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/27 16:44:34 PST Modified files: comms/xcept Makefile cad/mars Makefile cad/irsim Makefile cad/sis Makefile devel/ilu Makefile devel/asl Makefile editors/xvile Makefile emulators/pcemu Makefile games/golddig Makefile games/ishido Makefile games/xevil Makefile Log: Add USE_XLIB to some ports that require X. (Actually BUILD_DEPENDS on imake for ilu and mkdirhier for asl.) Revision Changes Path 1.8 +2 -1 ports/comms/xcept/Makefile 1.7 +2 -1 ports/cad/mars/Makefile 1.9 +2 -1 ports/cad/irsim/Makefile 1.6 +2 -1 ports/cad/sis/Makefile 1.15 +3 -1 ports/devel/ilu/Makefile 1.6 +3 -1 ports/devel/asl/Makefile 1.17 +2 -1 ports/editors/xvile/Makefile 1.12 +3 -1 ports/emulators/pcemu/Makefile 1.8 +2 -1 ports/games/golddig/Makefile 1.2 +2 -1 ports/games/ishido/Makefile 1.7 +2 -1 ports/games/xevil/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 16:53:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA16225 for cvs-all-outgoing; Fri, 27 Nov 1998 16:53: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 QAA16220; Fri, 27 Nov 1998 16:53:51 -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 QAA02343; Fri, 27 Nov 1998 16:54:30 -0800 (PST) Date: Fri, 27 Nov 1998 16:54:30 -0800 (PST) Message-Id: <199811280054.QAA02343@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/databases/p5-DBD-Pg Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/27 16:54:29 PST Modified files: databases/p5-DBD-Pg Makefile Log: Mark this broken: ------- : cc -c -I/usr/local/pgsql/include -I/usr/local/include/pgsql -I/usr/include/pgsql -I/usr/local/lib/perl5/5.00502/i386-freebsd/DBI -I/usr/local/lib/perl5/site_perl/5.005/i386-freebsd/auto/DBI -I/usr/local/include -O -pipe -DVERSION=\"0.72\" -DXS_VERSION=\"0.72\" -DPIC -fpic -I/usr/local/lib/perl5/5.00502/i386-freebsd/CORE dbdimp.c dbdimp.c: In function `dbd_db_ping': dbdimp.c:135: dereferencing pointer to incomplete type dbdimp.c:136: dereferencing pointer to incomplete type dbdimp.c:140: dereferencing pointer to incomplete type dbdimp.c:140: dereferencing pointer to incomplete type dbdimp.c:141: dereferencing pointer to incomplete type dbdimp.c:142: dereferencing pointer to incomplete type dbdimp.c:146: dereferencing pointer to incomplete type dbdimp.c:146: dereferencing pointer to incomplete type dbdimp.c:146: dereferencing pointer to incomplete type dbdimp.c:146: dereferencing pointer to incomplete type dbdimp.c:147: dereferencing pointer to incomplete type dbdimp.c:148: dereferencing pointer to incomplete type *** Error code 1 Stop. Revision Changes Path 1.10 +2 -1 ports/databases/p5-DBD-Pg/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 16:54:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA16473 for cvs-all-outgoing; Fri, 27 Nov 1998 16:54: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 QAA16467; Fri, 27 Nov 1998 16:54: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 QAA02384; Fri, 27 Nov 1998 16:55:35 -0800 (PST) Date: Fri, 27 Nov 1998 16:55:35 -0800 (PST) Message-Id: <199811280055.QAA02384@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/databases/p5-Pg Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/27 16:55:35 PST Modified files: databases/p5-Pg Makefile Log: Mark this broken. ------- cc -c -I/usr/local/pgsql/include -I/usr/local/include -O -pipe -DVERSION=\"1.6.1\" -DXS_VERSION=\"1.6.1\" -DPIC -fpic -I/usr/local/lib/perl5/5.00502/i386-freebsd/CORE Pg.c In file included from /usr/local/pgsql/include/postgres.h:40, from Pg.xs:25: /usr/local/pgsql/include/config.h:247: warning: `USE_LOCALE' redefined /usr/local/lib/perl5/5.00502/i386-freebsd/CORE/perl.h:342: warning: this is the location of the previous definition Pg.xs: In function `XS_Pg_PQexec': Pg.xs:300: sizeof applied to an incomplete type Pg.xs: In function `XS_PG_conn_exec': Pg.xs:702: sizeof applied to an incomplete type *** Error code 1 Stop. Revision Changes Path 1.16 +3 -1 ports/databases/p5-Pg/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 16:57:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA16647 for cvs-all-outgoing; Fri, 27 Nov 1998 16:57: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 QAA16640; Fri, 27 Nov 1998 16:57:58 -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 QAA02476; Fri, 27 Nov 1998 16:58:37 -0800 (PST) Date: Fri, 27 Nov 1998 16:58:37 -0800 (PST) Message-Id: <199811280058.QAA02476@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/graphics/rayshade Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/27 16:58:36 PST Modified files: graphics/rayshade Makefile Log: Mark this broken: --- cc -O -pipe -o rayshade main.o raytrace.o version.o ../libshade/libshade.a ../libray/libray.a /usr/local/lib/librle.a -lm imagetext.o: Undefined symbol `_ImageRead' referenced from text segment imagetext.o: Undefined symbol `_ImageIndex' referenced from text segment imagetext.o: Undefined symbol `_ImageIndex' referenced from text segment imagetext.o: Undefined symbol `_ImageIndex' referenced from text segment *** Error code 1 Stop. Revision Changes Path 1.3 +2 -1 ports/graphics/rayshade/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 17:20:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA17977 for cvs-all-outgoing; Fri, 27 Nov 1998 17:20: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 RAA17969; Fri, 27 Nov 1998 17:20:15 -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 RAA03321; Fri, 27 Nov 1998 17:20:54 -0800 (PST) Date: Fri, 27 Nov 1998 17:20:54 -0800 (PST) Message-Id: <199811280120.RAA03321@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/ftnchek Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/27 17:20:54 PST Modified files: devel/ftnchek Makefile Log: Tell configure where emacs lisp files should go, and create the directory in pre-install. Revision Changes Path 1.3 +5 -1 ports/devel/ftnchek/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 17:30:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA18705 for cvs-all-outgoing; Fri, 27 Nov 1998 17:30: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 RAA18700; Fri, 27 Nov 1998 17:30: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 RAA03650; Fri, 27 Nov 1998 17:31:19 -0800 (PST) Date: Fri, 27 Nov 1998 17:31:19 -0800 (PST) Message-Id: <199811280131.RAA03650@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/gn-gnspool Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/27 17:31:19 PST Modified files: japanese/gn-gnspool Makefile Log: The configure script sometimes goes into an infinite loop, spewing out === ^GBINDIR = directory of binaries? y does not exist ^GBINDIR = directory of binaries? y does not exist ^GBINDIR = directory of binaries? y does not exist ^GBINDIR = directory of binaries? y does not exist === forever. Revision Changes Path 1.5 +3 -1 ports/japanese/gn-gnspool/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 17:47:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA20113 for cvs-all-outgoing; Fri, 27 Nov 1998 17:47: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 RAA20107; Fri, 27 Nov 1998 17:47: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 RAA04135; Fri, 27 Nov 1998 17:48:32 -0800 (PST) Date: Fri, 27 Nov 1998 17:48:32 -0800 (PST) Message-Id: <199811280148.RAA04135@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/libmalloc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/27 17:48:32 PST Modified files: devel/libmalloc Makefile Log: Mark this broken for 3.0: ------- cc -c -g -I./splay -I/root/include -DHAVE_MMAP -DSTDHEADERS -DDEBUG -DTRACE -DPROFILESIZES _emalloc.c -o _emalloc.o In file included from defs.h:51, from _emalloc.c:5: externs.h:110: conflicting types for `mmap' /usr/include/stdio.h:282: previous declaration of `mmap' *** Error code 1 Stop. Revision Changes Path 1.14 +7 -2 ports/devel/libmalloc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 17:58:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA21219 for cvs-all-outgoing; Fri, 27 Nov 1998 17:58: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 RAA21214; Fri, 27 Nov 1998 17:58: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 RAA04462; Fri, 27 Nov 1998 17:59:35 -0800 (PST) Date: Fri, 27 Nov 1998 17:59:35 -0800 (PST) Message-Id: <199811280159.RAA04462@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/games/xjig Makefile ports/games/xboard Makefile ports/graphics/giflib Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/27 17:59:35 PST Modified files: games/xjig Makefile games/xboard Makefile graphics/giflib Makefile Log: Add USE_XLIB. Revision Changes Path 1.3 +2 -1 ports/games/xjig/Makefile 1.16 +2 -1 ports/games/xboard/Makefile 1.6 +3 -1 ports/graphics/giflib/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 18:18:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA22715 for cvs-all-outgoing; Fri, 27 Nov 1998 18:18: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 SAA22710; Fri, 27 Nov 1998 18:18: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 SAA05045; Fri, 27 Nov 1998 18:18:47 -0800 (PST) Date: Fri, 27 Nov 1998 18:18:47 -0800 (PST) Message-Id: <199811280218.SAA05045@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/graphics/plotutils Makefile ports/graphics/xfractint Makefile ports/japanese/sj3 Makefile ports/japanese/jvim3 Makefile ports/lang/squeak Makefile ports/mail/coolmail Makefile ports/mail/faces Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/27 18:18:46 PST Modified files: graphics/plotutils Makefile graphics/xfractint Makefile japanese/sj3 Makefile japanese/jvim3 Makefile lang/squeak Makefile mail/coolmail Makefile mail/faces Makefile Log: A few more USE_XLIBs. Revision Changes Path 1.4 +3 -2 ports/graphics/plotutils/Makefile 1.4 +2 -1 ports/graphics/xfractint/Makefile 1.8 +3 -1 ports/japanese/sj3/Makefile 1.7 +2 -1 ports/japanese/jvim3/Makefile 1.3 +2 -1 ports/lang/squeak/Makefile 1.4 +2 -1 ports/mail/coolmail/Makefile 1.9 +2 -1 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 Fri Nov 27 21:07:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA04093 for cvs-all-outgoing; Fri, 27 Nov 1998 21:07: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 VAA04088; Fri, 27 Nov 1998 21:07: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 VAA10871; Fri, 27 Nov 1998 21:08:28 -0800 (PST) Date: Fri, 27 Nov 1998 21:08:28 -0800 (PST) Message-Id: <199811280508.VAA10871@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/sj3 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/27 21:08:28 PST Modified files: japanese/sj3 Makefile Log: Typo. Revision Changes Path 1.9 +2 -2 ports/japanese/sj3/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 21:38:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA05832 for cvs-all-outgoing; Fri, 27 Nov 1998 21:38: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 VAA05827; Fri, 27 Nov 1998 21:38:23 -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 VAA11993; Fri, 27 Nov 1998 21:39:02 -0800 (PST) Date: Fri, 27 Nov 1998 21:39:02 -0800 (PST) Message-Id: <199811280539.VAA11993@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/iv Makefile ports/mail/exim Makefile ports/mail/metamail Makefile ports/math/pari Makefile ports/math/plplot Makefile ports/math/simpack Makefile ports/misc/astrolog Makefile ports/lang/logo Makefile ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/27 21:39:02 PST Modified files: japanese/iv Makefile mail/exim Makefile mail/metamail Makefile math/pari Makefile math/plplot Makefile math/simpack Makefile misc/astrolog Makefile lang/logo Makefile net/ciscoconf Makefile net/freewais-sf Makefile Log: More USE_XLIBs. Revision Changes Path 1.8 +3 -1 ports/japanese/iv/Makefile 1.22 +2 -1 ports/mail/exim/Makefile 1.9 +2 -1 ports/mail/metamail/Makefile 1.4 +2 -1 ports/math/pari/Makefile 1.7 +2 -1 ports/math/plplot/Makefile 1.5 +3 -1 ports/math/simpack/Makefile 1.13 +2 -1 ports/misc/astrolog/Makefile 1.12 +2 -1 ports/lang/logo/Makefile 1.2 +2 -1 ports/net/ciscoconf/Makefile 1.6 +2 -1 ports/net/freewais-sf/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Nov 27 23:00:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA11855 for cvs-all-outgoing; Fri, 27 Nov 1998 23:00: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 XAA11850; Fri, 27 Nov 1998 23:00:07 -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 XAA13994; Fri, 27 Nov 1998 23:00:46 -0800 (PST) Date: Fri, 27 Nov 1998 23:00:46 -0800 (PST) Message-Id: <199811280700.XAA13994@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/fxhtml Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/27 23:00:45 PST Modified files: www/fxhtml Makefile Log: Create installation directories. Revision Changes Path 1.2 +5 -2 ports/www/fxhtml/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 00:02:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA16659 for cvs-all-outgoing; Sat, 28 Nov 1998 00:02: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 AAA16654; Sat, 28 Nov 1998 00:02:46 -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 AAA15960; Sat, 28 Nov 1998 00:03:25 -0800 (PST) Date: Sat, 28 Nov 1998 00:03:25 -0800 (PST) Message-Id: <199811280803.AAA15960@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/boot/netboot Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk joerg 1998/11/28 00:03:25 PST Modified files: sys/i386/boot/netboot Makefile Log: Fix my breakage of `make installworld'. However, i don't think it's right to install all those images at all (nor to install them under /usr/mdec), given the high degree of customization this Makefile needs in order to get images that are actually useful for some NIC. Submitted by: John Hay , Paul Allenby Revision Changes Path 1.21 +7 -6 src/sys/i386/boot/netboot/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 00:18:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA17651 for cvs-all-outgoing; Sat, 28 Nov 1998 00:18: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 AAA17645; Sat, 28 Nov 1998 00:18:46 -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 AAA16501; Sat, 28 Nov 1998 00:19:25 -0800 (PST) Date: Sat, 28 Nov 1998 00:19:25 -0800 (PST) Message-Id: <199811280819.AAA16501@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src Makefile.inc1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/28 00:19:25 PST Modified files: . Makefile.inc1 Log: Remove netboot from build order; it's not ready for the limelight and probably doesn't belong there anyway. Revision Changes Path 1.45 +2 -6 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 00:52:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA20114 for cvs-all-outgoing; Sat, 28 Nov 1998 00:52: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 AAA20109; Sat, 28 Nov 1998 00:52: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 AAA17317; Sat, 28 Nov 1998 00:53:03 -0800 (PST) Date: Sat, 28 Nov 1998 00:53:03 -0800 (PST) Message-Id: <199811280853.AAA17317@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/prcs Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/28 00:53:03 PST Modified files: devel/prcs Makefile Log: Depend on emacs; need to byte-compile some .elc's. Revision Changes Path 1.13 +3 -1 ports/devel/prcs/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 01:01:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA20781 for cvs-all-outgoing; Sat, 28 Nov 1998 01:01: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 BAA20776; Sat, 28 Nov 1998 01:01:01 -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 BAA17590; Sat, 28 Nov 1998 01:01:40 -0800 (PST) Date: Sat, 28 Nov 1998 01:01:40 -0800 (PST) Message-Id: <199811280901.BAA17590@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/netscape45-communicator Makefile ports/www/netscape45-communicator/scripts configure Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/11/28 01:01:40 PST Modified files: www/netscape45-communicator Makefile Removed files: www/netscape45-communicator/scripts configure Log: * Removed MULTIVERSION logic until there is time to make it work right. * script/configure is now part of the port's Makefile. Preapproved by: satoshi Revision Changes Path 1.31 +1 -8 ports/www/netscape45-communicator/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 01:02:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA21107 for cvs-all-outgoing; Sat, 28 Nov 1998 01:02: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 BAA21102; Sat, 28 Nov 1998 01:02:23 -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 BAA17629; Sat, 28 Nov 1998 01:03:01 -0800 (PST) Date: Sat, 28 Nov 1998 01:03:01 -0800 (PST) Message-Id: <199811280903.BAA17629@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/games/awele Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/28 01:03:01 PST Modified files: games/awele Makefile Log: LIB_DEPENDS on tk8.0. Revision Changes Path 1.3 +3 -1 ports/games/awele/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 01:04:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA21250 for cvs-all-outgoing; Sat, 28 Nov 1998 01:04: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 BAA21245; Sat, 28 Nov 1998 01:04:23 -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 BAA17736; Sat, 28 Nov 1998 01:05:02 -0800 (PST) Date: Sat, 28 Nov 1998 01:05:02 -0800 (PST) Message-Id: <199811280905.BAA17736@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/games/libshhcards Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/28 01:05:01 PST Modified files: games/libshhcards Makefile Log: LIB_DEPENDS on Xpm. Revision Changes Path 1.6 +3 -1 ports/games/libshhcards/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 01:05:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA21545 for cvs-all-outgoing; Sat, 28 Nov 1998 01:05: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 BAA21534; Sat, 28 Nov 1998 01:05: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 BAA17844; Sat, 28 Nov 1998 01:06:16 -0800 (PST) Date: Sat, 28 Nov 1998 01:06:16 -0800 (PST) Message-Id: <199811280906.BAA17844@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/games/xdemineur Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/28 01:06:16 PST Modified files: games/xdemineur Makefile Log: LIB_DEPENDS on Xpm. Revision Changes Path 1.3 +3 -1 ports/games/xdemineur/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 01:06:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA21709 for cvs-all-outgoing; Sat, 28 Nov 1998 01:06: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 BAA21704; Sat, 28 Nov 1998 01:06: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 BAA18139; Sat, 28 Nov 1998 01:07:25 -0800 (PST) Date: Sat, 28 Nov 1998 01:07:25 -0800 (PST) Message-Id: <199811280907.BAA18139@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/audio/sidplay Makefile ports/cad/chipmunk Makefile ports/games/lincity Makefile ports/lang/ocaml Makefile ports/net/zephyr Makefile ports/print/freetype Makefile ports/print/teTeX Makefile ports/print/ghostscript Makefile ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/28 01:07:25 PST Modified files: audio/sidplay Makefile cad/chipmunk Makefile games/lincity Makefile lang/ocaml Makefile net/zephyr Makefile print/freetype Makefile print/teTeX Makefile print/ghostscript Makefile print/ghostscript4 Makefile print/ghostscript5 Makefile plan9/9menu Makefile plan9/9term Makefile plan9/sam Makefile plan9/wily Makefile x11-clocks/dclock Makefile x11/libdnd Makefile x11-toolkits/p5-Tk Makefile Log: A few more USE_XLIBs. Revision Changes Path 1.3 +3 -1 ports/audio/sidplay/Makefile 1.6 +2 -1 ports/cad/chipmunk/Makefile 1.4 +2 -1 ports/games/lincity/Makefile 1.4 +2 -1 ports/lang/ocaml/Makefile 1.8 +2 -1 ports/net/zephyr/Makefile 1.7 +2 -1 ports/print/freetype/Makefile 1.26 +3 -2 ports/print/teTeX/Makefile 1.23 +2 -1 ports/print/ghostscript/Makefile 1.27 +2 -1 ports/print/ghostscript4/Makefile 1.24 +2 -1 ports/print/ghostscript5/Makefile 1.7 +2 -1 ports/plan9/9menu/Makefile 1.8 +5 -4 ports/plan9/9term/Makefile 1.6 +2 -1 ports/plan9/sam/Makefile 1.8 +2 -2 ports/plan9/wily/Makefile 1.7 +2 -1 ports/x11-clocks/dclock/Makefile 1.5 +2 -1 ports/x11/libdnd/Makefile 1.23 +2 -1 ports/x11-toolkits/p5-Tk/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 01:09:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA21863 for cvs-all-outgoing; Sat, 28 Nov 1998 01:09: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 BAA21858; Sat, 28 Nov 1998 01:09: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 BAA18314; Sat, 28 Nov 1998 01:10:14 -0800 (PST) Date: Sat, 28 Nov 1998 01:10:14 -0800 (PST) Message-Id: <199811280910.BAA18314@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/teTeX-beta Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/28 01:10:14 PST Modified files: print/teTeX-beta Makefile Log: This one uses Xlib too. Revision Changes Path 1.31 +2 -1 ports/print/teTeX-beta/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 01:32:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA24000 for cvs-all-outgoing; Sat, 28 Nov 1998 01:32: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 BAA23995; Sat, 28 Nov 1998 01:32:46 -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 BAA22140; Sat, 28 Nov 1998 01:33:25 -0800 (PST) Date: Sat, 28 Nov 1998 01:33:25 -0800 (PST) Message-Id: <199811280933.BAA22140@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/misc/tet Makefile ports/misc/tet/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/28 01:33:24 PST Modified files: misc/tet Makefile misc/tet/files md5 Log: Upgrade to 3.2d. The old distfile was not fetchable. Submitted by: maintainer Revision Changes Path 1.5 +5 -4 ports/misc/tet/Makefile 1.2 +1 -1 ports/misc/tet/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 Nov 28 01:42:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA24483 for cvs-all-outgoing; Sat, 28 Nov 1998 01:42: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 BAA24475; Sat, 28 Nov 1998 01:42:53 -0800 (PST) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA23513; Sat, 28 Nov 1998 01:43:32 -0800 (PST) Date: Sat, 28 Nov 1998 01:43:32 -0800 (PST) Message-Id: <199811280943.BAA23513@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sbin/disklabel disklabel.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/11/28 01:43:32 PST Modified files: sbin/disklabel disklabel.8 Log: Refer to "da" rather than "sd" device. Suggested by: jdp Revision Changes Path 1.9 +23 -23 src/sbin/disklabel/disklabel.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 01:54:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA25275 for cvs-all-outgoing; Sat, 28 Nov 1998 01:54: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 BAA25270; Sat, 28 Nov 1998 01:54:38 -0800 (PST) (envelope-from dfr@FreeBSD.org) From: Doug Rabson Received: (from dfr@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA23840; Sat, 28 Nov 1998 01:55:16 -0800 (PST) Date: Sat, 28 Nov 1998 01:55:16 -0800 (PST) Message-Id: <199811280955.BAA23840@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/alpha/alpha interrupt.c locore.s src/sys/alpha/include intrcnt.h intr.h src/sys/alpha/isa isa.c src/sys/alpha/pci cia.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dfr 1998/11/28 01:55:16 PST Modified files: sys/alpha/alpha interrupt.c locore.s sys/alpha/include intr.h sys/alpha/isa isa.c sys/alpha/pci cia.c Added files: sys/alpha/include intrcnt.h Log: Add support for 'vmstat -i'. Submitted by: Hidetoshi Shimokawa Obtained from: NetBSD Revision Changes Path 1.8 +13 -7 src/sys/alpha/alpha/interrupt.c 1.6 +16 -4 src/sys/alpha/alpha/locore.s 1.5 +2 -2 src/sys/alpha/include/intr.h 1.8 +4 -2 src/sys/alpha/isa/isa.c 1.12 +6 -4 src/sys/alpha/pci/cia.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 01:59:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA25856 for cvs-all-outgoing; Sat, 28 Nov 1998 01: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 BAA25851; Sat, 28 Nov 1998 01:59:02 -0800 (PST) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA23925; Sat, 28 Nov 1998 01:59:41 -0800 (PST) Date: Sat, 28 Nov 1998 01:59:41 -0800 (PST) Message-Id: <199811280959.BAA23925@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sbin/newfs newfs.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/11/28 01:59:41 PST Modified files: sbin/newfs newfs.8 Log: Refer to "da" rather than "sd" device. Revision Changes Path 1.19 +2 -2 src/sbin/newfs/newfs.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 02:02:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA26491 for cvs-all-outgoing; Sat, 28 Nov 1998 02:02: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 CAA26482; Sat, 28 Nov 1998 02:02:14 -0800 (PST) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA24047; Sat, 28 Nov 1998 02:02:52 -0800 (PST) Date: Sat, 28 Nov 1998 02:02:52 -0800 (PST) Message-Id: <199811281002.CAA24047@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sbin/restore restore.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/11/28 02:02:52 PST Modified files: sbin/restore restore.8 Log: Refer to "da" rather than "sd" device. Revision Changes Path 1.15 +2 -2 src/sbin/restore/restore.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 03:14:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA01267 for cvs-all-outgoing; Sat, 28 Nov 1998 03:14:06 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.15.68.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA01211; Sat, 28 Nov 1998 03:13:44 -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 WAA12677; Sat, 28 Nov 1998 22:13:30 +1100 Date: Sat, 28 Nov 1998 22:13:30 +1100 From: Bruce Evans Message-Id: <199811281113.WAA12677@godzilla.zeta.org.au> To: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, jkh@FreeBSD.ORG Subject: Re: cvs commit: src Makefile.inc1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Modified files: > . Makefile.inc1 > Log: > Remove netboot from build order; it's not ready for the limelight > and probably doesn't belong there anyway. This just breaks building tools for netboot. netboot proper is built and installed in the normal way when the tree is traversed. Except certain cross-builds will now crash. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 05:12:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA12676 for cvs-all-outgoing; Sat, 28 Nov 1998 05:12:53 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from zippy.cdrom.com (zippy.cdrom.com [204.216.27.228]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA12670; Sat, 28 Nov 1998 05:12:45 -0800 (PST) (envelope-from jkh@zippy.cdrom.com) Received: from zippy.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by zippy.cdrom.com (8.9.1/8.9.1) with ESMTP id FAA12030; Sat, 28 Nov 1998 05:13:42 -0800 (PST) To: Bruce Evans cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, jkh@FreeBSD.ORG Subject: Re: cvs commit: src Makefile.inc1 In-reply-to: Your message of "Sat, 28 Nov 1998 22:13:30 +1100." <199811281113.WAA12677@godzilla.zeta.org.au> Date: Sat, 28 Nov 1998 05:13:36 -0800 Message-ID: <12026.912258816@zippy.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk I thought something about that looked a little suspicious; that's what I get for committing while under the influence of turkey meat. WIll fix. > > Modified files: > > . Makefile.inc1 > > Log: > > Remove netboot from build order; it's not ready for the limelight > > and probably doesn't belong there anyway. > > This just breaks building tools for netboot. netboot proper is built > and installed in the normal way when the tree is traversed. Except > certain cross-builds will now crash. > > Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 05:14:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA12767 for cvs-all-outgoing; Sat, 28 Nov 1998 05:14: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 FAA12762; Sat, 28 Nov 1998 05:14:20 -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 FAA01417; Sat, 28 Nov 1998 05:14:59 -0800 (PST) Date: Sat, 28 Nov 1998 05:14:59 -0800 (PST) Message-Id: <199811281314.FAA01417@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src Makefile.inc1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/28 05:14:58 PST Modified files: . Makefile.inc1 Log: Revert previous commit; write idea, wrong way. Revision Changes Path 1.46 +6 -2 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 05:17:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA12960 for cvs-all-outgoing; Sat, 28 Nov 1998 05:17: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 FAA12954; Sat, 28 Nov 1998 05:17: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 FAA01463; Sat, 28 Nov 1998 05:18:17 -0800 (PST) Date: Sat, 28 Nov 1998 05:18:17 -0800 (PST) Message-Id: <199811281318.FAA01463@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa cy.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/11/28 05:18:17 PST Modified files: sys/i386/isa cy.c Log: Merge from sio.c rev.1.163: Don't call timeout() for DTR wakeup if the relevant timeout is already active. This fixes "timeout table full" panics when sufficiently many cyopen()s are interrupted while they are sleeping waiting for the timeout to expire. Revision Changes Path 1.75 +2 -2 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 Sat Nov 28 05:26:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA13378 for cvs-all-outgoing; Sat, 28 Nov 1998 05:26: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 FAA13373; Sat, 28 Nov 1998 05:26: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 FAA01748; Sat, 28 Nov 1998 05:27:02 -0800 (PST) Date: Sat, 28 Nov 1998 05:27:02 -0800 (PST) Message-Id: <199811281327.FAA01748@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa cy.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/11/28 05:27:01 PST Modified files: (Branch: RELENG_2_2) sys/i386/isa cy.c Log: MFC (1.75: don't start too many timeouts for DTR wait). Revision Changes Path 1.41.2.4 +2 -2 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 Sat Nov 28 06:05:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA15252 for cvs-all-outgoing; Sat, 28 Nov 1998 06:05: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 GAA15246; Sat, 28 Nov 1998 06:05:47 -0800 (PST) (envelope-from luigi@FreeBSD.org) From: Luigi Rizzo Received: (from luigi@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA02713; Sat, 28 Nov 1998 06:06:25 -0800 (PST) Date: Sat, 28 Nov 1998 06:06:25 -0800 (PST) Message-Id: <199811281406.GAA02713@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/net bridge.c bridge.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk luigi 1998/11/28 06:06:25 PST Modified files: (Branch: RELENG_2_2) sys/net bridge.c bridge.h Log: A bunch of old patches i forgot to apply -- make BRIDGE compile and work even if DUMMYNET is not used. Revision Changes Path 1.1.2.2 +29 -24 src/sys/net/bridge.c 1.1.2.1 +2 -2 src/sys/net/bridge.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 07:47:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA20306 for cvs-all-outgoing; Sat, 28 Nov 1998 07:47: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 HAA20301; Sat, 28 Nov 1998 07:47: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 HAA22845; Sat, 28 Nov 1998 07:48:10 -0800 (PST) Date: Sat, 28 Nov 1998 07:48:10 -0800 (PST) Message-Id: <199811281548.HAA22845@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa cy.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/11/28 07:48:10 PST Modified files: sys/i386/isa cy.c Log: Fixed sloppy clearing of TS_BUSY. Don't clear it until the transmitter is completely empty. There is an interrupt for output completion. It is painful to use, but polling method used in the corresponding fix in sio.c (rev.1.152) can't be used because there is no status bit for transmitter-empty. Now ttywait() works right. Reminded by: NIST-PCTS Revision Changes Path 1.76 +71 -12 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 Sat Nov 28 14:03:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA19296 for cvs-all-outgoing; Sat, 28 Nov 1998 14:03: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 OAA19284; Sat, 28 Nov 1998 14:03:42 -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 OAA10083; Sat, 28 Nov 1998 14:04:20 -0800 (PST) Date: Sat, 28 Nov 1998 14:04:20 -0800 (PST) Message-Id: <199811282204.OAA10083@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/etc rc.network Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/11/28 14:04:20 PST Modified files: (Branch: RELENG_2_2) etc rc.network Log: MFC: redirect sysctl output properly to /dev/null Requested by: jkoshy Revision Changes Path 1.1.2.24 +4 -3 src/etc/rc.network To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 15:09:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA23565 for cvs-all-outgoing; Sat, 28 Nov 1998 15:09: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 PAA23560; Sat, 28 Nov 1998 15:09: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 PAA14067; Sat, 28 Nov 1998 15:10:29 -0800 (PST) Date: Sat, 28 Nov 1998 15:10:29 -0800 (PST) Message-Id: <199811282310.PAA14067@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/mhonarc Makefile ports/www/mhonarc/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/28 15:10:29 PST Modified files: www/mhonarc Makefile www/mhonarc/pkg PLIST Log: Unbreak package by updating PLIST. Submitted by: Sheldon Hearn Revision Changes Path 1.7 +1 -3 ports/www/mhonarc/Makefile 1.4 +35 -35 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 Sat Nov 28 15:52:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA26642 for cvs-all-outgoing; Sat, 28 Nov 1998 15:52: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 PAA26637; Sat, 28 Nov 1998 15:52: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 PAA16864; Sat, 28 Nov 1998 15:52:59 -0800 (PST) Date: Sat, 28 Nov 1998 15:52:59 -0800 (PST) Message-Id: <199811282352.PAA16864@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/include pthread.h src/lib/libc_r/uthread uthread_mattr_kind_np.c uthread_mutex.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk eivind 1998/11/28 15:52:59 PST Modified files: include pthread.h lib/libc_r/uthread uthread_mattr_kind_np.c uthread_mutex.c Log: Add support for pthread_mutexattr_settype(). As a side effect of testing this, fix MUTEX_TYPE_COUNTING_FAST. Recursive locks now work. Revision Changes Path 1.10 +8 -2 src/include/pthread.h 1.2 +14 -0 src/lib/libc_r/uthread/uthread_mattr_kind_np.c 1.12 +47 -20 src/lib/libc_r/uthread/uthread_mutex.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 16:20:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA00657 for cvs-all-outgoing; Sat, 28 Nov 1998 16:20:29 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ns.tar.com (ns.tar.com [204.95.187.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA00652; Sat, 28 Nov 1998 16:20:23 -0800 (PST) (envelope-from lists@tar.com) Received: from ppro.tar.com (ppro.tar.com [204.95.187.9]) by ns.tar.com (8.9.1/8.9.1) with SMTP id SAA17552; Sat, 28 Nov 1998 18:20:09 -0600 (CST) (envelope-from lists@tar.com) Message-Id: <199811290020.SAA17552@ns.tar.com> From: "Richard Seaman, Jr." To: "cvs-all@FreeBSD.ORG" , "cvs-committers@FreeBSD.ORG" , "Eivind Eklund" Date: Sat, 28 Nov 98 18:20:09 -0600 Reply-To: "Richard Seaman, Jr." X-Mailer: PMMail 1.92 For OS/2 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: cvs commit: src/include pthread.h src/lib/libc_r/uthread uthread_mattr_kind_np.c uthread_mutex.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sat, 28 Nov 1998 15:52:59 -0800 (PST), Eivind Eklund wrote: >eivind 1998/11/28 15:52:59 PST > > Modified files: > include pthread.h > lib/libc_r/uthread uthread_mattr_kind_np.c uthread_mutex.c > Log: > Add support for pthread_mutexattr_settype(). As a side effect of > testing this, fix MUTEX_TYPE_COUNTING_FAST. Recursive locks now work. ^^^^^^^^^^^^^^^^^^^^^^^^ You might want to check localtime.c in libc. I seem to recall from looking at this a couple of weeks ago that the "thread safe", ie. libc_r, implementation makes recursive calls to pthread_mutex_lock. Therefore, its possible this change will break some of the localtime related functions. If so, it could be fixed by having localtime.c use recursive mutexes, or better yet, by rewriting it so it doesn't make recursive calls to pthread_mutex_lock. Actually there are more extensive changes I think should be made to localtime.c, but that's a different subject. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 16:34:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA01567 for cvs-all-outgoing; Sat, 28 Nov 1998 16:34:36 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ns1.yes.no (ns1.yes.no [195.204.136.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA01562; Sat, 28 Nov 1998 16:34:33 -0800 (PST) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [195.204.143.218]) by ns1.yes.no (8.9.1a/8.9.1) with ESMTP id BAA20596; Sun, 29 Nov 1998 01:34:24 +0100 (CET) Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id BAA02052; Sun, 29 Nov 1998 01:34:24 +0100 (MET) Message-ID: <19981129013423.K9226@follo.net> Date: Sun, 29 Nov 1998 01:34:23 +0100 From: Eivind Eklund To: "Richard Seaman, Jr." , "cvs-all@FreeBSD.ORG" , "cvs-committers@FreeBSD.ORG" Subject: Re: cvs commit: src/include pthread.h src/lib/libc_r/uthread uthread_mattr_kind_np.c uthread_mutex.c References: <199811290020.SAA17552@ns.tar.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199811290020.SAA17552@ns.tar.com>; from Richard Seaman, Jr. on Sat, Nov 28, 1998 at 06:20:09PM -0600 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sat, Nov 28, 1998 at 06:20:09PM -0600, Richard Seaman, Jr. wrote: > On Sat, 28 Nov 1998 15:52:59 -0800 (PST), Eivind Eklund wrote: > > >eivind 1998/11/28 15:52:59 PST > > > > Modified files: > > include pthread.h > > lib/libc_r/uthread uthread_mattr_kind_np.c uthread_mutex.c > > Log: > > Add support for pthread_mutexattr_settype(). As a side effect of > > testing this, fix MUTEX_TYPE_COUNTING_FAST. Recursive locks now work. > ^^^^^^^^^^^^^^^^^^^^^^^^ > You might want to check localtime.c in libc. I seem to recall from > looking at this a couple of weeks ago that the "thread safe", ie. > libc_r, implementation makes recursive calls to pthread_mutex_lock. > Therefore, its possible this change will break some of the localtime > related functions. If so, it could be fixed by having localtime.c > use recursive mutexes, or better yet, by rewriting it so it doesn't > make recursive calls to pthread_mutex_lock. This shouldn't matter. The default behaviour (MUTEX_TYPE_FAST) has not changed. I just fixed the MUTEX_TYPE_COUNTING_FAST, which is supposed to be for recursive locks. Previously, it had to go to -1 locks to actually release the lock (and IIRC, it couldn't really get there due to other parts of the code). Now it release the lock when you get to the count of 0. Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 16:53:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA03512 for cvs-all-outgoing; Sat, 28 Nov 1998 16: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 QAA03507; Sat, 28 Nov 1998 16:53:43 -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 QAA21725; Sat, 28 Nov 1998 16:54:22 -0800 (PST) Date: Sat, 28 Nov 1998 16:54:22 -0800 (PST) Message-Id: <199811290054.QAA21725@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/find extern.h find.1 find.c main.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/11/28 16:54:22 PST Modified files: usr.bin/find extern.h find.1 find.c main.c Log: Added a sort option to find(1). The sort option make it possible to build the locate database without large (usually 20-100MB) temp files. Revision Changes Path 1.7 +1 -1 src/usr.bin/find/extern.h 1.16 +15 -2 src/usr.bin/find/find.1 1.5 +16 -1 src/usr.bin/find/find.c 1.7 +5 -1 src/usr.bin/find/main.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 16:56:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA03751 for cvs-all-outgoing; Sat, 28 Nov 1998 16:56: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 QAA03745; Sat, 28 Nov 1998 16:56:25 -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 QAA21952; Sat, 28 Nov 1998 16:57:03 -0800 (PST) Date: Sat, 28 Nov 1998 16:57:03 -0800 (PST) Message-Id: <199811290057.QAA21952@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/locate/locate locate.rc Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/11/28 16:57:03 PST Modified files: usr.bin/locate/locate locate.rc Log: Recommended TMPDIR is now /tmp (undo rev 1.6) Revision Changes Path 1.7 +2 -2 src/usr.bin/locate/locate/locate.rc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 16:58:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA03895 for cvs-all-outgoing; Sat, 28 Nov 1998 16:58: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 QAA03890; Sat, 28 Nov 1998 16:58:41 -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 QAA22241; Sat, 28 Nov 1998 16:59:20 -0800 (PST) Date: Sat, 28 Nov 1998 16:59:20 -0800 (PST) Message-Id: <199811290059.QAA22241@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/locate/locate mklocatedb.sh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/11/28 16:59:20 PST Modified files: usr.bin/locate/locate mklocatedb.sh Log: Set TMPDIR to /tmp Remove the temp directory in trap. Replace the buggy awk script with a correct perl script. Don't make a copy of the input data anymore if the input is already sorted (option -presort). This scheme avoid large temporary files in /tmp. Revision Changes Path 1.8 +35 -14 src/usr.bin/locate/locate/mklocatedb.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 17:02:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA04374 for cvs-all-outgoing; Sat, 28 Nov 1998 17:02: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 RAA04369; Sat, 28 Nov 1998 17:02:45 -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 RAA22560; Sat, 28 Nov 1998 17:03:24 -0800 (PST) Date: Sat, 28 Nov 1998 17:03:24 -0800 (PST) Message-Id: <199811290103.RAA22560@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/projects projects.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/11/28 17:03:24 PST Modified files: en/projects projects.sgml Log: Added FreeBSD Rocks to the new Advocacy section: FreeBSD Rocks is an initiative designed to provide the FreeBSD community with the latest FreeBSD news, software and resources. All areas include search facilities, making keyword searching of historical posts a breeze. Submitted by: Steven Harris Move 'FreeBSD vs. Linux' and Daemonnews to Advocacy section. Move PicoBSD to Architecture section. Added a Table of Contents. Revision Changes Path 1.33 +52 -9 www/en/projects/projects.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 17:17:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA05470 for cvs-all-outgoing; Sat, 28 Nov 1998 17:17: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 RAA05465; Sat, 28 Nov 1998 17:17:27 -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 RAA23474; Sat, 28 Nov 1998 17:18:06 -0800 (PST) Date: Sat, 28 Nov 1998 17:18:06 -0800 (PST) Message-Id: <199811290118.RAA23474@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/projects projects.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/11/28 17:18:06 PST Modified files: en/projects projects.sgml Log: Added description for the USB project Submitted by: Nick Hibma Revision Changes Path 1.34 +7 -3 www/en/projects/projects.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 17:55:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA08240 for cvs-all-outgoing; Sat, 28 Nov 1998 17:55: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 RAA08235; Sat, 28 Nov 1998 17:55:11 -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 RAA27034; Sat, 28 Nov 1998 17:55:50 -0800 (PST) Date: Sat, 28 Nov 1998 17:55:50 -0800 (PST) Message-Id: <199811290155.RAA27034@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/games/xscavenger Makefile ports/games/xscavenger/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk eivind 1998/11/28 17:55:50 PST Modified files: games/xscavenger Makefile games/xscavenger/files md5 Log: Update to version 1.3.6. This fix a problem with movie generation. Revision Changes Path 1.9 +3 -3 ports/games/xscavenger/Makefile 1.5 +1 -1 ports/games/xscavenger/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 18:31:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA10934 for cvs-all-outgoing; Sat, 28 Nov 1998 18:31:45 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from pcnet1.pcnet.com (pcnet1.pcnet.com [204.213.232.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA10928; Sat, 28 Nov 1998 18:31:40 -0800 (PST) (envelope-from eischen@vigrid.com) Received: (from eischen@localhost) by pcnet1.pcnet.com (8.8.7/PCNet) id VAA28198; Sat, 28 Nov 1998 21:31:16 -0500 (EST) Date: Sat, 28 Nov 1998 21:31:16 -0500 (EST) From: Daniel Eischen Message-Id: <199811290231.VAA28198@pcnet1.pcnet.com> To: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, eivind@FreeBSD.ORG, lists@tar.com Subject: Re: cvs commit: src/include pthread.h src/lib/libc_r/uthread uthread_mattr_kind_np.c uthread_mutex.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > >eivind 1998/11/28 15:52:59 PST > > > > Modified files: > > include pthread.h > > lib/libc_r/uthread uthread_mattr_kind_np.c uthread_mutex.c > > Log: > > Add support for pthread_mutexattr_settype(). As a side effect of > > testing this, fix MUTEX_TYPE_COUNTING_FAST. Recursive locks now work. > ^^^^^^^^^^^^^^^^^^^^^^^^ > You might want to check localtime.c in libc. I seem to recall from > looking at this a couple of weeks ago that the "thread safe", ie. > libc_r, implementation makes recursive calls to pthread_mutex_lock. > Therefore, its possible this change will break some of the localtime > related functions. If so, it could be fixed by having localtime.c > use recursive mutexes, or better yet, by rewriting it so it doesn't > make recursive calls to pthread_mutex_lock. And can we also make a default mutex an error checking mutex? Both POSIX and Single UNIX Spec 2 allow this. SS2 allows that you can map PTHREAD_MUTEX_DEFAULT to any one of the other mutex types - it should be mapped to PTHREAD_MUTEX_ERRORCHECK. If at all possible, we should let the programmer know that he's hit a deadlock condition. Dan Eischen eischen@vigrid.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 18:47:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA12055 for cvs-all-outgoing; Sat, 28 Nov 1998 18:47: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 SAA12048; Sat, 28 Nov 1998 18:47:13 -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 SAA03029; Sat, 28 Nov 1998 18:47:52 -0800 (PST) Date: Sat, 28 Nov 1998 18:47:52 -0800 (PST) Message-Id: <199811290247.SAA03029@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/11/28 18:47:52 PST Modified files: lib Makefile Log: Fixed SUBDIR order. Revision Changes Path 1.86 +2 -2 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 Nov 28 19:00:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA12797 for cvs-all-outgoing; Sat, 28 Nov 1998 19:00:43 -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 TAA12792; Sat, 28 Nov 1998 19:00:39 -0800 (PST) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sji-ca3-185.ix.netcom.com [209.109.233.185]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id TAA24808; Sat, 28 Nov 1998 19:00:29 -0800 (PST) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id TAA05482; Sat, 28 Nov 1998 19:00:12 -0800 (PST) (envelope-from asami) Date: Sat, 28 Nov 1998 19:00:12 -0800 (PST) Message-Id: <199811290300.TAA05482@bubble.didi.com> To: eivind@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199811290155.RAA27034@freefall.freebsd.org> (message from Eivind Eklund on Sat, 28 Nov 1998 17:55:50 -0800 (PST)) Subject: Re: cvs commit: ports/games/xscavenger Makefile ports/games/xscavenger/files md5 From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Update to version 1.3.6. This fix a problem with movie generation. * 1.9 +3 -3 ports/games/xscavenger/Makefile * 1.5 +1 -1 ports/games/xscavenger/files/md5 Please back it out immediately. The ports tree is still frozen. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 19:08:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA13348 for cvs-all-outgoing; Sat, 28 Nov 1998 19:08: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 TAA13343; Sat, 28 Nov 1998 19:08:26 -0800 (PST) (envelope-from nectar@FreeBSD.org) From: Jacques Vidrine Received: (from nectar@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA05499; Sat, 28 Nov 1998 19:09:05 -0800 (PST) Date: Sat, 28 Nov 1998 19:09:05 -0800 (PST) Message-Id: <199811290309.TAA05499@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/security/smurflog Makefile ports/security/smurflog/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nectar 1998/11/28 19:09:05 PST Modified files: security/smurflog Makefile security/smurflog/files md5 Log: Update to 2.1 Revision Changes Path 1.2 +7 -8 ports/security/smurflog/Makefile 1.2 +1 -1 ports/security/smurflog/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 Nov 28 19:11:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA13717 for cvs-all-outgoing; Sat, 28 Nov 1998 19:11: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 TAA13712; Sat, 28 Nov 1998 19:11: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 TAA05729; Sat, 28 Nov 1998 19:12:07 -0800 (PST) Date: Sat, 28 Nov 1998 19:12:07 -0800 (PST) Message-Id: <199811290312.TAA05729@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/ufs/ffs ffs_subr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/11/28 19:12:07 PST Modified files: sys/ufs/ffs ffs_subr.c Log: Don't use the strange null pointer constant `(ufs_daddr_t)0' in a call to VOP_BMAP(). Don't use uncast NULLs in the same call. Revision Changes Path 1.22 +3 -3 src/sys/ufs/ffs/ffs_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 19:12:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA13979 for cvs-all-outgoing; Sat, 28 Nov 1998 19:12: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 TAA13972; Sat, 28 Nov 1998 19:12:31 -0800 (PST) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sji-ca3-185.ix.netcom.com [209.109.233.185]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id TAA24830; Sat, 28 Nov 1998 19:12:22 -0800 (PST) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id TAA05521; Sat, 28 Nov 1998 19:12:17 -0800 (PST) (envelope-from asami) Date: Sat, 28 Nov 1998 19:12:17 -0800 (PST) Message-Id: <199811290312.TAA05521@bubble.didi.com> To: nectar@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199811290309.TAA05499@freefall.freebsd.org> (message from Jacques Vidrine on Sat, 28 Nov 1998 19:09:05 -0800 (PST)) Subject: Re: cvs commit: ports/security/smurflog Makefile ports/security/smurflog/files md5 From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Update to 2.1 Please back it out. The ports tree is still frozen. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 19:14:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA14025 for cvs-all-outgoing; Sat, 28 Nov 1998 19:14:09 -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 TAA14020 for ; Sat, 28 Nov 1998 19:14:07 -0800 (PST) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sji-ca3-185.ix.netcom.com [209.109.233.185]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id TAA24834 for ; Sat, 28 Nov 1998 19:13:59 -0800 (PST) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id TAA05528; Sat, 28 Nov 1998 19:13:55 -0800 (PST) (envelope-from asami) Date: Sat, 28 Nov 1998 19:13:55 -0800 (PST) Message-Id: <199811290313.TAA05528@bubble.didi.com> To: committers@FreeBSD.ORG Subject: ports tree still frozen! From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk I don't know why some of you got the idea otherwise, but the ports tree is still frozen and I'm trying to finish up the package build. Any person who commits to the ports tree between now and the release will have his/her commit priviledge suspended immediately. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 19:14:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA14059 for cvs-all-outgoing; Sat, 28 Nov 1998 19:14:41 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from cerebus.nectar.com (nectar-gw.nectar.com [204.0.249.101]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA14053; Sat, 28 Nov 1998 19:14:39 -0800 (PST) (envelope-from nectar@nectar.com) Received: (from smap@localhost) by cerebus.nectar.com (8.9.1/8.9.1) id VAA19594; Sat, 28 Nov 1998 21:14:30 -0600 (CST) (envelope-from nectar@nectar.com) Received: from spawn.nectar.com(10.0.0.101) by cerebus.nectar.com via smap (V2.1) id xma019592; Sat, 28 Nov 98 21:14:22 -0600 Received: (from nectar@localhost) by spawn.nectar.com (8.9.1/8.9.1) id VAA06222; Sat, 28 Nov 1998 21:14:22 -0600 (CST) (envelope-from nectar) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <199811290312.TAA05521@bubble.didi.com> X-PGP-RSAkey: http://www.nectar.com/nectar-pgp262.txt X-PGP-RSAfprint: 00 F9 E6 A2 C5 4D 0A 76 26 8B 8B 57 73 D0 DE EE Date: Sat, 28 Nov 1998 21:14:21 -0600 (CST) From: nectar@FreeBSD.ORG To: (Satoshi Asami) Subject: Re: cvs commit: ports/security/smurflog Makefile ports/security/ Cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk A million apologies, I have no excuse. On 29-Nov-98 Satoshi Asami wrote: > * Update to 2.1 > > Please back it out. The ports tree is still frozen. > > Satoshi > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 19:16:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA14142 for cvs-all-outgoing; Sat, 28 Nov 1998 19:16: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 TAA14137; Sat, 28 Nov 1998 19:16: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 TAA06076; Sat, 28 Nov 1998 19:17:22 -0800 (PST) Date: Sat, 28 Nov 1998 19:17:22 -0800 (PST) Message-Id: <199811290317.TAA06076@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/graphics/4va Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/28 19:17:22 PST Modified files: graphics/4va Makefile Log: This port requires X. Revision Changes Path 1.2 +2 -1 ports/graphics/4va/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 19:19:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA14469 for cvs-all-outgoing; Sat, 28 Nov 1998 19:19: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 TAA14464; Sat, 28 Nov 1998 19:19:32 -0800 (PST) (envelope-from nectar@FreeBSD.org) From: Jacques Vidrine Received: (from nectar@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA06378; Sat, 28 Nov 1998 19:20:11 -0800 (PST) Date: Sat, 28 Nov 1998 19:20:11 -0800 (PST) Message-Id: <199811290320.TAA06378@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/security/smurflog Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nectar 1998/11/28 19:20:11 PST Modified files: security/smurflog Makefile Log: Back out last commit -- we are in a freeze. Pass me point hat. Gently reminded by: asami Revision Changes Path 1.3 +8 -7 ports/security/smurflog/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 19:21:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA14670 for cvs-all-outgoing; Sat, 28 Nov 1998 19:21: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 TAA14665; Sat, 28 Nov 1998 19:21:37 -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 TAA06570; Sat, 28 Nov 1998 19:22:16 -0800 (PST) Date: Sat, 28 Nov 1998 19:22:16 -0800 (PST) Message-Id: <199811290322.TAA06570@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/p5-Archie Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/28 19:22:15 PST Modified files: net/p5-Archie Makefile Log: Create installation directory. Revision Changes Path 1.7 +2 -1 ports/net/p5-Archie/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 19:23:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA14904 for cvs-all-outgoing; Sat, 28 Nov 1998 19:23:03 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from cerebus.nectar.com (nectar-gw.nectar.com [204.0.249.101]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA14896; Sat, 28 Nov 1998 19:22:59 -0800 (PST) (envelope-from nectar@nectar.com) Received: (from smap@localhost) by cerebus.nectar.com (8.9.1/8.9.1) id VAA19637; Sat, 28 Nov 1998 21:22:51 -0600 (CST) (envelope-from nectar@nectar.com) Received: from spawn.nectar.com(10.0.0.101) by cerebus.nectar.com via smap (V2.1) id xma019635; Sat, 28 Nov 98 21:22:43 -0600 Received: (from nectar@localhost) by spawn.nectar.com (8.9.1/8.9.1) id VAA06295; Sat, 28 Nov 1998 21:22:43 -0600 (CST) (envelope-from nectar) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <199811290320.TAA06378@freefall.freebsd.org> X-PGP-RSAkey: http://www.nectar.com/nectar-pgp262.txt X-PGP-RSAfprint: 00 F9 E6 A2 C5 4D 0A 76 26 8B 8B 57 73 D0 DE EE Date: Sat, 28 Nov 1998 21:22:43 -0600 (CST) From: Jacques Vidrine To: Jacques Vidrine Subject: RE: cvs commit: ports/security/smurflog Makefile Cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On 29-Nov-98 Jacques Vidrine wrote: > Back out last commit -- we are in a freeze. Pass me point hat. ^ ^ Or the pointy one, even. Jacques Vidrine / n@nectar.com / nectar@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 19:23:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA14951 for cvs-all-outgoing; Sat, 28 Nov 1998 19:23: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 TAA14937; Sat, 28 Nov 1998 19:23:26 -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 TAA06702; Sat, 28 Nov 1998 19:24:05 -0800 (PST) Date: Sat, 28 Nov 1998 19:24:05 -0800 (PST) Message-Id: <199811290324.TAA06702@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/ivs Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/28 19:24:04 PST Modified files: net/ivs Makefile Log: This port requires X. Revision Changes Path 1.12 +2 -1 ports/net/ivs/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 19:29:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA15114 for cvs-all-outgoing; Sat, 28 Nov 1998 19:29:37 -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 TAA15108; Sat, 28 Nov 1998 19:29:29 -0800 (PST) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sji-ca3-185.ix.netcom.com [209.109.233.185]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id TAA24851; Sat, 28 Nov 1998 19:28:42 -0800 (PST) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id TAA05583; Sat, 28 Nov 1998 19:27:24 -0800 (PST) (envelope-from asami) Date: Sat, 28 Nov 1998 19:27:24 -0800 (PST) Message-Id: <199811290327.TAA05583@bubble.didi.com> To: nectar@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199811290320.TAA06378@freefall.freebsd.org> (message from Jacques Vidrine on Sat, 28 Nov 1998 19:20:11 -0800 (PST)) Subject: Re: cvs commit: ports/security/smurflog Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Back out last commit -- we are in a freeze. Pass me point hat. * Gently reminded by: asami That was more like "yelled at", but it's ok. :) * Revision Changes Path * 1.3 +8 -7 ports/security/smurflog/Makefile What about files/md5? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 19:42:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA16229 for cvs-all-outgoing; Sat, 28 Nov 1998 19:42: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 TAA16224; Sat, 28 Nov 1998 19:42:50 -0800 (PST) (envelope-from nectar@FreeBSD.org) From: Jacques Vidrine Received: (from nectar@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA08165; Sat, 28 Nov 1998 19:43:29 -0800 (PST) Date: Sat, 28 Nov 1998 19:43:29 -0800 (PST) Message-Id: <199811290343.TAA08165@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/security/smurflog/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nectar 1998/11/28 19:43:29 PST Modified files: security/smurflog/files md5 Log: Back out last commit -- we are in a freeze. Pass me the pointy hat. Reminded by: asami Revision Changes Path 1.3 +1 -1 ports/security/smurflog/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 Nov 28 19:44:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA16475 for cvs-all-outgoing; Sat, 28 Nov 1998 19:44:42 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from cerebus.nectar.com (nectar-gw.nectar.com [204.0.249.101]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA16466; Sat, 28 Nov 1998 19:44:40 -0800 (PST) (envelope-from nectar@nectar.com) Received: (from smap@localhost) by cerebus.nectar.com (8.9.1/8.9.1) id VAA19707; Sat, 28 Nov 1998 21:44:32 -0600 (CST) (envelope-from nectar@nectar.com) Received: from spawn.nectar.com(10.0.0.101) by cerebus.nectar.com via smap (V2.1) id xma019705; Sat, 28 Nov 98 21:44:29 -0600 Received: (from nectar@localhost) by spawn.nectar.com (8.9.1/8.9.1) id VAA06401; Sat, 28 Nov 1998 21:44:29 -0600 (CST) (envelope-from nectar) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <199811290327.TAA05583@bubble.didi.com> X-PGP-RSAkey: http://www.nectar.com/nectar-pgp262.txt X-PGP-RSAfprint: 00 F9 E6 A2 C5 4D 0A 76 26 8B 8B 57 73 D0 DE EE Date: Sat, 28 Nov 1998 21:44:28 -0600 (CST) From: nectar@FreeBSD.ORG To: (Satoshi Asami) Subject: Re: cvs commit: ports/security/smurflog Makefile Cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On 29-Nov-98 Satoshi Asami wrote: > That was more like "yelled at", but it's ok. :) > What about files/md5? Missed commit in that directory *slaps head* I'm going back to bed now. I obviously did not get enough sleep :-) Jacques Vidrine / n@nectar.com / nectar@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 20:01:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA18044 for cvs-all-outgoing; Sat, 28 Nov 1998 20:01:19 -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 UAA18020; Sat, 28 Nov 1998 20:01:13 -0800 (PST) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sji-ca3-185.ix.netcom.com [209.109.233.185]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id UAA24880; Sat, 28 Nov 1998 20:01:04 -0800 (PST) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id TAA05624; Sat, 28 Nov 1998 19:49:12 -0800 (PST) (envelope-from asami) Date: Sat, 28 Nov 1998 19:49:12 -0800 (PST) Message-Id: <199811290349.TAA05624@bubble.didi.com> To: nectar@FreeBSD.ORG CC: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG In-reply-to: Subject: Re: cvs commit: ports/security/smurflog Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Missed commit in that directory *slaps head* Looks good now, thanks. * I'm going back to bed now. I obviously did not get enough * sleep :-) Good night. :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Nov 28 20:30:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA20696 for cvs-all-outgoing; Sat, 28 Nov 1998 20:30: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 UAA20691; Sat, 28 Nov 1998 20:30:45 -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 UAA12186; Sat, 28 Nov 1998 20:31:24 -0800 (PST) Date: Sat, 28 Nov 1998 20:31:24 -0800 (PST) Message-Id: <199811290431.UAA12186@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-wm/enlightenment Makefile ports/x11-wm/enlightenment/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/28 20:31:23 PST Modified files: x11-wm/enlightenment Makefile x11-wm/enlightenment/patches patch-aa Log: One more tiff34 fix. This thing was even lacking the dependency, probably why Justin missed it. Revision Changes Path 1.29 +3 -2 ports/x11-wm/enlightenment/Makefile 1.9 +0 -112 ports/x11-wm/enlightenment/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 Nov 28 23:48:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA03093 for cvs-all-outgoing; Sat, 28 Nov 1998 23:48: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 XAA03088; Sat, 28 Nov 1998 23: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 XAA18138; Sat, 28 Nov 1998 23:49:31 -0800 (PST) Date: Sat, 28 Nov 1998 23:49:31 -0800 (PST) Message-Id: <199811290749.XAA18138@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/games/xpat2 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/11/28 23:49:31 PST Modified files: games/xpat2 Makefile Log: Depends on xpm. Revision Changes Path 1.6 +3 -1 ports/games/xpat2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message