From owner-cvs-all Sun Apr 12 02:06:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA07947 for cvs-all-outgoing; Sun, 12 Apr 1998 02:06:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA07941; Sun, 12 Apr 1998 02:06:56 -0700 (PDT) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA06682; Sun, 12 Apr 1998 02:06:35 -0700 (PDT) Date: Sun, 12 Apr 1998 02:06:35 -0700 (PDT) Message-Id: <199804120906.CAA06682@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/netscape4-navigator Makefile ports/www/netscape4-navigator/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/04/12 02:06:34 PDT Modified files: www/netscape4-navigator Makefile www/netscape4-navigator/files md5 Log: Upgrade fortyofy to 1.2.2. USE_128BIT works again. Revision Changes Path 1.20 +3 -3 ports/www/netscape4-navigator/Makefile 1.14 +1 -1 ports/www/netscape4-navigator/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 02:08:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA08051 for cvs-all-outgoing; Sun, 12 Apr 1998 02:08:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA08046; Sun, 12 Apr 1998 02:08:10 -0700 (PDT) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA06727; Sun, 12 Apr 1998 02:07:49 -0700 (PDT) Date: Sun, 12 Apr 1998 02:07:49 -0700 (PDT) Message-Id: <199804120907.CAA06727@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/netscape4-communicator Makefile ports/www/netscape4-communicator/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/04/12 02:07:49 PDT Modified files: www/netscape4-communicator Makefile www/netscape4-communicator/files md5 Log: Upgrade Fortify to 1.2.2. USE_128BIT works again. Revision Changes Path 1.19 +3 -3 ports/www/netscape4-communicator/Makefile 1.14 +1 -1 ports/www/netscape4-communicator/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 02:18:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA08695 for cvs-all-outgoing; Sun, 12 Apr 1998 02:18:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA08683 for ; Sun, 12 Apr 1998 02:17:58 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id CAA28140 for ; Sun, 12 Apr 1998 02:18:09 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: committers@FreeBSD.ORG Subject: Craig Leres: problems with cron and FreeBSD login classes Date: Sun, 12 Apr 1998 02:18:09 -0700 Message-ID: <28136.892372689@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Any comments? ------- Forwarded Message To: vixie@vix.com (Paul Vixie) Cc: jkh@freebsd.org (Jordan K. Hubbard), jef@ee.lbl.gov (Jef Poskanzer) Subject: problems with cron and FreeBSD login classes Date: Sun, 12 Apr 1998 02:15:02 PDT From: Craig Leres We upgraded our netnews server to a Pentium II running FreeBSD 2.2.5-STABLE a few months ago. Ignoring our difficulties with innfeed, the one remaining problem was that the weekly news cron job to rebuild the history file didn't work; that is, it worked from an interactive shell but when run from cron, it all but ground to a stop using a tiny amount of cpu, never reaching completion. I traced the problem to the new /etc/login.conf stuff in FreeBSD. The main problem seemed to be that the version of cron I had didn't know about login classes. I picked up some changes from the FreeBSD-current source tree but they were less than satisfactory... It looks like that version expects you to put the login class after the user name, delimited by a slash, e.g.: 0 * * * * news/news /usr/news/bin/news.hourly The user is news and the login class is news. Anyway, this seems silly to me; you've already got the login class in the password file, why not use it instead of replicating this info in the crontab file? Appended is the minimal patch I made to cron/do_command.c. The idea is to use the login class from the password file; if there isn't one in the password file, use RESOURCE_RC (daemon). Does this change look reasonable? Should the default just be the "default" login class? Should it be possible to override the login class in the crontab? Let me know what sounds reasonable and I'll submit a more complete patch. Craig - ------ *** /tmp/,RCSt1016462 Sun Apr 12 02:03:54 1998 - --- do_command.c Sun Apr 12 02:03:43 1998 *************** *** 229,236 **** lc = NULL; if (pwd != NULL) { pwd->pw_gid = e->gid; ! if (e->class != NULL) ! lc = login_getclass(e->class); } if (pwd && setusercontext(lc, pwd, e->uid, - --- 229,238 ---- lc = NULL; if (pwd != NULL) { pwd->pw_gid = e->gid; ! if (pwd->pw_class == NULL) ! lc = login_getclass(RESOURCE_RC); ! else ! lc = login_getpwclass(pwd); } if (pwd && setusercontext(lc, pwd, e->uid, ------- 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 Sun Apr 12 02:48:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA10891 for cvs-all-outgoing; Sun, 12 Apr 1998 02:48:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA10884; Sun, 12 Apr 1998 02:48:05 -0700 (PDT) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA06962; Sun, 12 Apr 1998 02:47:44 -0700 (PDT) Date: Sun, 12 Apr 1998 02:47:44 -0700 (PDT) Message-Id: <199804120947.CAA06962@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc rc.conf rc.network Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/04/12 02:47:44 PDT Modified files: etc rc.conf rc.network Log: Enable the SecureRPC bits in rc.conf, if the Administrator wants them. Revision Changes Path 1.44 +4 -1 src/etc/rc.conf 1.21 +10 -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 Sun Apr 12 02:54:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA11653 for cvs-all-outgoing; Sun, 12 Apr 1998 02:54:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA11648; Sun, 12 Apr 1998 02:54:22 -0700 (PDT) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA07065; Sun, 12 Apr 1998 02:54:00 -0700 (PDT) Date: Sun, 12 Apr 1998 02:54:00 -0700 (PDT) Message-Id: <199804120954.CAA07065@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/apache-ssl Makefile ports/www/apache-ssl/files Makefile.SSL Makefile.rsa.patch md5 ports/www/apache-ssl/patches patch-aa patch-ad patch-ae patch-ac ports/www/apache-ssl/pkg PLIST ports/www/apache-ssl/scripts configure Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/04/12 02:54:00 PDT Modified files: www/apache-ssl Makefile www/apache-ssl/files Makefile.SSL Makefile.rsa.patch md5 www/apache-ssl/patches patch-aa patch-ad patch-ae www/apache-ssl/pkg PLIST www/apache-ssl/scripts configure Removed files: www/apache-ssl/patches patch-ac Log: Upgrade to Apache1.2.6. Revision Changes Path 1.45 +5 -5 ports/www/apache-ssl/Makefile 1.2 +1 -0 ports/www/apache-ssl/files/Makefile.SSL 1.5 +3 -3 ports/www/apache-ssl/files/Makefile.rsa.patch 1.6 +2 -2 ports/www/apache-ssl/files/md5 1.6 +69 -110 ports/www/apache-ssl/patches/patch-aa 1.9 +25 -44 ports/www/apache-ssl/patches/patch-ad 1.6 +26 -11 ports/www/apache-ssl/patches/patch-ae 1.8 +1 -0 ports/www/apache-ssl/pkg/PLIST 1.7 +2 -1 ports/www/apache-ssl/scripts/configure To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 03:44:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA16517 for cvs-all-outgoing; Sun, 12 Apr 1998 03:44:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA16508; Sun, 12 Apr 1998 03:44:49 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA07211; Sun, 12 Apr 1998 03:44:27 -0700 (PDT) Date: Sun, 12 Apr 1998 03:44:27 -0700 (PDT) Message-Id: <199804121044.DAA07211@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG Subject: cvs commit: src/sbin Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/04/12 03:44:26 PDT Modified files: sbin Makefile Log: Change noc-tun to nos-tun after Peter did the repository copy to cover up the tracks of my blunder. Revision Changes Path 1.46 +1 -1 src/sbin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 03:45:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA16769 for cvs-all-outgoing; Sun, 12 Apr 1998 03:45:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA16715; Sun, 12 Apr 1998 03:45:34 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA07243; Sun, 12 Apr 1998 03:45:12 -0700 (PDT) Date: Sun, 12 Apr 1998 03:45:12 -0700 (PDT) Message-Id: <199804121045.DAA07243@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG Subject: cvs commit: src/sbin/noc-tun Makefile nos-tun.8 nos-tun.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/04/12 03:45:12 PDT Removed files: sbin/noc-tun Makefile nos-tun.8 nos-tun.c Log: Remove these copies, they now live the right place. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 04:16:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA22889 for cvs-all-outgoing; Sun, 12 Apr 1998 04:16:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA22876; Sun, 12 Apr 1998 04:16:18 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA07444; Sun, 12 Apr 1998 04:15:56 -0700 (PDT) Date: Sun, 12 Apr 1998 04:15:56 -0700 (PDT) Message-Id: <199804121115.EAA07444@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-libexec@FreeBSD.ORG Subject: cvs commit: src/libexec/tftpd tftpd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/04/12 04:15:55 PDT Modified files: libexec/tftpd tftpd.c Log: openlog() needs to have LOG_NDELAY added, or else the syslog() calls after the chroot will not get sent to syslogd. PR: 4910 Reviewed by: phk Submitted by: Jim Mercer Revision Changes Path 1.11 +2 -2 src/libexec/tftpd/tftpd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 04:27:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA24076 for cvs-all-outgoing; Sun, 12 Apr 1998 04:27:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA24070; Sun, 12 Apr 1998 04:27:03 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA07866; Sun, 12 Apr 1998 04:26:42 -0700 (PDT) Date: Sun, 12 Apr 1998 04:26:42 -0700 (PDT) Message-Id: <199804121126.EAA07866@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data web.atoz support.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/12 04:26:41 PDT Modified files: data web.atoz support.sgml Log: Add 'FreeBSD Mozilla Group'. Revision Changes Path 1.13 +5 -1 www/data/web.atoz 1.51 +4 -2 www/data/support.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 05:11:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA00297 for cvs-all-outgoing; Sun, 12 Apr 1998 05:11:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA00292; Sun, 12 Apr 1998 05:11:54 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA08765; Sun, 12 Apr 1998 05:11:32 -0700 (PDT) Date: Sun, 12 Apr 1998 05:11:32 -0700 (PDT) Message-Id: <199804121211.FAA08765@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa aic6360.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/04/12 05:11:32 PDT Modified files: sys/i386/isa aic6360.c Log: Aic APM driver support for e.g. Toshiba T2400 notebook with internal Adaptec SCSI (aic6360/aha152x) controller. PR: 5382 Reviewed by: phk Submitted by: Oliver Breuninger Revision Changes Path 1.39 +59 -2 src/sys/i386/isa/aic6360.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 05:34:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA01502 for cvs-all-outgoing; Sun, 12 Apr 1998 05:34:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA01496; Sun, 12 Apr 1998 05:34:22 -0700 (PDT) (envelope-from sos@FreeBSD.org) From: Søren Schmidt Received: (from sos@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA08950; Sun, 12 Apr 1998 05:34:00 -0700 (PDT) Date: Sun, 12 Apr 1998 05:34:00 -0700 (PDT) Message-Id: <199804121234.FAA08950@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/doc/smm Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sos 1998/04/12 05:33:59 PDT Modified files: share/doc/smm Makefile Log: omehow Jordan got 07.lpd in -current enabled again... Revision Changes Path 1.11 +3 -3 src/share/doc/smm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 05:37:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA01752 for cvs-all-outgoing; Sun, 12 Apr 1998 05:37:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA01737; Sun, 12 Apr 1998 05:37:20 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id FAA28887; Sun, 12 Apr 1998 05:37:32 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: S ren Schmidt cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: Re: cvs commit: src/share/doc/smm Makefile In-reply-to: Your message of "Sun, 12 Apr 1998 05:34:00 PDT." <199804121234.FAA08950@freefall.freebsd.org> Date: Sun, 12 Apr 1998 05:37:31 -0700 Message-ID: <28882.892384651@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk What? How? I only made *one* commit. :) > sos 1998/04/12 05:33:59 PDT > > Modified files: > share/doc/smm Makefile > Log: > omehow Jordan got 07.lpd in -current enabled again... > > Revision Changes Path > 1.11 +3 -3 src/share/doc/smm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 05:44:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA02391 for cvs-all-outgoing; Sun, 12 Apr 1998 05:44:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from sos.freebsd.dk (sos.freebsd.dk [195.8.129.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA02352; Sun, 12 Apr 1998 05:43:58 -0700 (PDT) (envelope-from sos@sos.freebsd.dk) Received: (from sos@localhost) by sos.freebsd.dk (8.8.8/8.8.8) id OAA04414; Sun, 12 Apr 1998 14:43:47 +0200 (MEST) (envelope-from sos) Message-Id: <199804121243.OAA04414@sos.freebsd.dk> Subject: Re: cvs commit: src/share/doc/smm Makefile In-Reply-To: <28882.892384651@time.cdrom.com> from "Jordan K. Hubbard" at "Apr 12, 98 05:37:31 am" To: jkh@time.cdrom.com (Jordan K. Hubbard) Date: Sun, 12 Apr 1998 14:43:47 +0200 (MEST) Cc: sos@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG From: Søren Schmidt Reply-to: sos@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL30 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In reply to Jordan K. Hubbard who wrote: > What? How? I only made *one* commit. :) Dunno, rev 1.9 has 07.lpd removed rev 1.10 has it enabled again ... Rev 1.10 is by jkh: revision 1.10 date: 1998/04/11 15:10:35; author: jkh; state: Exp; lines: +2 -5 MF22: build lpd docs That should have went into -stable right ?? but it didn't :) > > sos 1998/04/12 05:33:59 PDT > > > > Modified files: > > share/doc/smm Makefile > > Log: > > omehow Jordan got 07.lpd in -current enabled again... > > > > Revision Changes Path > > 1.11 +3 -3 src/share/doc/smm/Makefile -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Søren Schmidt (sos@FreeBSD.org) FreeBSD Core Team Even more code to hack -- will it ever end .. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 05:46:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA02810 for cvs-all-outgoing; Sun, 12 Apr 1998 05:46:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA02728; Sun, 12 Apr 1998 05:46:35 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id FAA28948; Sun, 12 Apr 1998 05:46:47 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: sos@FreeBSD.ORG cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: Re: cvs commit: src/share/doc/smm Makefile In-reply-to: Your message of "Sun, 12 Apr 1998 14:43:47 +0200." <199804121243.OAA04414@sos.freebsd.dk> Date: Sun, 12 Apr 1998 05:46:47 -0700 Message-ID: <28944.892385207@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Hmmm. Urk. Just shoot me on this one, I don't think it'd be possible for me to have screwed it up any worse. :-) That's the last time (haha) I'll act on a suggestion at 4am. > In reply to Jordan K. Hubbard who wrote: > > What? How? I only made *one* commit. :) > > Dunno, rev 1.9 has 07.lpd removed rev 1.10 has it enabled again ... > Rev 1.10 is by jkh: > > revision 1.10 > date: 1998/04/11 15:10:35; author: jkh; state: Exp; lines: +2 -5 > MF22: build lpd docs > > That should have went into -stable right ?? but it didn't :) > > > > sos 1998/04/12 05:33:59 PDT > > > > > > Modified files: > > > share/doc/smm Makefile > > > Log: > > > omehow Jordan got 07.lpd in -current enabled again... > > > > > > Revision Changes Path > > > 1.11 +3 -3 src/share/doc/smm/Makefile > > > -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- > Søren Schmidt (sos@FreeBSD.org) FreeBSD Core Team > Even more code to hack -- will it ever end > .. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 05:47:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA02892 for cvs-all-outgoing; Sun, 12 Apr 1998 05:47:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA02886; Sun, 12 Apr 1998 05:47:50 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA09119; Sun, 12 Apr 1998 05:47:27 -0700 (PDT) Date: Sun, 12 Apr 1998 05:47:27 -0700 (PDT) Message-Id: <199804121247.FAA09119@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/mozilla Makefile ports/www/mozilla/files md5 netscape.sh ports/www/mozilla/patches patch-aa patch-ab patch-ac patch-ad patch-ae patch-af ports/www/mozilla/pkg COMMENT DESCR PLIST ports/www/mozilla/scripts configure Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/04/12 05:47:27 PDT Modified files: www/mozilla Makefile www/mozilla/files md5 netscape.sh www/mozilla/pkg COMMENT DESCR PLIST www/mozilla/scripts configure Added files: www/mozilla/patches patch-aa patch-ab patch-ac patch-ad patch-ae patch-af Log: Initial import of a mozilla port. Revision Changes Path 1.18 +33 -46 ports/www/mozilla/Makefile 1.14 +1 -2 ports/www/mozilla/files/md5 1.7 +7 -2 ports/www/mozilla/files/netscape.sh 1.4 +1 -1 ports/www/mozilla/pkg/COMMENT 1.17 +1 -8 ports/www/mozilla/pkg/DESCR 1.15 +8 -142 ports/www/mozilla/pkg/PLIST 1.3 +4 -3 ports/www/mozilla/scripts/configure To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 06:13:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA06198 for cvs-all-outgoing; Sun, 12 Apr 1998 06:13:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ppp6479.on.bellglobal.com (ppp6479.on.bellglobal.com [206.172.208.71]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA06192; Sun, 12 Apr 1998 06:13:42 -0700 (PDT) (envelope-from ac199@hwcn.org) Received: from localhost (tim@localhost) by ppp6479.on.bellglobal.com (8.8.8/8.8.8) with SMTP id JAA00287; Sun, 12 Apr 1998 09:12:17 -0400 (EDT) (envelope-from ac199@hwcn.org) X-Authentication-Warning: ppp6479.on.bellglobal.com: tim owned process doing -bs Date: Sun, 12 Apr 1998 09:12:17 -0400 (EDT) From: Tim Vanderhoek X-Sender: tim@localhost Reply-To: ac199@hwcn.org To: "Justin M. Seger" cc: cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: ports/www/mozilla In-Reply-To: <199804121247.FAA09119@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, 12 Apr 1998, Justin M. Seger wrote: > Log: > Initial import of a mozilla port. Should this have NO_PACKAGE defined, on the grounds that it's an alpha/beta/pre-alpha package? Or should an exception be made on the grounds that to compile oneself requires not-insignificant resources (I presume)? -- tIM...HOEk OPTIMIZATION: the process of using many one-letter variables names hoping that the resultant code will run faster. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 06:16:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA06429 for cvs-all-outgoing; Sun, 12 Apr 1998 06:16:49 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA06424; Sun, 12 Apr 1998 06:16:48 -0700 (PDT) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA09233; Sun, 12 Apr 1998 06:16:26 -0700 (PDT) Date: Sun, 12 Apr 1998 06:16:26 -0700 (PDT) Message-Id: <199804121316.GAA09233@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/lang/gcc28 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/04/12 06:16:26 PDT Modified files: lang/gcc28 Makefile Log: Bump comment from 2.8 to 2.8.1. Revision Changes Path 1.8 +2 -2 ports/lang/gcc28/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 06:29:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA07251 for cvs-all-outgoing; Sun, 12 Apr 1998 06:29:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA07246; Sun, 12 Apr 1998 06:29:25 -0700 (PDT) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA09293; Sun, 12 Apr 1998 06:29:03 -0700 (PDT) Date: Sun, 12 Apr 1998 06:29:03 -0700 (PDT) Message-Id: <199804121329.GAA09293@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/lang/gcc28/patches patch-01 patch-02 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/04/12 06:29:03 PDT Modified files: lang/gcc28/patches patch-01 patch-02 Log: Sync-up CPP predefines w/our stock compiler and EGCS. 1. we are not 386BSD 2. ELF shouldn't need "-fsjlj-exceptions" Revision Changes Path 1.2 +8 -6 ports/lang/gcc28/patches/patch-01 1.2 +3 -16 ports/lang/gcc28/patches/patch-02 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 06:35:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA08114 for cvs-all-outgoing; Sun, 12 Apr 1998 06:35:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA08100; Sun, 12 Apr 1998 06:35:31 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id XAA19407; Sun, 12 Apr 1998 23:35:02 +1000 Date: Sun, 12 Apr 1998 23:35:02 +1000 From: Bruce Evans Message-Id: <199804121335.XAA19407@godzilla.zeta.org.au> To: jkh@time.cdrom.com, sos@FreeBSD.ORG Subject: Re: cvs commit: src/share/doc/smm Makefile Cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-share@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >Hmmm. Urk. Just shoot me on this one, I don't think it'd be possible >for me to have screwed it up any worse. :-) That's the last time (haha) >I'll act on a suggestion at 4am. The comments are now screwed up worse. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 06:42:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA08560 for cvs-all-outgoing; Sun, 12 Apr 1998 06:42:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA08555; Sun, 12 Apr 1998 06:42:40 -0700 (PDT) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA02952; Sun, 12 Apr 1998 06:42:18 -0700 (PDT) Date: Sun, 12 Apr 1998 06:42:18 -0700 (PDT) Message-Id: <199804121342.GAA02952@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/mozilla/pkg COMMENT DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1998/04/12 06:42:17 PDT Modified files: www/mozilla/pkg COMMENT DESCR Log: Be more verbose in DESCR than "netscape". :-) Warn that this is intended for developers. Revision Changes Path 1.5 +1 -1 ports/www/mozilla/pkg/COMMENT 1.18 +3 -1 ports/www/mozilla/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 Apr 12 07:02:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA09816 for cvs-all-outgoing; Sun, 12 Apr 1998 07:02:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA09811; Sun, 12 Apr 1998 07:02:57 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA03031; Sun, 12 Apr 1998 07:02:34 -0700 (PDT) Date: Sun, 12 Apr 1998 07:02:34 -0700 (PDT) Message-Id: <199804121402.HAA03031@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/doc/smm Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/04/12 07:02:34 PDT Modified files: share/doc/smm Makefile Log: Fix comment. Scolded by: bde Revision Changes Path 1.12 +2 -2 src/share/doc/smm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 07:06:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA10024 for cvs-all-outgoing; Sun, 12 Apr 1998 07:06:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA10018; Sun, 12 Apr 1998 07:06:07 -0700 (PDT) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA03066; Sun, 12 Apr 1998 07:05:44 -0700 (PDT) Date: Sun, 12 Apr 1998 07:05:44 -0700 (PDT) Message-Id: <199804121405.HAA03066@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/freeciv/pkg COMMENT DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1998/04/12 07:05:44 PDT Modified files: games/freeciv/pkg COMMENT DESCR Log: Reword; point to the real FreeCiv homepage. Revision Changes Path 1.2 +1 -1 ports/games/freeciv/pkg/COMMENT 1.3 +3 -2 ports/games/freeciv/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 Apr 12 07:21:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA11344 for cvs-all-outgoing; Sun, 12 Apr 1998 07:21:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from lsd.relcom.eu.net (ache@lsd.relcom.eu.net [193.125.27.73]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA11335 for ; Sun, 12 Apr 1998 07:21:56 -0700 (PDT) (envelope-from ache@lsd.relcom.eu.net) Received: (from ache@localhost) by lsd.relcom.eu.net (8.8.8/8.8.8) id SAA13313; Sun, 12 Apr 1998 18:21:55 +0400 (MSD) (envelope-from ache) Message-ID: <19980412182154.41014@nagual.pp.ru> Date: Sun, 12 Apr 1998 18:21:54 +0400 From: =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= To: "Jordan K. Hubbard" , committers@FreeBSD.ORG Subject: Re: Craig Leres: problems with cron and FreeBSD login classes Mail-Followup-To: "Jordan K. Hubbard" , committers@FreeBSD.ORG References: <28136.892372689@time.cdrom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <28136.892372689@time.cdrom.com>; from jkh@time.cdrom.com on Sun, Apr 12, 1998 at 02:18:09AM -0700 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, Apr 12, 1998 at 02:18:09AM -0700, Jordan K. Hubbard wrote: > The user is news and the login class is news. Anyway, this seems silly > to me; you've already got the login class in the password file, why not > use it instead of replicating this info in the crontab file? > > Appended is the minimal patch I made to cron/do_command.c. The idea is > to use the login class from the password file; if there isn't one in > the password file, use RESOURCE_RC (daemon). Does this change look > reasonable? Should the default just be the "default" login class? > Should it be possible to override the login class in the crontab? Let > me know what sounds reasonable and I'll submit a more complete patch. The same words are true for inetd too. This patch takes us just back to previous broken variant. See CVS notes why this variant is implemented over old one you suggest. In few words login classes have restrictions which prevents cron/inetd to do some work under particular user. Live example is "nobody" user abused by Apache. If you _want_ restrictions, use "user/class" semantics. -- Andrey A. Chernov http://www.nagual.pp.ru/~ache/ MTH/SH/HE S-- W-- N+ PEC>+ D A a++ C G>+ QH+(++) 666+>++ Y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 08:04:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA15000 for cvs-all-outgoing; Sun, 12 Apr 1998 08:04:29 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA14995; Sun, 12 Apr 1998 08:04:27 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA03249; Sun, 12 Apr 1998 08:04:04 -0700 (PDT) Date: Sun, 12 Apr 1998 08:04:04 -0700 (PDT) Message-Id: <199804121504.IAA03249@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf GENERIC98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/04/12 08:04:04 PDT Modified files: (Branch: RELENG_2_2) sys/pc98/conf GENERIC98 Log: Sync with sys/i386/conf/GENERIC revision 1.77.2.21. Submitted by: NOKUBI Hirotaka Revision Changes Path 1.8.2.20 +8 -1 src/sys/pc98/conf/GENERIC98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 08:05:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA15064 for cvs-all-outgoing; Sun, 12 Apr 1998 08:05:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA15058; Sun, 12 Apr 1998 08:05:10 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA03276; Sun, 12 Apr 1998 08:04:47 -0700 (PDT) Date: Sun, 12 Apr 1998 08:04:47 -0700 (PDT) Message-Id: <199804121504.IAA03276@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/i386 machdep.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/04/12 08:04:47 PDT Modified files: (Branch: RELENG_2_2) sys/pc98/i386 machdep.c Log: Sync with sys/i386/i386/machdep.c revision 1.209.2.22. Submitted by: NOKUBI Hirotaka Revision Changes Path 1.11.2.24 +1 -2 src/sys/pc98/i386/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 08:05:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA15140 for cvs-all-outgoing; Sun, 12 Apr 1998 08:05:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA15135; Sun, 12 Apr 1998 08:05:52 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA03306; Sun, 12 Apr 1998 08:05:29 -0700 (PDT) Date: Sun, 12 Apr 1998 08:05:29 -0700 (PDT) Message-Id: <199804121505.IAA03306@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf files.pc98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/04/12 08:05:28 PDT Modified files: (Branch: RELENG_2_2) sys/pc98/conf files.pc98 Log: Sync with sys/i386/conf/files.i386 revision 1.141.2.20. Submitted by: NOKUBI Hirotaka Revision Changes Path 1.9.2.22 +3 -3 src/sys/pc98/conf/files.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 08:06:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA15283 for cvs-all-outgoing; Sun, 12 Apr 1998 08:06:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA15275; Sun, 12 Apr 1998 08:06:31 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA03333; Sun, 12 Apr 1998 08:06:08 -0700 (PDT) Date: Sun, 12 Apr 1998 08:06:08 -0700 (PDT) Message-Id: <199804121506.IAA03333@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf GENERIC98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/04/12 08:06:07 PDT Modified files: (Branch: RELENG_2_2) sys/pc98/conf GENERIC98 Log: Sync with sys/i386/conf/GENERIC revision 1.77.2.22. Submitted by: NOKUBI Hirotaka Revision Changes Path 1.8.2.21 +6 -6 src/sys/pc98/conf/GENERIC98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 08:07:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA15516 for cvs-all-outgoing; Sun, 12 Apr 1998 08:07:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from lsd.relcom.eu.net (ache@lsd.relcom.eu.net [193.125.27.73]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA15507 for ; Sun, 12 Apr 1998 08:07:43 -0700 (PDT) (envelope-from ache@lsd.relcom.eu.net) Received: (from ache@localhost) by lsd.relcom.eu.net (8.8.8/8.8.8) id TAA13607; Sun, 12 Apr 1998 19:07:42 +0400 (MSD) (envelope-from ache) Message-ID: <19980412190741.61372@nagual.pp.ru> Date: Sun, 12 Apr 1998 19:07:41 +0400 From: =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= To: "Jordan K. Hubbard" , committers@FreeBSD.ORG Subject: Re: Craig Leres: problems with cron and FreeBSD login classes Mail-Followup-To: "Jordan K. Hubbard" , committers@FreeBSD.ORG References: <28136.892372689@time.cdrom.com> <19980412182154.41014@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit X-Mailer: Mutt 0.89.1i In-Reply-To: <19980412182154.41014@nagual.pp.ru>; from ache@nagual.pp.ru on Sun, Apr 12, 1998 at 06:21:54PM +0400 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, Apr 12, 1998 at 06:21:54PM +0400, áÎÄÒÅÊ þÅÒÎÏ× wrote: > The same words are true for inetd too. This patch takes us just back to > previous broken variant. See CVS notes why this variant is implemented > over old one you suggest. In few words login classes have restrictions > which prevents cron/inetd to do some work under particular user. Live > example is "nobody" user abused by Apache. If you _want_ restrictions, > use "user/class" semantics. The next reason is backward compatibility. Current implementation fully compatible with old inetd/cron configuration tables since classes are non-defaut extension while suggested one is _not_ compatible and really cause serious problems with system maintenance like not runnig daemons or cron jobs. -- Andrey A. Chernov http://www.nagual.pp.ru/~ache/ MTH/SH/HE S-- W-- N+ PEC>+ D A a++ C G>+ QH+(++) 666+>++ Y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 09:01:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA21769 for cvs-all-outgoing; Sun, 12 Apr 1998 09:01:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA21763; Sun, 12 Apr 1998 09:01:35 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA03452; Sun, 12 Apr 1998 09:01:11 -0700 (PDT) Date: Sun, 12 Apr 1998 09:01:11 -0700 (PDT) Message-Id: <199804121601.JAA03452@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pkg_install/lib pen.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/04/12 09:01:11 PDT Modified files: usr.sbin/pkg_install/lib pen.c Log: Fix dependent-package loading when pkg_adding with an FTP URL. I broke this when I changed the playpen code to disallow recursion. I know this fixes a PR someplace but I can't seem to find it with the GNATs search tool. Revision Changes Path 1.28 +40 -9 src/usr.sbin/pkg_install/lib/pen.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 09:01:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA21816 for cvs-all-outgoing; Sun, 12 Apr 1998 09:01:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA21809; Sun, 12 Apr 1998 09:01:53 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA03483; Sun, 12 Apr 1998 09:01:30 -0700 (PDT) Date: Sun, 12 Apr 1998 09:01:30 -0700 (PDT) Message-Id: <199804121601.JAA03483@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pkg_install/lib pen.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/04/12 09:01:30 PDT Modified files: (Branch: RELENG_2_2) usr.sbin/pkg_install/lib pen.c Log: MFC: fix dependent loading by URL Revision Changes Path 1.22.2.4 +40 -9 src/usr.sbin/pkg_install/lib/pen.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 09:28:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA23993 for cvs-all-outgoing; Sun, 12 Apr 1998 09:28:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA23988; Sun, 12 Apr 1998 09:28:16 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA03609; Sun, 12 Apr 1998 09:27:52 -0700 (PDT) Date: Sun, 12 Apr 1998 09:27:52 -0700 (PDT) Message-Id: <199804121627.JAA03609@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/archivers/nulib Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/04/12 09:27:52 PDT Modified files: archivers/nulib Makefile Log: The distfile appears to no longer exist on any FTP site except for FreeBSD distfile mirrors. I've placed a copy at http://www.freebsd.org/~jseger/. Make myself MAINTAINER since the old MAINTAINER hasn't responded to queries. Revision Changes Path 1.4 +3 -3 ports/archivers/nulib/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 09:45:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA26026 for cvs-all-outgoing; Sun, 12 Apr 1998 09:45:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA26019; Sun, 12 Apr 1998 09:45:37 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA03699; Sun, 12 Apr 1998 09:45:13 -0700 (PDT) Date: Sun, 12 Apr 1998 09:45:13 -0700 (PDT) Message-Id: <199804121645.JAA03699@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/xpipeman Makefile ports/games/xpipeman/files md5 ports/games/xpipeman/patches patch-aa patch-ab Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/04/12 09:45:13 PDT Modified files: games/xpipeman Makefile games/xpipeman/files md5 games/xpipeman/patches patch-aa patch-ab Log: Switch to new MASTER_SITE. The distfile on the new master_site is apparently patched to work with Linux. Alter our patches to work correctly with the patched distfile. Make myself MAINTAINER. Revision Changes Path 1.10 +4 -3 ports/games/xpipeman/Makefile 1.2 +1 -1 ports/games/xpipeman/files/md5 1.2 +17 -55 ports/games/xpipeman/patches/patch-aa 1.2 +5 -5 ports/games/xpipeman/patches/patch-ab To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 10:29:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA01393 for cvs-all-outgoing; Sun, 12 Apr 1998 10:29:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA01388; Sun, 12 Apr 1998 10:29:32 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA05041; Sun, 12 Apr 1998 10:29:08 -0700 (PDT) Date: Sun, 12 Apr 1998 10:29:08 -0700 (PDT) Message-Id: <199804121729.KAA05041@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data newsflash.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/12 10:29:08 PDT Modified files: data newsflash.sgml Log: New item FreeBSD Mozilla Group Revision Changes Path 1.73 +13 -2 www/data/newsflash.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 10:44:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA02842 for cvs-all-outgoing; Sun, 12 Apr 1998 10:44:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA02832; Sun, 12 Apr 1998 10:44:39 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id TAA17213; Sun, 12 Apr 1998 19:43:45 +0200 (CEST) Date: Sun, 12 Apr 1998 19:43:44 +0200 Message-ID: <17211.892403024.1@critter.freebsd.dk> From: Poul-Henning Kamp Subject: IMPORTANT: PRs in suspended state MIME-Version: 1.0 Content-Type: multipart/digest; boundary="----- =_aaaaaaaaaa" Content-Description: Blind Carbon Copy Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk To: undisclosed-recipients:; ------- =_aaaaaaaaaa Content-Type: message/rfc822 Content-Description: Original Message Subject: IMPORTANT: PRs in suspended state From: Poul-Henning Kamp Date: Sun, 12 Apr 1998 19:43:44 +0200 Message-ID: <17211.892403024@critter.freebsd.dk> Sender: phk@critter.freebsd.dk Bcc: Blind Distribution List: ; In an attempt to get to the 3.0-RELEASE ready frame of mind, I am doing a end-to-other review of our Gnats database right now. The PRs which contain substance, but with little or no hope to get done will be moved to "suspended" state. There are a few PRs already in that state, which I have not visited yet, but when I'm done, "suspended" will have the meaning of: "Yeah, good idea, where is the patch ?" So these things will basically be up for grabs by anybody who feels like it. It is not a 100% guarantee that the code will be adopted if you write it, but chances are certainly very good. So if you are one of those people who don't know where to start: http://www.freebsd.org/cgi/query-pr-summary.cgi?state=s may provide you with some good ideas. Poul-Henning PS: It would help and speed my review, if you would check all the PRs you have opened, and close the ones which doesn't apply any more. If you are not a committer, just submit a followup saying "can be closed because: ..." -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." ------- =_aaaaaaaaaa-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 10:59:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA06971 for cvs-all-outgoing; Sun, 12 Apr 1998 10:59:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA06939; Sun, 12 Apr 1998 10:59:02 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA05693; Sun, 12 Apr 1998 10:58:38 -0700 (PDT) Date: Sun, 12 Apr 1998 10:58:38 -0700 (PDT) Message-Id: <199804121758.KAA05693@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/mozilla Makefile ports/www/mozilla/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/04/12 10:58:38 PDT Modified files: www/mozilla Makefile www/mozilla/files md5 Log: Upgrade to 1998-04-08 source snapshot. Revision Changes Path 1.19 +7 -7 ports/www/mozilla/Makefile 1.15 +1 -1 ports/www/mozilla/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 Apr 12 11:03:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA07983 for cvs-all-outgoing; Sun, 12 Apr 1998 11:03:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA07977; Sun, 12 Apr 1998 11:03:40 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA05848; Sun, 12 Apr 1998 11:03:16 -0700 (PDT) Date: Sun, 12 Apr 1998 11:03:16 -0700 (PDT) Message-Id: <199804121803.LAA05848@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/xrobots Makefile ports/games/xrobots/files md5 ports/games/xrobots/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/04/12 11:03:15 PDT Modified files: games/xrobots Makefile games/xrobots/files md5 games/xrobots/patches patch-aa Log: Switch to new MASTER_SITE with different distfile. Alter patch-aa to apply cleanly to new distfile. Make myself MAINTAINER. Revision Changes Path 1.10 +6 -6 ports/games/xrobots/Makefile 1.2 +1 -1 ports/games/xrobots/files/md5 1.2 +8 -8 ports/games/xrobots/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 Apr 12 11:06:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA08428 for cvs-all-outgoing; Sun, 12 Apr 1998 11:06:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA08423; Sun, 12 Apr 1998 11:06:45 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA05881; Sun, 12 Apr 1998 11:06:21 -0700 (PDT) Date: Sun, 12 Apr 1998 11:06:21 -0700 (PDT) Message-Id: <199804121806.LAA05881@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook mirrors.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/12 11:06:21 PDT Modified files: handbook mirrors.sgml Log: Add Mozilla CVSup mirrors. Revision Changes Path 1.81 +22 -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 Sun Apr 12 11:13:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA10636 for cvs-all-outgoing; Sun, 12 Apr 1998 11:13:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA10610; Sun, 12 Apr 1998 11:13:03 -0700 (PDT) (envelope-from jdp@FreeBSD.org) From: John Polstra Received: (from jdp@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA06296; Sun, 12 Apr 1998 11:12:39 -0700 (PDT) Date: Sun, 12 Apr 1998 11:12:39 -0700 (PDT) Message-Id: <199804121812.LAA06296@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/as/opcode i386.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jdp 1998/04/12 11:12:39 PDT Modified files: (Branch: RELENG_2_2) gnu/usr.bin/as/opcode i386.h Log: Merge from main branch 1.8 -> 1.9: Add "fildll" and "fistpll" mnemonics. Revision Changes Path 1.4.2.3 +3 -1 src/gnu/usr.bin/as/opcode/i386.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 11:55:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA18101 for cvs-all-outgoing; Sun, 12 Apr 1998 11:55:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA18096; Sun, 12 Apr 1998 11:55:03 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA06649; Sun, 12 Apr 1998 11:54:38 -0700 (PDT) Date: Sun, 12 Apr 1998 11:54:38 -0700 (PDT) Message-Id: <199804121854.LAA06649@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data/cgi query-pr-summary.cgi Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/04/12 11:54:38 PDT Modified files: data/cgi query-pr-summary.cgi Log: Redefine "suspended" a little bit Revision Changes Path 1.14 +4 -5 www/data/cgi/query-pr-summary.cgi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 13:29:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA27032 for cvs-all-outgoing; Sun, 12 Apr 1998 13:29:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA27025; Sun, 12 Apr 1998 13:29:50 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA06804; Sun, 12 Apr 1998 13:29:25 -0700 (PDT) Date: Sun, 12 Apr 1998 13:29:25 -0700 (PDT) Message-Id: <199804122029.NAA06804@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-include@FreeBSD.ORG Subject: cvs commit: src/include stdio.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/04/12 13:29:25 PDT Modified files: include stdio.h Log: Format changes in an attempt to address some of Bruce's comments about spaces and tabs. The externs in the static inline functions remain 'cause (a) they're required; and (b) I can't find any gcc -W* cases where they generate warnings. Revision Changes Path 1.16 +26 -18 src/include/stdio.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 14:07:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA00867 for cvs-all-outgoing; Sun, 12 Apr 1998 14:07:48 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA00862; Sun, 12 Apr 1998 14:07:47 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA06936; Sun, 12 Apr 1998 14:07:22 -0700 (PDT) Date: Sun, 12 Apr 1998 14:07:22 -0700 (PDT) Message-Id: <199804122107.OAA06936@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook eresources.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/12 14:07:22 PDT Modified files: handbook eresources.sgml Log: Add freebsd-mozilla mailing list. Revision Changes Path 1.41 +2 -1 doc/handbook/eresources.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 16:55:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA22558 for cvs-all-outgoing; Sun, 12 Apr 1998 16:55:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA22528; Sun, 12 Apr 1998 16:54:59 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from bubble.didi.com (sjx-ca115-20.ix.netcom.com [207.223.162.84]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id QAA25586; Sun, 12 Apr 1998 16:55:09 -0700 (PDT) Received: (from asami@localhost) by bubble.didi.com (8.8.7/8.8.8) id OAA07969; Sun, 12 Apr 1998 14:57:31 -0700 (PDT) (envelope-from asami) Date: Sun, 12 Apr 1998 14:57:31 -0700 (PDT) Message-Id: <199804122157.OAA07969@bubble.didi.com> To: ac199@hwcn.org CC: jseger@FreeBSD.ORG, cvs-committers@FreeBSD.ORG In-reply-to: (message from Tim Vanderhoek on Sun, 12 Apr 1998 09:12:17 -0400 (EDT)) Subject: Re: cvs commit: ports/www/mozilla From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Should this have NO_PACKAGE defined, on the grounds that it's an * alpha/beta/pre-alpha package? Or should an exception be made on * the grounds that to compile oneself requires not-insignificant * resources (I presume)? One of the purposes of this port is so that I can build packages for people to test. So, I think it's ok as long as it's marked alpha (which Justin just did). (You also need Motif....) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 17:09:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA24449 for cvs-all-outgoing; Sun, 12 Apr 1998 17:09:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA24441; Sun, 12 Apr 1998 17:09:56 -0700 (PDT) (envelope-from jmg@FreeBSD.org) From: John-Mark Gurney Received: (from jmg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA08819; Sun, 12 Apr 1998 17:09:30 -0700 (PDT) Date: Sun, 12 Apr 1998 17:09:30 -0700 (PDT) Message-Id: <199804130009.RAA08819@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/lang/TenDRA - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jmg 1998/04/12 17:09:29 PDT ports/lang/TenDRA - Imported sources Update of /home/ncvs/ports/lang/TenDRA In directory freefall.freebsd.org:/tmp/cvs-serv8804 Log Message: reimport of TenDRA, move it into lang like it was suppose to be... TenDRA* is an optimizing C/C++ compiler, developed by the United Kingdom Defence Evaluation and Research Agency (DERA). A primary focus of the compiler is portability through conformance to standard APIs (ANSI, ISO, POSIX1, POSIX2, XPG3, XPG4, SVID3, UNIX95, among others). The compiler has strong static checking capabilities, including the ability to check programs for conformance to APIs which are not directly supported by system headers. ----- * TenDRA is a registered trademark of the UK Defence Evaluation and Research Agency. Status: Vendor Tag: RNORDIER Release Tags: tendra_4_1_2 N ports/lang/TenDRA/Makefile N ports/lang/TenDRA/files/md5 N ports/lang/TenDRA/pkg/COMMENT N ports/lang/TenDRA/pkg/DESCR N ports/lang/TenDRA/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 Apr 12 17:11:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA24678 for cvs-all-outgoing; Sun, 12 Apr 1998 17:11:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA24673; Sun, 12 Apr 1998 17:11:34 -0700 (PDT) (envelope-from jmg@FreeBSD.org) From: John-Mark Gurney Received: (from jmg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA08882; Sun, 12 Apr 1998 17:11:08 -0700 (PDT) Date: Sun, 12 Apr 1998 17:11:08 -0700 (PDT) Message-Id: <199804130011.RAA08882@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/TenDRA Makefile ports/devel/TenDRA/files md5 ports/devel/TenDRA/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jmg 1998/04/12 17:11:08 PDT Removed files: devel/TenDRA Makefile devel/TenDRA/files md5 devel/TenDRA/pkg COMMENT DESCR PLIST Log: remove old, misimported TenDRA... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 17:17:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA24984 for cvs-all-outgoing; Sun, 12 Apr 1998 17:17:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA24971; Sun, 12 Apr 1998 17:17:10 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA09018; Sun, 12 Apr 1998 17:16:44 -0700 (PDT) Date: Sun, 12 Apr 1998 17:16:44 -0700 (PDT) Message-Id: <199804130016.RAA09018@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data/cgi getmsg.cgi Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/12 17:16:44 PDT Modified files: data/cgi getmsg.cgi Log: Guess the end of an E-Mail if the end is unknown (end==0 or end < start). Revision Changes Path 1.14 +12 -2 www/data/cgi/getmsg.cgi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 17:18:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA25392 for cvs-all-outgoing; Sun, 12 Apr 1998 17:18:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA25379; Sun, 12 Apr 1998 17:18:12 -0700 (PDT) (envelope-from julian@FreeBSD.org) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA09050; Sun, 12 Apr 1998 17:17:46 -0700 (PDT) Date: Sun, 12 Apr 1998 17:17:46 -0700 (PDT) Message-Id: <199804130017.RAA09050@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/security/skip/patches patch-cj patch-ck patch-au patch-bf patch-bg Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk julian 1998/04/12 17:17:46 PDT Modified files: security/skip/patches patch-au patch-bf patch-bg Added files: security/skip/patches patch-cj patch-ck Log: Submitted by: archie Cobbs (archie@whistle.com) updates to make skip port work better, from the original porter. Revision Changes Path 1.2 +12 -2 ports/security/skip/patches/patch-au 1.3 +32 -4 ports/security/skip/patches/patch-bf 1.3 +16 -4 ports/security/skip/patches/patch-bg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 17:52:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA29243 for cvs-all-outgoing; Sun, 12 Apr 1998 17:52:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA29238; Sun, 12 Apr 1998 17:52:49 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA09260; Sun, 12 Apr 1998 17:52:23 -0700 (PDT) Date: Sun, 12 Apr 1998 17:52:23 -0700 (PDT) Message-Id: <199804130052.RAA09260@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/math Makefile ports/math/xvgr Makefile ports/math/xvgr/files md5 ports/math/xvgr/patches patch-aa patch-ab ports/math/xvgr/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/04/12 17:52:23 PDT Modified files: math Makefile Removed files: math/xvgr Makefile math/xvgr/files md5 math/xvgr/patches patch-aa patch-ab math/xvgr/pkg COMMENT DESCR PLIST Log: Nuke math/xvgr. Obsoleted by xmgr. Revision Changes Path 1.38 +1 -2 ports/math/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 18:08:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA01691 for cvs-all-outgoing; Sun, 12 Apr 1998 18:08:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA01685; Sun, 12 Apr 1998 18:08:42 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA09330; Sun, 12 Apr 1998 18:08:16 -0700 (PDT) Date: Sun, 12 Apr 1998 18:08:16 -0700 (PDT) Message-Id: <199804130108.SAA09330@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/04/12 18:08:16 PDT Modified files: . modules Log: Nuke math/xvgr Revision Changes Path 1.1909 +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 Apr 12 18:27:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA03037 for cvs-all-outgoing; Sun, 12 Apr 1998 18:27:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ns.mt.sri.com (sri-gw.MT.net [206.127.105.141]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA03028; Sun, 12 Apr 1998 18:27:03 -0700 (PDT) (envelope-from nate@mt.sri.com) Received: from mt.sri.com (rocky.mt.sri.com [206.127.76.100]) by ns.mt.sri.com (8.8.8/8.8.8) with SMTP id TAA21052; Sun, 12 Apr 1998 19:26:57 -0600 (MDT) (envelope-from nate@rocky.mt.sri.com) Received: by mt.sri.com (SMI-8.6/SMI-SVR4) id TAA27099; Sun, 12 Apr 1998 19:26:55 -0600 Date: Sun, 12 Apr 1998 19:26:55 -0600 Message-Id: <199804130126.TAA27099@mt.sri.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Poul-Henning Kamp Cc: committers@FreeBSD.ORG Subject: Re: IMPORTANT: PRs in suspended state In-Reply-To: <17211.892403024.1@critter.freebsd.dk> References: <17211.892403024.1@critter.freebsd.dk> X-Mailer: VM 6.29 under 19.15 XEmacs Lucid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Poul-Henning Kamp writes: > In an attempt to get to the 3.0-RELEASE ready frame of mind, I am > doing a end-to-other review of our Gnats database right now. The > PRs which contain substance, but with little or no hope to get done > will be moved to "suspended" state. This seems silly to me, and makes us look even less professional. There is no difference between 'open' and 'suspended' at all. Putting a PR in suspended state is essentially the same as deleting it. Also, a few PR's were closed with "it ain't gonna get fixed", which is just plain stupid. Just because it isn't going to fixed before 3.0 doesn't mean it's isn't going to get fixed ever. The point of having a PR database is to have a record of those outstanding bugs that will get fixed. IMHO, going through the PR DB 'just to suspend/close a bunch of PR's makes us look unprofessional. The only thing I can think is that the purpose of changing the state is to make us look more professional, and this does just the opposite (especially to the people who submitted the PRs). Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 18:59:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA06916 for cvs-all-outgoing; Sun, 12 Apr 1998 18:59:48 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA06907; Sun, 12 Apr 1998 18:59:46 -0700 (PDT) (envelope-from hanai@FreeBSD.org) From: Hanai Hiroyuki Received: (from hanai@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA09428; Sun, 12 Apr 1998 18:59:19 -0700 (PDT) Date: Sun, 12 Apr 1998 18:59:19 -0700 (PDT) Message-Id: <199804130159.SAA09428@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/ja/man/man1 cvs.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hanai 1998/04/12 18:59:19 PDT Modified files: ja/man/man1 cvs.1 Log: Japanese manual syncs with 2.2-980411-SNAP by this commit. Reviewed by: The FreeBSD Japanese Manual Project Submitted by: horikawa@jp.freebsd.org Revision Changes Path 1.2 +23 -26 doc/ja/man/man1/cvs.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 19:05:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA07489 for cvs-all-outgoing; Sun, 12 Apr 1998 19:05:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA07483; Sun, 12 Apr 1998 19:05:51 -0700 (PDT) (envelope-from hanai@FreeBSD.org) From: Hanai Hiroyuki Received: (from hanai@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA09476; Sun, 12 Apr 1998 19:05:25 -0700 (PDT) Date: Sun, 12 Apr 1998 19:05:25 -0700 (PDT) Message-Id: <199804130205.TAA09476@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/ja/handbook authors.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hanai 1998/04/12 19:05:24 PDT Modified files: ja/handbook authors.sgml Log: Changes in the English version(1.93 -> 1.95) are merged. Revision Changes Path 1.41 +14 -6 doc/ja/handbook/authors.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 19:11:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA08030 for cvs-all-outgoing; Sun, 12 Apr 1998 19:11:03 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA08025; Sun, 12 Apr 1998 19:11:02 -0700 (PDT) (envelope-from hanai@FreeBSD.org) From: Hanai Hiroyuki Received: (from hanai@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA09518; Sun, 12 Apr 1998 19:10:35 -0700 (PDT) Date: Sun, 12 Apr 1998 19:10:35 -0700 (PDT) Message-Id: <199804130210.TAA09518@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/ja/handbook contrib.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hanai 1998/04/12 19:10:35 PDT Modified files: ja/handbook contrib.sgml Log: Changes in the English version(1.274 -> 1.277) are merged. Revision Changes Path 1.78 +6 -4 doc/ja/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 Sun Apr 12 19:15:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA08556 for cvs-all-outgoing; Sun, 12 Apr 1998 19:15:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA08541; Sun, 12 Apr 1998 19:15:24 -0700 (PDT) (envelope-from hanai@FreeBSD.org) From: Hanai Hiroyuki Received: (from hanai@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA09556; Sun, 12 Apr 1998 19:14:56 -0700 (PDT) Date: Sun, 12 Apr 1998 19:14:56 -0700 (PDT) Message-Id: <199804130214.TAA09556@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/ja/handbook eresources.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hanai 1998/04/12 19:14:56 PDT Modified files: ja/handbook eresources.sgml Log: Changes in the English version(1.39->1.41) are merged. Revision Changes Path 1.11 +4 -2 doc/ja/handbook/eresources.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 19:19:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA09528 for cvs-all-outgoing; Sun, 12 Apr 1998 19:19:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA09519; Sun, 12 Apr 1998 19:19:13 -0700 (PDT) (envelope-from hanai@FreeBSD.org) From: Hanai Hiroyuki Received: (from hanai@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA09599; Sun, 12 Apr 1998 19:18:46 -0700 (PDT) Date: Sun, 12 Apr 1998 19:18:46 -0700 (PDT) Message-Id: <199804130218.TAA09599@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/ja/handbook firewalls.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hanai 1998/04/12 19:18:46 PDT Modified files: ja/handbook firewalls.sgml Log: Changes in the English version(1.19->1.20) are merged. Revision Changes Path 1.9 +6 -6 doc/ja/handbook/firewalls.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 19:23:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA10322 for cvs-all-outgoing; Sun, 12 Apr 1998 19:23:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA10317; Sun, 12 Apr 1998 19:23:54 -0700 (PDT) (envelope-from hanai@FreeBSD.org) From: Hanai Hiroyuki Received: (from hanai@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA09640; Sun, 12 Apr 1998 19:23:27 -0700 (PDT) Date: Sun, 12 Apr 1998 19:23:27 -0700 (PDT) Message-Id: <199804130223.TAA09640@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/ja/handbook mirrors.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hanai 1998/04/12 19:23:27 PDT Modified files: ja/handbook mirrors.sgml Log: Changes in the English version(1.79->1.81) are merged. Revision Changes Path 1.26 +23 -2 doc/ja/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 Sun Apr 12 19:34:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA13610 for cvs-all-outgoing; Sun, 12 Apr 1998 19:34:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA13602; Sun, 12 Apr 1998 19:34:24 -0700 (PDT) (envelope-from hanai@FreeBSD.org) From: Hanai Hiroyuki Received: (from hanai@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA09695; Sun, 12 Apr 1998 19:33:57 -0700 (PDT) Date: Sun, 12 Apr 1998 19:33:57 -0700 (PDT) Message-Id: <199804130233.TAA09695@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/ja/handbook submitters.sgml userppp.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hanai 1998/04/12 19:33:57 PDT Modified files: ja/handbook submitters.sgml userppp.sgml Log: Changes in the English version(1.28->1.29) are merged. # Actually, nothing is changed because hacker was translated # to the word that means `cracker'. ;-) Revision Changes Path 1.60 +12 -8 doc/ja/handbook/submitters.sgml 1.14 +2 -2 doc/ja/handbook/userppp.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 20:29:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA22746 for cvs-all-outgoing; Sun, 12 Apr 1998 20:29:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from picnic.mat.net (picnic.mat.net [206.246.122.117]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA22736; Sun, 12 Apr 1998 20:29:04 -0700 (PDT) (envelope-from chuckr@glue.umd.edu) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.8.8/8.8.5) with SMTP id VAA12970; Sun, 12 Apr 1998 21:51:42 -0400 (EDT) Date: Sun, 12 Apr 1998 21:51:41 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@localhost To: Nate Williams cc: Poul-Henning Kamp , committers@FreeBSD.ORG Subject: Re: IMPORTANT: PRs in suspended state In-Reply-To: <199804130126.TAA27099@mt.sri.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, 12 Apr 1998, Nate Williams wrote: > Poul-Henning Kamp writes: > > In an attempt to get to the 3.0-RELEASE ready frame of mind, I am > > doing a end-to-other review of our Gnats database right now. The > > PRs which contain substance, but with little or no hope to get done > > will be moved to "suspended" state. > > This seems silly to me, and makes us look even less professional. There > is no difference between 'open' and 'suspended' at all. Putting a PR in > suspended state is essentially the same as deleting it. > > Also, a few PR's were closed with "it ain't gonna get fixed", which is > just plain stupid. Just because it isn't going to fixed before 3.0 > doesn't mean it's isn't going to get fixed ever. The point of having a > PR database is to have a record of those outstanding bugs that will get > fixed. Do you have a suggestionj as to what to do with PRs that haven't anything to do with software that is part of the FreeBSD tree? I'm specifically referring to the PRs on ports stuff, where the complaint isn't about the port per se, but about the operation of the software that the port correctly installs. Such things are, IMO, even more unprofessional, because they *can't* be fixed ... no method of closing such PRs. It seemed to me that putting things in the suspend state was a nice compromise. ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@glue.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run Journey2 and picnic, both FreeBSD (301) 220-2114 | version 3.0 current -- and great FUN! ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 20:38:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA23746 for cvs-all-outgoing; Sun, 12 Apr 1998 20:38:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from hwcn.org (ac199@james.hwcn.org [199.212.94.66]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA23617; Sun, 12 Apr 1998 20:36:12 -0700 (PDT) (envelope-from hoek@hwcn.org) Received: from localhost (ac199@localhost) by hwcn.org (8.8.8/8.8.8) with SMTP id XAA06285; Sun, 12 Apr 1998 23:31:50 -0400 (EDT) Date: Sun, 12 Apr 1998 23:31:50 -0400 (EDT) From: Tim Vanderhoek Reply-To: Tim Vanderhoek To: Nate Williams cc: Poul-Henning Kamp , committers@FreeBSD.ORG Subject: Re: IMPORTANT: PRs in suspended state In-Reply-To: <199804130126.TAA27099@mt.sri.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, 12 Apr 1998, Nate Williams wrote: > This seems silly to me, and makes us look even less professional. There > is no difference between 'open' and 'suspended' at all. Putting a PR in > suspended state is essentially the same as deleting it. I disagree. Let's see what happens, if anyone picks these up. There are always people asking "what can I do?"; now we have something easy to point them to (simply pointing at the bugslist as a whole is not easy). > IMHO, going through the PR DB 'just to suspend/close a bunch of PR's > makes us look unprofessional. The only thing I can think is that the > purpose of changing the state is to make us look more professional, and > this does just the opposite (especially to the people who submitted the > PRs). I disagree strongly. Have you (Nate) ever read through anything even approaching a signficant portion of the PRs within the last year or two? The current PR database, if anything, makes us look unprofessional. Look... I checked into a couple (somewhat more than a couple, actually :) of the PRs phk closed to see if I had any qualms with any of the closures. Of those, the only one he didn't do 100% correctly (IMHO :) was misc/6276 "Can't connect to www.FreeBSD.ORG", but even that one fortune smiled on him and 1) other reasons to close it were mentioned, 2) submitter didn't complain (that-I-know-of/yet). Even still, one out of many-many-many is a pretty damn good record. I have read too old PRs which made me stare at the screen and ask "What the heck are we supposed to do with that?". It takes a strong respected man with a solid head and broad knowledge base (I can justify each of those requirements on request) to finally deal with some of these PRs. Unless you have another solution (and if you don't believe their is a problem you aren't using the PR system (most likely because of the PR system's very problems)), I suggest simply responding to individual PRs that are closed/dealt-with inappropriately, instead of the quoted style of general complaints. In summary, I support phk 100%. Go Poul! Go! On a related non-sequitor, it was decided on the -docs list that -doc related PRs (excluding those to manpages, of course) should be assigned to the freebsd-docs list, similar to the assignments done to the freebsd-ports list. 1) Any comments? 2) Steve (if I have been firy and concise enough that my audience is still reading :), does this require any special set-up with gnats, or can the Responsible just be changed to "freebsd-docs"? Finally, one last piece of advice to anyone (phk included) handling PRs... Search the freebsd-bugs list for every PR you deal with. It's only necessary to search on the PR number. Sometimes important information not originally emailed to bug-followup@FreeBSD.ORG will show-up, instructing you to either close or leave-open the PR. -- Outnumbered? Maybe. Outspoken? Never! tIM...HOEk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 21:13:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA26894 for cvs-all-outgoing; Sun, 12 Apr 1998 21:13:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from thelab.hub.org (tc-60.acadiau.ca [131.162.2.160]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA26884; Sun, 12 Apr 1998 21:13:26 -0700 (PDT) (envelope-from scrappy@hub.org) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.8.8/8.8.2) with SMTP id BAA01144; Mon, 13 Apr 1998 01:13:03 -0300 (ADT) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Mon, 13 Apr 1998 01:13:02 -0300 (ADT) From: The Hermit Hacker To: Chuck Robey cc: Nate Williams , Poul-Henning Kamp , committers@FreeBSD.ORG Subject: Re: IMPORTANT: PRs in suspended state 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 Sun, 12 Apr 1998, Chuck Robey wrote: > On Sun, 12 Apr 1998, Nate Williams wrote: > > > Poul-Henning Kamp writes: > > > In an attempt to get to the 3.0-RELEASE ready frame of mind, I am > > > doing a end-to-other review of our Gnats database right now. The > > > PRs which contain substance, but with little or no hope to get done > > > will be moved to "suspended" state. > > > > This seems silly to me, and makes us look even less professional. There > > is no difference between 'open' and 'suspended' at all. Putting a PR in > > suspended state is essentially the same as deleting it. > > > > Also, a few PR's were closed with "it ain't gonna get fixed", which is > > just plain stupid. Just because it isn't going to fixed before 3.0 > > doesn't mean it's isn't going to get fixed ever. The point of having a > > PR database is to have a record of those outstanding bugs that will get > > fixed. > > Do you have a suggestionj as to what to do with PRs that haven't > anything to do with software that is part of the FreeBSD tree? I'm > specifically referring to the PRs on ports stuff, where the complaint > isn't about the port per se, but about the operation of the software > that the port correctly installs. Such things are, IMO, even more > unprofessional, because they *can't* be fixed ... no method of closing > such PRs. It seemed to me that putting things in the suspend state was > a nice compromise. I have to disagree here...there comes a point when a PR is out-dated and irrelevant. Hell, just scanning through a few randomly shows up: From: Heikki Suonsivu To: freebsd-gnats-submit@freebsd.org Cc: hsu@clinet.fi Subject: kern/1098 File system corruption (2 cases) Date: Sat, 28 Mar 1998 04:33:44 +0200 (EET) fsck has been patched since this, so I am not quite sure if this any more exists. I haven't seen it for long time, so I think this can be closed. The person that submitted the problem report acknowledges that it can be closed, and its still open...and that was from a 2.2-CURRENT machine as of March/96 ... how relevant can that be now, even if the crashes continued? There has been *alot* of change over the past year...the old PR should be closed, and a newer, more relevant one, opened...IMHO... IMHO, -CURRENT related PRs should die relatively quickly (6mos?), -STABLE related slower (12mos?) and port-related *at least* when the port gets upgraded... Marc G. Fournier Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 21:50:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA03718 for cvs-all-outgoing; Sun, 12 Apr 1998 21:50:48 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA03712; Sun, 12 Apr 1998 21:50:41 -0700 (PDT) (envelope-from jmg@FreeBSD.org) From: John-Mark Gurney Received: (from jmg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA09892; Sun, 12 Apr 1998 21:50:11 -0700 (PDT) Date: Sun, 12 Apr 1998 21:50:11 -0700 (PDT) Message-Id: <199804130450.VAA09892@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jmg 1998/04/12 21:50:11 PDT Modified files: . modules Log: TenDRA -> ports/lang/TenDRA Revision Changes Path 1.1910 +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 Apr 12 22:44:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA09663 for cvs-all-outgoing; Sun, 12 Apr 1998 22:44:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA09653; Sun, 12 Apr 1998 22:44:14 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA10012; Sun, 12 Apr 1998 22:43:46 -0700 (PDT) Date: Sun, 12 Apr 1998 22:43:46 -0700 (PDT) Message-Id: <199804130543.WAA10012@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/stdlib atof.3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/04/12 22:43:45 PDT Modified files: (Branch: RELENG_2_2) lib/libc/stdlib atof.3 Log: remove bogus bugs section. Submitted by: Niall Smart Revision Changes Path 1.1.1.1.8.1 +0 -8 src/lib/libc/stdlib/atof.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 22:50:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA10918 for cvs-all-outgoing; Sun, 12 Apr 1998 22:50:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA10893; Sun, 12 Apr 1998 22:50:36 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id WAA05672; Sun, 12 Apr 1998 22:50:42 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Nate Williams cc: Poul-Henning Kamp , committers@FreeBSD.ORG Subject: Re: IMPORTANT: PRs in suspended state In-reply-to: Your message of "Sun, 12 Apr 1998 19:26:55 MDT." <199804130126.TAA27099@mt.sri.com> Date: Sun, 12 Apr 1998 22:50:42 -0700 Message-ID: <5668.892446642@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > This seems silly to me, and makes us look even less professional. There > is no difference between 'open' and 'suspended' at all. Putting a PR in > suspended state is essentially the same as deleting it. I have to actually concur with this. There is *nobody* who's going to find the time or inclination to go back and look at a "suspended" PR, myself first and foremost, and these PRs should either be closed when it's clear they're dead or left open and a query sent to the original submitter. That's basically the approach taken by our PR meister. Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 12 22:54:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA11705 for cvs-all-outgoing; Sun, 12 Apr 1998 22:54:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA11699; Sun, 12 Apr 1998 22:54:33 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id WAA05714; Sun, 12 Apr 1998 22:54:37 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Chuck Robey cc: Nate Williams , Poul-Henning Kamp , committers@FreeBSD.ORG Subject: Re: IMPORTANT: PRs in suspended state In-reply-to: Your message of "Sun, 12 Apr 1998 21:51:41 EDT." Date: Sun, 12 Apr 1998 22:54:37 -0700 Message-ID: <5711.892446877@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Do you have a suggestionj as to what to do with PRs that haven't > anything to do with software that is part of the FreeBSD tree? I'm > specifically referring to the PRs on ports stuff, where the complaint > isn't about the port per se, but about the operation of the software > that the port correctly installs. Such things are, IMO, even more > unprofessional, because they *can't* be fixed ... no method of closing > such PRs. It seemed to me that putting things in the suspend state was > a nice compromise. Such PRs should be closed with a note that it's not a FreeBSD specific problem and that the original author or maintainer (who's contact details should be attached if they're readily available) should be contacted instead. I think it's the only reasonably effective compromise. Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 00:56:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA28380 for cvs-all-outgoing; Mon, 13 Apr 1998 00:56:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA28375 for ; Mon, 13 Apr 1998 00:56:52 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id JAA18981; Mon, 13 Apr 1998 09:54:37 +0200 (CEST) To: Chuck Robey cc: Nate Williams , committers@FreeBSD.ORG Subject: Re: IMPORTANT: PRs in suspended state In-reply-to: Your message of "Sun, 12 Apr 1998 21:51:41 EDT." Date: Mon, 13 Apr 1998 09:54:37 +0200 Message-ID: <18979.892454077@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In message , Chuck Robey writ es: >Do you have a suggestionj as to what to do with PRs that haven't >anything to do with software that is part of the FreeBSD tree? I'm >specifically referring to the PRs on ports stuff, where the complaint >isn't about the port per se, but about the operation of the software >that the port correctly installs. I am not even looking a 'ports' PRs, amongst other things because I don't know the answer to your question. -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "Drink MONO-tonic, it goes down but it will NEVER come back up!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 01:36:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA05011 for cvs-all-outgoing; Mon, 13 Apr 1998 01:36:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA04996; Mon, 13 Apr 1998 01:36:08 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA10652; Mon, 13 Apr 1998 01:35:39 -0700 (PDT) Date: Mon, 13 Apr 1998 01:35:39 -0700 (PDT) Message-Id: <199804130835.BAA10652@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 wd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/04/13 01:35:39 PDT Modified files: sys/pc98/pc98 wd.c Log: Sync with sys/i386/isa/wd.c revision 1.156. Revision Changes Path 1.47 +2 -2 src/sys/pc98/pc98/wd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 02:15:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA11054 for cvs-all-outgoing; Mon, 13 Apr 1998 02:15:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from csvax.cs.caltech.edu (csvax.cs.caltech.edu [131.215.131.131]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id CAA11049 for ; Mon, 13 Apr 1998 02:15:57 -0700 (PDT) (envelope-from mika@stun4p.cs.caltech.edu) Received: from stun4p.cs.caltech.edu by csvax.cs.caltech.edu (4.1/1.34.1) id AA25216; Mon, 13 Apr 98 02:15:55 PDT Received: from localhost.cs.caltech.edu (localhost.cs.caltech.edu [127.0.0.1]) by stun4p.cs.caltech.edu (8.7.4/8.7.3) with SMTP id CAA07614 for ; Mon, 13 Apr 1998 02:15:56 -0700 (PDT) Message-Id: <199804130915.CAA07614@stun4p.cs.caltech.edu> X-Authentication-Warning: stun4p.cs.caltech.edu: Host localhost.cs.caltech.edu [127.0.0.1] didn't use HELO protocol To: committers@FreeBSD.ORG Subject: bin/6231 and bin/4678 Date: Mon, 13 Apr 1998 02:15:55 -0700 From: Mika Nystrom Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Hi Committers, We've now been using the patches in bin/6231 and bin/4678 for two weeks and about six months, respectively, on production systems. Both patches fix (in our application) critical problems in amd. bin/6231 is almost certainly the right solution to its problem (and could be committed w/o further ado), but bin/4678 is a bit of a kludge, and might need some more analysis (I don't know for sure what your standards are :)) Mika Nystrom Dept. of Computer Science California Institute of Technology To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 04:00:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA25813 for cvs-all-outgoing; Mon, 13 Apr 1998 04:00:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA25788; Mon, 13 Apr 1998 11:00:07 GMT (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA12906; Mon, 13 Apr 1998 03:59:37 -0700 (PDT) Date: Mon, 13 Apr 1998 03:59:37 -0700 (PDT) Message-Id: <199804131059.DAA12906@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/mozilla Makefile ports/www/mozilla/files netscape.sh ports/www/mozilla/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/04/13 03:59:36 PDT Modified files: www/mozilla Makefile www/mozilla/files netscape.sh www/mozilla/pkg PLIST Log: Use shared libaries instead of having a 60+MB binary. Revision Changes Path 1.20 +3 -3 ports/www/mozilla/Makefile 1.8 +2 -2 ports/www/mozilla/files/netscape.sh 1.16 +45 -1 ports/www/mozilla/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 Apr 13 04:09:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA28465 for cvs-all-outgoing; Mon, 13 Apr 1998 04:09:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA28460; Mon, 13 Apr 1998 11:09:55 GMT (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA12952; Mon, 13 Apr 1998 04:09:25 -0700 (PDT) Date: Mon, 13 Apr 1998 04:09:25 -0700 (PDT) Message-Id: <199804131109.EAA12952@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data/commercial software.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/04/13 04:09:25 PDT Modified files: data/commercial software.sgml Log: Update cheapbytes entry. Revision Changes Path 1.36 +4 -5 www/data/commercial/software.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 05:11:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA09250 for cvs-all-outgoing; Mon, 13 Apr 1998 05:11:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA09245; Mon, 13 Apr 1998 12:11:55 GMT (envelope-from dfr@FreeBSD.org) From: Doug Rabson Received: (from dfr@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA13253; Mon, 13 Apr 1998 05:11:25 -0700 (PDT) Date: Mon, 13 Apr 1998 05:11:25 -0700 (PDT) Message-Id: <199804131211.FAA13253@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/amd/amd amd.c nfs_ops.c srvr_nfs.c wire.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dfr 1998/04/13 05:11:25 PDT Modified files: usr.sbin/amd/amd amd.c nfs_ops.c srvr_nfs.c wire.c Log: Fixes for using amd with non-NFSv3 servers and for choosing the right address for a multihomed server. PR: bin/6231, bin/4678 Submitted by: Mika Nystrom Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA09558 for cvs-all-outgoing; Mon, 13 Apr 1998 05:13:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA09553; Mon, 13 Apr 1998 12:13:49 GMT (envelope-from dfr@FreeBSD.org) From: Doug Rabson Received: (from dfr@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA13306; Mon, 13 Apr 1998 05:13:19 -0700 (PDT) Date: Mon, 13 Apr 1998 05:13:19 -0700 (PDT) Message-Id: <199804131213.FAA13306@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/amd/amd amd.c nfs_ops.c srvr_nfs.c wire.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dfr 1998/04/13 05:13:18 PDT Modified files: (Branch: RELENG_2_2) usr.sbin/amd/amd amd.c nfs_ops.c srvr_nfs.c wire.c Log: MFC: Fixes for using amd with non-NFSv3 servers and for choosing the right address for a multihomed server. PR: bin/6231, bin/4678 Revision Changes Path 1.3.2.2 +5 -2 src/usr.sbin/amd/amd/amd.c 1.4.2.3 +10 -1 src/usr.sbin/amd/amd/nfs_ops.c 1.2.6.1 +34 -3 src/usr.sbin/amd/amd/srvr_nfs.c 1.2.6.1 +9 -2 src/usr.sbin/amd/amd/wire.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 07:13:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA29431 for cvs-all-outgoing; Mon, 13 Apr 1998 07:13:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA29426; Mon, 13 Apr 1998 14:13:05 GMT (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA07678; Mon, 13 Apr 1998 07:12:34 -0700 (PDT) Date: Mon, 13 Apr 1998 07:12:34 -0700 (PDT) Message-Id: <199804131412.HAA07678@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-contrib@FreeBSD.ORG Subject: cvs commit: src/contrib/gcc/config/i386 freebsd.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/04/13 07:12:34 PDT Modified files: contrib/gcc/config/i386 freebsd.h Log: -pg was causing a link with -lc_r... :-] Submitted by: Dmitry Khrustalev PR: 6287 Revision Changes Path 1.18 +1 -1 src/contrib/gcc/config/i386/freebsd.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 07:13:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA29466 for cvs-all-outgoing; Mon, 13 Apr 1998 07:13:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA29452; Mon, 13 Apr 1998 14:13:08 GMT (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA07715; Mon, 13 Apr 1998 07:12:37 -0700 (PDT) Date: Mon, 13 Apr 1998 07:12:37 -0700 (PDT) Message-Id: <199804131412.HAA07715@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/doc/smm/07.lpd Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/04/13 07:12:37 PDT Added files: (Branch: RELENG_2_2) share/doc/smm/07.lpd Makefile Log: Backed out previous commit again. 07.lpd should be in 2.2, at least until someone merges lpr/SMM.doc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 07:16:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA00586 for cvs-all-outgoing; Mon, 13 Apr 1998 07:16:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA00578; Mon, 13 Apr 1998 14:16:12 GMT (envelope-from semenu@FreeBSD.org) From: Ustimenko Semen Received: (from semenu@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA07794; Mon, 13 Apr 1998 07:15:41 -0700 (PDT) Date: Mon, 13 Apr 1998 07:15:41 -0700 (PDT) Message-Id: <199804131415.HAA07794@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pci if_tx.c smc83c170.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk semenu 1998/04/13 07:15:41 PDT Modified files: sys/pci if_tx.c smc83c170.h Log: Fixed autonegotiation. Card registers are now accessed via memory not i/o space. Revision Changes Path 1.9 +218 -143 src/sys/pci/if_tx.c 1.6 +44 -29 src/sys/pci/smc83c170.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 07:29:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA02866 for cvs-all-outgoing; Mon, 13 Apr 1998 07:29:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA02859; Mon, 13 Apr 1998 14:29:29 GMT (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA07888; Mon, 13 Apr 1998 07:28:58 -0700 (PDT) Date: Mon, 13 Apr 1998 07:28:58 -0700 (PDT) Message-Id: <199804131428.HAA07888@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/XFree86/files kerberos4.diffs Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/04/13 07:28:58 PDT Modified files: x11/XFree86/files kerberos4.diffs Log: If we are using SUN-DES-1 (SecureRPC), then we must link against librpcsvc. Revision Changes Path 1.3 +20 -6 ports/x11/XFree86/files/kerberos4.diffs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 07:32:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA03625 for cvs-all-outgoing; Mon, 13 Apr 1998 07:32:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA03617; Mon, 13 Apr 1998 14:32:44 GMT (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA07939; Mon, 13 Apr 1998 07:32:13 -0700 (PDT) Date: Mon, 13 Apr 1998 07:32:13 -0700 (PDT) Message-Id: <199804131432.HAA07939@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/XFree86-contrib Makefile ports/x11/XFree86-contrib/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/04/13 07:32:13 PDT Modified files: x11/XFree86-contrib Makefile x11/XFree86-contrib/pkg PLIST Log: Quieten portlint. Purely cosmetic. Revision Changes Path 1.9 +5 -4 ports/x11/XFree86-contrib/Makefile 1.3 +2 -2 ports/x11/XFree86-contrib/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 Apr 13 07:33:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA03787 for cvs-all-outgoing; Mon, 13 Apr 1998 07:33:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA03781; Mon, 13 Apr 1998 14:33:48 GMT (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA07967; Mon, 13 Apr 1998 07:33:18 -0700 (PDT) Date: Mon, 13 Apr 1998 07:33:18 -0700 (PDT) Message-Id: <199804131433.HAA07967@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/XFree86-contrib Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/04/13 07:33:17 PDT Modified files: x11/XFree86-contrib Makefile Log: Dammit. Private kluges should not be included in commits. Revision Changes Path 1.10 +2 -2 ports/x11/XFree86-contrib/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 07:58:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA07821 for cvs-all-outgoing; Mon, 13 Apr 1998 07:58:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA07812; Mon, 13 Apr 1998 14:58:13 GMT (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA08209; Mon, 13 Apr 1998 07:57:42 -0700 (PDT) Date: Mon, 13 Apr 1998 07:57:42 -0700 (PDT) Message-Id: <199804131457.HAA08209@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/doc/smm Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/04/13 07:57:42 PDT Modified files: (Branch: RELENG_2_2) share/doc/smm Makefile Log: Backed out previous commit. 07.lpd should be in 2.2, at least until someone merges lpr/SMM.doc. Revision Changes Path 1.4.2.5 +2 -2 src/share/doc/smm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 08:05:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA09286 for cvs-all-outgoing; Mon, 13 Apr 1998 08:05:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA09279; Mon, 13 Apr 1998 15:05:46 GMT (envelope-from wollman@FreeBSD.org) From: Garrett Wollman Received: (from wollman@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA08366; Mon, 13 Apr 1998 08:05:15 -0700 (PDT) Date: Mon, 13 Apr 1998 08:05:15 -0700 (PDT) Message-Id: <199804131505.IAA08366@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/inetd inetd.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wollman 1998/04/13 08:05:15 PDT Modified files: usr.sbin/inetd inetd.8 Log: Document the requirement for TCPMUX to also be enabled as an internal service if any external TCPMUX servers are desired. PR: 826 Revision Changes Path 1.19 +12 -1 src/usr.sbin/inetd/inetd.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 08:06:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA09441 for cvs-all-outgoing; Mon, 13 Apr 1998 08:06:16 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA09436; Mon, 13 Apr 1998 15:06:15 GMT (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA08421; Mon, 13 Apr 1998 08:05:44 -0700 (PDT) Date: Mon, 13 Apr 1998 08:05:44 -0700 (PDT) Message-Id: <199804131505.IAA08421@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/share/doc/smm Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/04/13 08:05:44 PDT Modified files: share/doc/smm Makefile Log: Finished previous commit. Just revert to rev.1.9. Bruce Revision Changes Path 1.13 +4 -1 src/share/doc/smm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 10:27:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA11308 for cvs-all-outgoing; Mon, 13 Apr 1998 10:27:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA11281; Mon, 13 Apr 1998 17:27:42 GMT (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA09470; Mon, 13 Apr 1998 10:27:10 -0700 (PDT) Date: Mon, 13 Apr 1998 10:27:10 -0700 (PDT) Message-Id: <199804131727.KAA09470@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/netinet ip_input.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/04/13 10:27:09 PDT Modified files: sys/netinet ip_input.c Log: Wrong header length used for certain reassembled IP packets. PR: 6177 Reviewed by: phk, wollman Submitted by: Eric Sprinkle Revision Changes Path 1.82 +3 -1 src/sys/netinet/ip_input.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 10:45:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA14930 for cvs-all-outgoing; Mon, 13 Apr 1998 10:45:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA14924; Mon, 13 Apr 1998 17:45:33 GMT (envelope-from sos@FreeBSD.org) From: Søren Schmidt Received: (from sos@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA09747; Mon, 13 Apr 1998 10:45:01 -0700 (PDT) Date: Mon, 13 Apr 1998 10:45:01 -0700 (PDT) Message-Id: <199804131745.KAA09747@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/sys errno.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sos 1998/04/13 10:45:01 PDT Modified files: sys/sys errno.h Log: Add EIDRM errno (PR 176), ENOMSG errno (myself) for prober sysv_ipc. Revision Changes Path 1.9 +5 -2 src/sys/sys/errno.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 10:46:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA15132 for cvs-all-outgoing; Mon, 13 Apr 1998 10:46:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA15127; Mon, 13 Apr 1998 17:46:29 GMT (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA09774; Mon, 13 Apr 1998 10:45:58 -0700 (PDT) Date: Mon, 13 Apr 1998 10:45:58 -0700 (PDT) Message-Id: <199804131745.KAA09774@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa atapi.c atapi.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/04/13 10:45:57 PDT Modified files: sys/i386/isa atapi.c atapi.h Log: Don't use INTR when only one device supports it. Submitted by: Satoh Junichi Revision Changes Path 1.25 +10 -1 src/sys/i386/isa/atapi.c 1.13 +1 -0 src/sys/i386/isa/atapi.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 10:50:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA15789 for cvs-all-outgoing; Mon, 13 Apr 1998 10:50:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA15768; Mon, 13 Apr 1998 17:50:05 GMT (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA09870; Mon, 13 Apr 1998 10:49:33 -0700 (PDT) Date: Mon, 13 Apr 1998 10:49:33 -0700 (PDT) Message-Id: <199804131749.KAA09870@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa atapi.c atapi.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/04/13 10:49:33 PDT Modified files: (Branch: RELENG_2_2) sys/i386/isa atapi.c atapi.h Log: MFC - don't use INTR mixed with ACCEL. Submitted by: Satoh Junichi Revision Changes Path 1.15.2.5 +10 -1 src/sys/i386/isa/atapi.c 1.8.2.2 +1 -0 src/sys/i386/isa/atapi.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 10:50:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA15927 for cvs-all-outgoing; Mon, 13 Apr 1998 10:50:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA15894; Mon, 13 Apr 1998 17:50:25 GMT (envelope-from sos@FreeBSD.org) From: Søren Schmidt Received: (from sos@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA09898; Mon, 13 Apr 1998 10:49:53 -0700 (PDT) Date: Mon, 13 Apr 1998 10:49:53 -0700 (PDT) Message-Id: <199804131749.KAA09898@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/linux linux_sysvec.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sos 1998/04/13 10:49:52 PDT Modified files: sys/i386/linux linux_sysvec.c Log: Added EIDRM & ENOMSG to errno translation table. Revision Changes Path 1.27 +2 -2 src/sys/i386/linux/linux_sysvec.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 10:53:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA16460 for cvs-all-outgoing; Mon, 13 Apr 1998 10:53:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA16453; Mon, 13 Apr 1998 17:53:14 GMT (envelope-from sos@FreeBSD.org) From: Søren Schmidt Received: (from sos@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA09938; Mon, 13 Apr 1998 10:52:42 -0700 (PDT) Date: Mon, 13 Apr 1998 10:52:42 -0700 (PDT) Message-Id: <199804131752.KAA09938@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/ibcs2 ibcs2_errno.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sos 1998/04/13 10:52:42 PDT Modified files: sys/i386/ibcs2 ibcs2_errno.c Log: Added EIDRM & ENOMSG errno in translation table. Revision Changes Path 1.3 +2 -0 src/sys/i386/ibcs2/ibcs2_errno.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 11:19:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA21220 for cvs-all-outgoing; Mon, 13 Apr 1998 11:19:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA21215; Mon, 13 Apr 1998 18:19:45 GMT (envelope-from jmg@FreeBSD.org) From: John-Mark Gurney Received: (from jmg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA10009; Mon, 13 Apr 1998 11:19:13 -0700 (PDT) Date: Mon, 13 Apr 1998 11:19:13 -0700 (PDT) Message-Id: <199804131819.LAA10009@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/lang/TenDRA/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jmg 1998/04/13 11:19:12 PDT Modified files: lang/TenDRA/pkg PLIST Log: fix the PLIST so that it will work on systems other than 2.2.1-R... this was my fault for importing my test dir instead of importing a clean extracted dir from Robert Nordier... Revision Changes Path 1.2 +142 -142 ports/lang/TenDRA/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 Apr 13 11:47:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA25061 for cvs-all-outgoing; Mon, 13 Apr 1998 11:47:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA25056; Mon, 13 Apr 1998 18:47:43 GMT (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA10114; Mon, 13 Apr 1998 11:47:11 -0700 (PDT) Date: Mon, 13 Apr 1998 11:47:11 -0700 (PDT) Message-Id: <199804131847.LAA10114@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook mirrors.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/13 11:47:11 PDT Modified files: handbook mirrors.sgml Log: Add russian Mozilla CVSup mirror. Revision Changes Path 1.82 +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 Apr 13 11:55:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA26634 for cvs-all-outgoing; Mon, 13 Apr 1998 11:55:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA26613; Mon, 13 Apr 1998 18:55:06 GMT (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA10543; Mon, 13 Apr 1998 11:54:34 -0700 (PDT) Date: Mon, 13 Apr 1998 11:54:34 -0700 (PDT) Message-Id: <199804131854.LAA10543@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data/cgi getmsg.cgi Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/13 11:54:33 PDT Modified files: data/cgi getmsg.cgi Log: Read also the mail archive of the current week. Revision Changes Path 1.15 +8 -5 www/data/cgi/getmsg.cgi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 12:05:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA27990 for cvs-all-outgoing; Mon, 13 Apr 1998 12:05:03 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA27985; Mon, 13 Apr 1998 19:05:01 GMT (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA10606; Mon, 13 Apr 1998 12:04:29 -0700 (PDT) Date: Mon, 13 Apr 1998 12:04:29 -0700 (PDT) Message-Id: <199804131904.MAA10606@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data/cgi mid.cgi Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/13 12:04:28 PDT Modified files: data/cgi mid.cgi Log: /usr/local/bin/perl -> /usr/bin/perl Delete the presentation part. getmsg.cgi will do all the mail presentation. Revision Changes Path 1.3 +59 -39 www/data/cgi/mid.cgi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 14:45:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA25591 for cvs-all-outgoing; Mon, 13 Apr 1998 14:45:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA25584; Mon, 13 Apr 1998 21:45:21 GMT (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA10870; Mon, 13 Apr 1998 14:44:48 -0700 (PDT) Date: Mon, 13 Apr 1998 14:44:48 -0700 (PDT) Message-Id: <199804132144.OAA10870@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc/mtree BSD.usr.dist Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/13 14:44:47 PDT Modified files: etc/mtree BSD.usr.dist Log: Add tutorials directories. Revision Changes Path 1.112 +23 -1 src/etc/mtree/BSD.usr.dist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 15:23:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA05389 for cvs-all-outgoing; Mon, 13 Apr 1998 15:23:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA05326; Mon, 13 Apr 1998 22:23:52 GMT (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA11017; Mon, 13 Apr 1998 15:23:18 -0700 (PDT) Date: Mon, 13 Apr 1998 15:23:18 -0700 (PDT) Message-Id: <199804132223.PAA11017@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT avail Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/04/13 15:23:17 PDT Modified files: . avail Log: Add Robert Nordier to committers - welcome, Robert! Revision Changes Path 1.28 +2 -2 CVSROOT/avail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 16:21:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA21481 for cvs-all-outgoing; Mon, 13 Apr 1998 16:21:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA21473; Mon, 13 Apr 1998 23:21:28 GMT (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA11157; Mon, 13 Apr 1998 16:20:54 -0700 (PDT) Date: Mon, 13 Apr 1998 16:20:54 -0700 (PDT) Message-Id: <199804132320.QAA11157@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/stdio Makefile.inc Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/04/13 16:20:54 PDT Modified files: (Branch: RELENG_2_2) lib/libc/stdio Makefile.inc Log: Add MLINK for mkdtemp.3. PR: 6291 Submitted by: Niall Smart Revision Changes Path 1.6.2.2 +2 -2 src/lib/libc/stdio/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 16:40:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA25039 for cvs-all-outgoing; Mon, 13 Apr 1998 16:40:20 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA25010; Mon, 13 Apr 1998 23:40:12 GMT (envelope-from pb@fasterix.frmug.org) Received: (from uucp@localhost) by frmug.org (8.8.8/frmug-2.2/nospam) with UUCP id BAA09611; Tue, 14 Apr 1998 01:40:04 +0200 (CEST) (envelope-from pb@fasterix.frmug.org) Received: (from pb@localhost) by fasterix.frmug.org (8.8.8/8.8.5/pb-19970302) id BAA12684; Tue, 14 Apr 1998 01:38:25 +0200 (CEST) Message-ID: <19980414013825.TH38245@@> Date: Tue, 14 Apr 1998 01:38:25 +0200 From: pb@fasterix.freenix.org (Pierre Beyssac) To: phk@FreeBSD.ORG (Poul-Henning Kamp) Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern uipc_syscalls.c References: <199804112031.NAA01564@freefall.freebsd.org> X-Mailer: Mutt 0.59.1e Mime-Version: 1.0 In-Reply-To: <199804112031.NAA01564@freefall.freebsd.org>; from Poul-Henning Kamp on Apr 11, 1998 13:31:46 -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Poul-Henning Kamp writes: > setsockopt() transports user option data in an mbuf. if the user > data is greater than MLEN, setsockopt is unable to pass it onto > the protocol handler. Allocate a cluster in such case. Hum, there is a very similar patch in the INRIA IPv6 patches, except it does an additional m_free(m) before returning. Shouldn't the following patch be added to your code to avoid a mbuf leak ? --- uipc_syscalls.c.orig Mon Apr 13 02:01:29 1998 +++ uipc_syscalls.c Tue Apr 14 01:31:09 1998 @@ -992,10 +992,12 @@ if (m == NULL) return (ENOBUFS); if (uap->valsize > MLEN) { MCLGET(m, M_WAIT); - if(!(m->m_flags & M_EXT)) + if(!(m->m_flags & M_EXT)) { + m_free(m); return (ENOBUFS); + } } error = copyin(uap->val, mtod(m, caddr_t), (u_int)uap->valsize); if (error) { (void) m_free(m); -- Pierre Beyssac pb@fasterix.frmug.org pb@fasterix.freenix.org {Free,Net,Open}BSD, Linux : il y a moins bien, mais c'est plus cher Free domains: http://www.eu.org/ or mail dns-manager@EU.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 17:24:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA01567 for cvs-all-outgoing; Mon, 13 Apr 1998 17:24:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA01540; Tue, 14 Apr 1998 00:24:29 GMT (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA11462; Mon, 13 Apr 1998 17:23:55 -0700 (PDT) Date: Mon, 13 Apr 1998 17:23:55 -0700 (PDT) Message-Id: <199804140023.RAA11462@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/leave leave.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/04/13 17:23:55 PDT Modified files: usr.bin/leave leave.c Log: Don't let secs variable wrap if <= 2. PR: 6290 Submitted by: Ruslan Ermilov Revision Changes Path 1.4 +3 -2 src/usr.bin/leave/leave.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 17:26:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA01845 for cvs-all-outgoing; Mon, 13 Apr 1998 17:26:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA01837; Tue, 14 Apr 1998 00:26:08 GMT (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA11517; Mon, 13 Apr 1998 17:25:34 -0700 (PDT) Date: Mon, 13 Apr 1998 17:25:34 -0700 (PDT) Message-Id: <199804140025.RAA11517@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/leave leave.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/04/13 17:25:33 PDT Modified files: (Branch: RELENG_2_2) usr.bin/leave leave.c Log: MFC: don't let secs variable wrap. Revision Changes Path 1.1.1.1.8.3 +3 -2 src/usr.bin/leave/leave.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 18:00:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA08527 for cvs-all-outgoing; Mon, 13 Apr 1998 18:00:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA08521; Tue, 14 Apr 1998 01:00:05 GMT (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA11900; Mon, 13 Apr 1998 17:59:30 -0700 (PDT) Date: Mon, 13 Apr 1998 17:59:30 -0700 (PDT) Message-Id: <199804140059.RAA11900@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/mail mail.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/04/13 17:59:30 PDT Modified files: usr.bin/mail mail.1 Log: Document the use of sendmail options on the commandline. PR: 4778 Submitted by: Ruslan Ermilov Revision Changes Path 1.15 +3 -2 src/usr.bin/mail/mail.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 18:01:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA09033 for cvs-all-outgoing; Mon, 13 Apr 1998 18:01:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA09023; Tue, 14 Apr 1998 01:01:10 GMT (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA11953; Mon, 13 Apr 1998 18:00:36 -0700 (PDT) Date: Mon, 13 Apr 1998 18:00:36 -0700 (PDT) Message-Id: <199804140100.SAA11953@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/mail mail.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/04/13 18:00:36 PDT Modified files: (Branch: RELENG_2_2) usr.bin/mail mail.1 Log: MFC: document use of sendmail options. Revision Changes Path 1.8.2.5 +3 -2 src/usr.bin/mail/mail.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 19:10:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA21042 for cvs-all-outgoing; Mon, 13 Apr 1998 19:10:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA20989; Tue, 14 Apr 1998 02:10:00 GMT (envelope-from jmb@FreeBSD.org) From: "Jonathan M. Bresler" Received: (from jmb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA12457; Mon, 13 Apr 1998 19:09:25 -0700 (PDT) Date: Mon, 13 Apr 1998 19:09:25 -0700 (PDT) Message-Id: <199804140209.TAA12457@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc/mail sendmail.cf.additions Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jmb 1998/04/13 19:09:24 PDT Modified files: etc/mail sendmail.cf.additions Log: use extended error codes as noted in rfc1893. retain additional message in check_relay ruleset, the message is written into the maillog. this is useful to a site's postmaster. Reviewed by: jmb Submitted by: Ruslan Ermilov ru@ucb.crimea.ua Revision Changes Path 1.7 +6 -6 src/etc/mail/sendmail.cf.additions To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 19:10:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA21134 for cvs-all-outgoing; Mon, 13 Apr 1998 19:10:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA21125; Tue, 14 Apr 1998 02:10:40 GMT (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA12493; Mon, 13 Apr 1998 19:10:06 -0700 (PDT) Date: Mon, 13 Apr 1998 19:10:06 -0700 (PDT) Message-Id: <199804140210.TAA12493@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/scotty Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/04/13 19:10:06 PDT Modified files: net/scotty Makefile Log: Unmark this broken, it appears to work for everyone else.... Revision Changes Path 1.27 +1 -3 ports/net/scotty/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 19:11:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA21624 for cvs-all-outgoing; Mon, 13 Apr 1998 19:11:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA21602; Tue, 14 Apr 1998 02:11:49 GMT (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA12534; Mon, 13 Apr 1998 19:11:14 -0700 (PDT) Date: Mon, 13 Apr 1998 19:11:14 -0700 (PDT) Message-Id: <199804140211.TAA12534@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/p5-Storable Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/04/13 19:11:14 PDT Modified files: devel/p5-Storable Makefile Log: Can't fetch. Revision Changes Path 1.4 +3 -1 ports/devel/p5-Storable/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 19:13:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA22061 for cvs-all-outgoing; Mon, 13 Apr 1998 19:13:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA21980; Tue, 14 Apr 1998 02:12:58 GMT (envelope-from jmb@FreeBSD.org) From: "Jonathan M. Bresler" Received: (from jmb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA12574; Mon, 13 Apr 1998 19:12:22 -0700 (PDT) Date: Mon, 13 Apr 1998 19:12:22 -0700 (PDT) Message-Id: <199804140212.TAA12574@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc/mail sendmail.cf.additions Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jmb 1998/04/13 19:12:22 PDT Modified files: (Branch: RELENG_2_2) etc/mail sendmail.cf.additions Log: use extended error codes as noted in rfc1893. retain additional message in check_relay ruleset, the message is written into the maillog. this is useful to a site's postmaster. PR: conf/6226 Reviewed by: jmb Submitted by: Ruslan Ermilov ru@ucb.crimea.ua Revision Changes Path 1.1.2.4 +6 -6 src/etc/mail/sendmail.cf.additions To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 21:21:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA13348 for cvs-all-outgoing; Mon, 13 Apr 1998 21:21:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA13341; Tue, 14 Apr 1998 04:21:15 GMT (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA13048; Mon, 13 Apr 1998 21:20:40 -0700 (PDT) Date: Mon, 13 Apr 1998 21:20:40 -0700 (PDT) Message-Id: <199804140420.VAA13048@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/xbae Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/04/13 21:20:39 PDT Modified files: x11/xbae Makefile Log: Add "math" to list of categories, as this widget set implements spreadsheets. Revision Changes Path 1.3 +2 -2 ports/x11/xbae/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 21:22:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA13742 for cvs-all-outgoing; Mon, 13 Apr 1998 21:22:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA13716; Tue, 14 Apr 1998 04:22:28 GMT (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA13104; Mon, 13 Apr 1998 21:21:52 -0700 (PDT) Date: Mon, 13 Apr 1998 21:21:52 -0700 (PDT) Message-Id: <199804140421.VAA13104@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/libhelp Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/04/13 21:21:52 PDT Modified files: x11/libhelp Makefile Log: Doesn't build.... ARROWPROTO -O2 -DHELP_PATH=\"/usr/X11R6/lib/X11/xmhelp/help:/usr/X11R6/lib/X11/xmhelp/pixmaps\" -DMOTIF -c HTML.c HTML.c:226: `_XmGadgetArm' undeclared here (not in a function) HTML.c:226: initializer element for `actionsList[6].proc' is not constant HTML.c:227: `_XmGadgetActivate' undeclared here (not in a function) HTML.c:227: initializer element for `actionsList[7].proc' is not constant HTML.c:228: `_XmManagerEnter' undeclared here (not in a function) HTML.c:228: initializer element for `actionsList[8].proc' is not constant HTML.c:229: `_XmManagerFocusIn' undeclared here (not in a function) HTML.c:229: initializer element for `actionsList[9].proc' is not constant HTML.c:230: `_XmManagerHelp' undeclared here (not in a function) HTML.c:230: initializer element for `actionsList[10].proc' is not constant HTML.c: In function `Redisplay': HTML.c:2029: warning: passing arg 1 of `XmeRedisplayGadgets' from incompatible pointer type HTML.c:2029: warning: passing arg 2 of `XmeRedisplayGadgets' from incompatible pointer type *** Error code 1 Stop. Revision Changes Path 1.2 +3 -1 ports/x11/libhelp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 23:25:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA04524 for cvs-all-outgoing; Mon, 13 Apr 1998 23:25:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA04517; Tue, 14 Apr 1998 06:25:21 GMT (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA13347; Mon, 13 Apr 1998 23:24:45 -0700 (PDT) Date: Mon, 13 Apr 1998 23:24:45 -0700 (PDT) Message-Id: <199804140624.XAA13347@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern uipc_syscalls.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/04/13 23:24:45 PDT Modified files: sys/kern uipc_syscalls.c Log: Fix a minor mbuf leak created by the previous change. Reviewed by: phk Submitted by: pb@fasterix.freenix.org (Pierre Beyssac) Revision Changes Path 1.39 +4 -2 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 Mon Apr 13 23:27:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA05005 for cvs-all-outgoing; Mon, 13 Apr 1998 23:27:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA04864; Tue, 14 Apr 1998 06:26:52 GMT (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id IAA22151; Tue, 14 Apr 1998 08:24:53 +0200 (CEST) To: pb@fasterix.freenix.org (Pierre Beyssac) cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern uipc_syscalls.c In-reply-to: Your message of "Tue, 14 Apr 1998 01:38:25 +0200." <19980414013825.TH38245@@> Date: Tue, 14 Apr 1998 08:24:53 +0200 Message-ID: <22149.892535093@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Committed, Thanks! Poul-Henning -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "Drink MONO-tonic, it goes down but it will NEVER come back up!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 23:32:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA06166 for cvs-all-outgoing; Mon, 13 Apr 1998 23:32:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA06144; Tue, 14 Apr 1998 06:32:00 GMT (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA13415; Mon, 13 Apr 1998 23:31:24 -0700 (PDT) Date: Mon, 13 Apr 1998 23:31:24 -0700 (PDT) Message-Id: <199804140631.XAA13415@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/what what.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/04/13 23:31:24 PDT Modified files: usr.bin/what what.1 Log: add strings(1) to what(1) "SEE ALSO" PR: 6289 Reviewed by: phk Submitted by: Josh Gilliam Revision Changes Path 1.8 +3 -2 src/usr.bin/what/what.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 13 23:42:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA08524 for cvs-all-outgoing; Mon, 13 Apr 1998 23:42:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA08518; Tue, 14 Apr 1998 06:42:58 GMT (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA13541; Mon, 13 Apr 1998 23:42:22 -0700 (PDT) Date: Mon, 13 Apr 1998 23:42:22 -0700 (PDT) Message-Id: <199804140642.XAA13541@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/who who.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/04/13 23:42:21 PDT Modified files: usr.bin/who who.1 Log: Better SYNOPSIS PR: 6294 Reviewed by: bde, phk Submitted by: Ruslan Ermilov Revision Changes Path 1.6 +3 -2 src/usr.bin/who/who.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 00:15:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA11944 for cvs-all-outgoing; Tue, 14 Apr 1998 00:15:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ghpc8.ihf.rwth-aachen.de (ghpc8.ihf.RWTH-Aachen.DE [134.130.90.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA11926; Tue, 14 Apr 1998 07:15:36 GMT (envelope-from tg@ghpc8.ihf.rwth-aachen.de) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.rwth-aachen.de [134.130.90.6]) by ghpc8.ihf.rwth-aachen.de (8.8.7/8.8.6) with ESMTP id JAA11759; Tue, 14 Apr 1998 09:15:25 +0200 (CEST) Received: (from tg@localhost) by ghpc6.ihf.rwth-aachen.de (8.8.8/8.8.5) id JAA25753; Tue, 14 Apr 1998 09:15:24 +0200 (CEST) To: John Birrell Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-include@FreeBSD.ORG Subject: Re: cvs commit: src/include pthread_np.h References: <199804110251.TAA29194@freefall.freebsd.org> From: Thomas Gellekum Date: 14 Apr 1998 09:15:23 +0200 In-Reply-To: John Birrell's message of "Fri, 10 Apr 1998 19:51:01 -0700 (PDT)" Message-ID: <87vhscan78.fsf@ghpc6.ihf.rwth-aachen.de> Lines: 14 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk John Birrell writes: > jb 1998/04/10 19:51:00 PDT > > Modified files: > include pthread_np.h > Log: > Add a function prototype to set the name of a thread for debugging > purposes. Which reminds me: can your latest changes to libc_r be merged into 2.2.6-STABLE? tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 00:21:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA12990 for cvs-all-outgoing; Tue, 14 Apr 1998 00:21:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from cimlogic.com.au (cimlogic.com.au [203.36.2.25]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA12971; Tue, 14 Apr 1998 07:21:17 GMT (envelope-from jb@cimlogic.com.au) Received: (from jb@localhost) by cimlogic.com.au (8.8.5/8.8.7) id RAA03810; Tue, 14 Apr 1998 17:18:59 +1000 (EST) (envelope-from jb) From: John Birrell Message-Id: <199804140718.RAA03810@cimlogic.com.au> Subject: Re: cvs commit: src/include pthread_np.h In-Reply-To: <87vhscan78.fsf@ghpc6.ihf.rwth-aachen.de> from Thomas Gellekum at "Apr 14, 98 09:15:23 am" To: tg@ihf.rwth-aachen.de (Thomas Gellekum) Date: Tue, 14 Apr 1998 17:18:43 +1000 (EST) Cc: jb@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-include@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Thomas Gellekum wrote: > Which reminds me: can your latest changes to libc_r be merged into > 2.2.6-STABLE? I don't have a 2.2.6-STABLE system to test them on. Apart from that, there's nothing specific to 3.0 that would prevent the code from working on 2.2.x. You might check that the gcc LIB_SPEC has -lc_r in it. -- John Birrell - jb@cimlogic.com.au; jb@freebsd.org http://www.cimlogic.com.au/ CIMlogic Pty Ltd, GPO Box 117A, Melbourne Vic 3001, Australia +61 418 353 137 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 00:25:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA13430 for cvs-all-outgoing; Tue, 14 Apr 1998 00:25:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA13425; Tue, 14 Apr 1998 07:25:44 GMT (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA13705; Tue, 14 Apr 1998 00:25:07 -0700 (PDT) Date: Tue, 14 Apr 1998 00:25:07 -0700 (PDT) Message-Id: <199804140725.AAA13705@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/stdio mktemp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/04/14 00:25:07 PDT Modified files: lib/libc/stdio mktemp.c Log: Fix a nasty flaw as a result of using the arc4random() pre-seeding of leading XXX's. It could wrap an uppercase character through chars like: [ \ ] ^ _ ` in between Z and a. The backslash and back tick might be particularly nasty in a shell script context. Also, since we've been using upper-case generated values for a while now, go with the flow and use them in the pathname search rotation. Revision Changes Path 1.10 +4 -2 src/lib/libc/stdio/mktemp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 00:26:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA13575 for cvs-all-outgoing; Tue, 14 Apr 1998 00:26:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA13570; Tue, 14 Apr 1998 07:26:15 GMT (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA13737; Tue, 14 Apr 1998 00:25:39 -0700 (PDT) Date: Tue, 14 Apr 1998 00:25:39 -0700 (PDT) Message-Id: <199804140725.AAA13737@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp lqr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/04/14 00:25:39 PDT Modified files: (Branch: MP) usr.sbin/ppp lqr.c Log: Use datalink_Down when LQR fails, not bundle_Close(). Revision Changes Path 1.22.2.22 +22 -17 src/usr.sbin/ppp/lqr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 00:40:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA16314 for cvs-all-outgoing; Tue, 14 Apr 1998 00:40:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA16306; Tue, 14 Apr 1998 07:40:36 GMT (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA13811; Tue, 14 Apr 1998 00:39:58 -0700 (PDT) Date: Tue, 14 Apr 1998 00:39:58 -0700 (PDT) Message-Id: <199804140739.AAA13811@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/mktemp Makefile mktemp.1 mktemp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/04/14 00:39:58 PDT Added files: usr.bin/mktemp Makefile mktemp.1 mktemp.c Log: Bring in an old faithful tool I've been using for just over 4 years now (originally on a different OS without mkstemp()), albeit somewhat bashed and hacked into something that doesn't look too much like the original any more. It should be upwardly compatable with OpenBSD's mktemp(1) but does a couple of extra things. I've taken OpenBSD's mktemp.1 man page and adapted it to suit. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 00:41:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA16481 for cvs-all-outgoing; Tue, 14 Apr 1998 00:41:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA16455; Tue, 14 Apr 1998 07:41:25 GMT (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA13845; Tue, 14 Apr 1998 00:40:48 -0700 (PDT) Date: Tue, 14 Apr 1998 00:40:48 -0700 (PDT) Message-Id: <199804140740.AAA13845@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/04/14 00:40:48 PDT Modified files: usr.bin Makefile Log: Add mktemp directory Revision Changes Path 1.98 +2 -2 src/usr.bin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 00:42:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA16773 for cvs-all-outgoing; Tue, 14 Apr 1998 00:42:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA16768; Tue, 14 Apr 1998 07:42:34 GMT (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA13877; Tue, 14 Apr 1998 00:41:57 -0700 (PDT) Date: Tue, 14 Apr 1998 00:41:57 -0700 (PDT) Message-Id: <199804140741.AAA13877@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/04/14 00:41:57 PDT Modified files: . modules Log: mktemp -> src/usr.bin/mktemp Revision Changes Path 1.1911 +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 Apr 14 00:59:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA19298 for cvs-all-outgoing; Tue, 14 Apr 1998 00:59:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA19293; Tue, 14 Apr 1998 07:59:41 GMT (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA14019; Tue, 14 Apr 1998 00:59:05 -0700 (PDT) Date: Tue, 14 Apr 1998 00:59:05 -0700 (PDT) Message-Id: <199804140759.AAA14019@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/workplace Makefile ports/x11/workplace/files md5 ports/x11/workplace/pkg DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/04/14 00:59:05 PDT Modified files: x11/workplace Makefile x11/workplace/files md5 x11/workplace/pkg DESCR PLIST Log: Upgrade to 1.0a3. Should now work with the latest gtk. PR: 6285 Submitted by: Andrey Zakhvatov Revision Changes Path 1.3 +9 -9 ports/x11/workplace/Makefile 1.2 +1 -1 ports/x11/workplace/files/md5 1.2 +2 -1 ports/x11/workplace/pkg/DESCR 1.2 +2 -2 ports/x11/workplace/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 Apr 14 02:17:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA29382 for cvs-all-outgoing; Tue, 14 Apr 1998 02:17:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from rvc1.informatik.ba-stuttgart.de (rvc1.informatik.ba-stuttgart.de [141.31.112.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA29178; Tue, 14 Apr 1998 09:17:25 GMT (envelope-from helbig@Informatik.BA-Stuttgart.DE) Received: (from helbig@localhost) by rvc1.informatik.ba-stuttgart.de (8.8.8/8.8.5) id LAA00792; Tue, 14 Apr 1998 11:16:49 +0200 (MET DST) From: Wolfgang Helbig Message-Id: <199804140916.LAA00792@rvc1.informatik.ba-stuttgart.de> Subject: Re: cvs commit: src/sbin/adjkerntz adjkerntz.8 adjkerntz.c In-Reply-To: <199804112118.OAA02144@freefall.freebsd.org> from "Andrey A. Chernov" at "Apr 11, 98 02:18:57 pm" To: ache@FreeBSD.ORG (Andrey A. Chernov) Date: Tue, 14 Apr 1998 11:16:48 +0200 (MET DST) Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL30 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > ache 1998/04/11 14:18:57 PDT > > Modified files: > sbin/adjkerntz adjkerntz.8 adjkerntz.c > Log: > Implement Helbig idea of offset calculation reducing mktime() calls > Immediately exit if /etc/wall_cmos_clock not present Now, the `-s' option is obsolete, since there is no nonexisting local time during switch two or from daylight saving time. That is, for initial_sec >= 0, after local = localtime(&initial_sec); ... localsec = mktime(&local); you will always end up with localsec == initial_sec So the code of adjkerntz can be decomplexified in this respect. OTOH, you don't handle ambiguous CMOS local time during booting (adjkerntz -i) at all. Wolfgang > > Revision Changes Path > 1.15 +3 -3 src/sbin/adjkerntz/adjkerntz.8 > 1.23 +22 -22 src/sbin/adjkerntz/adjkerntz.c > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 02:18:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA29702 for cvs-all-outgoing; Tue, 14 Apr 1998 02:18:29 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA29641; Tue, 14 Apr 1998 09:18:16 GMT (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-37.ix.netcom.com [207.93.143.165]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id CAA27620; Tue, 14 Apr 1998 02:18:14 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id CAA02305; Tue, 14 Apr 1998 02:18:08 -0700 (PDT) Date: Tue, 14 Apr 1998 02:18:08 -0700 (PDT) Message-Id: <199804140918.CAA02305@silvia.HIP.Berkeley.EDU> To: cvs-committers@FreeBSD.ORG, mozilla@FreeBSD.ORG In-reply-to: <199804131059.DAA12906@freefall.freebsd.org> (jseger@FreeBSD.ORG) Subject: Re: cvs commit: ports/www/mozilla Makefile ports/www/mozilla/files netscape.sh ports/www/mozilla/pkg PLIST From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Use shared libaries instead of having a 60+MB binary. Thanks! I built a package and put it in packages-stable. It looks like: === ## ls -slg /usr/local/lib/mozilla/bin total 63116 2 drwxr-xr-x 2 bin bin 1536 Apr 13 21:25 ./ 1 drwxr-xr-x 3 bin bin 512 Apr 13 21:25 ../ 12 -rwxr-xr-x 1 bin bin 12177 Apr 13 20:45 bsdecho* 200 -rwxr-xr-x 1 bin bin 191742 Apr 13 21:09 libDtWidgets.so.1.0* 4520 -rwxr-xr-x 1 bin bin 4616014 Apr 13 21:10 libXfeWidgets.so.1.0* : 152 -rwxr-xr-x 1 bin bin 146257 Apr 13 20:52 libzlib.so.1.0* 2568 -rwxr-xr-x 1 bin bin 2617344 Apr 13 21:25 moz-export* 33 -rwxr-xr-x 1 bin bin 33290 Apr 13 20:45 nsinstall* 176 -rwxr-xr-x 1 bin bin 164080 Apr 13 21:12 vreg* ## ldd /usr/local/lib/mozilla/bin/moz-export /usr/local/lib/mozilla/bin/moz-export: -lxfe2.1 => not found (0x0) -lXmL.1 => not found (0x0) -lxfeicons.1 => not found (0x0) -lDtWidgets.1 => not found (0x0) -lXfeWidgets.1 => not found (0x0) -lxlate.1 => not found (0x0) -lnet.1 => not found (0x0) -lrdf.1 => not found (0x0) -lxml.1 => not found (0x0) -llay.1 => not found (0x0) -lpng.1 => not found (0x0) -lmariner.1 => not found (0x0) -limg.1 => not found (0x0) -ljpeg.1 => not found (0x0) -lhook.1 => not found (0x0) -lparse.1 => not found (0x0) -lpref.1 => not found (0x0) -li18n.1 => not found (0x0) -lpics.1 => /usr/local/lib/libpics.so.1.0 (0x20279000) -lpwcac.1 => not found (0x0) -lreg.1 => not found (0x0) -lmisc.1 => not found (0x0) -lplug.1 => not found (0x0) -lutil.1 => not found (0x0) -lfont.1 => not found (0x0) -lprgrss.1 => not found (0x0) -llayer.1 => not found (0x0) -lstubsj.1 => not found (0x0) -lstubnj.1 => not found (0x0) -lzlib.1 => not found (0x0) -ljs.1 => not found (0x0) -ljsj.1 => not found (0x0) -lmocha.1 => not found (0x0) -lstyle.1 => not found (0x0) -lhtmldlgs.1 => not found (0x0) -lsecfree.1 => not found (0x0) -lxp.1 => not found (0x0) -ldbm.1 => not found (0x0) -lXpm.4 => /usr/X11R6/lib/libXpm.so.4.10 (0x20293000) -lXt.6 => /usr/X11R6/lib/libXt.so.6.0 (0x202a0000) -lXmu.6 => /usr/X11R6/lib/libXmu.so.6.0 (0x202dc000) -lX11.6 => /usr/X11R6/lib/libX11.so.6.1 (0x202eb000) -lXext.6 => /usr/X11R6/lib/libXext.so.6.3 (0x2037e000) -lSM.6 => /usr/X11R6/lib/libSM.so.6.0 (0x20387000) -lICE.6 => /usr/X11R6/lib/libICE.so.6.3 (0x2038f000) -lc.3 => /usr/lib/libc.so.3.1 (0x203a0000) -lg++.4 => /usr/lib/libg++.so.4.0 (0x2040e000) -lstdc++.2 => /usr/lib/libstdc++.so.2.0 (0x2044a000) -lm.2 => /usr/lib/libm.so.2.0 (0x20480000) ## ls -slg /usr/ports/packages/All/mozilla-1998-04-08.tgz 19624 -rw-r--r-- 1 root wheel 20067869 Apr 13 21:41 /usr/ports/packages/All/mozilla-1998-04-08.tgz ## ls -slg /usr/local/lib/mozilla/bin === I haven't tried to run it, but looking at the /usr/local/bin/mozilla script, it appears to put the libraries in the right place. This wasn't that bad. It's only slightly larger than xemacs20. :> Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 02:28:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA02014 for cvs-all-outgoing; Tue, 14 Apr 1998 02:28:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA01996; Tue, 14 Apr 1998 09:27:59 GMT (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA14419; Tue, 14 Apr 1998 02:27:22 -0700 (PDT) Date: Tue, 14 Apr 1998 02:27:22 -0700 (PDT) Message-Id: <199804140927.CAA14419@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/tkirc Makefile ports/net/tkirc/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/04/14 02:27:22 PDT Modified files: net/tkirc Makefile net/tkirc/files md5 Log: Update to 1.202 Revision Changes Path 1.5 +3 -3 ports/net/tkirc/Makefile 1.2 +1 -1 ports/net/tkirc/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 Apr 14 02:49:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA05233 for cvs-all-outgoing; Tue, 14 Apr 1998 02:49:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from peedub.muc.de (newpc.muc.ditec.de [194.120.126.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA05199; Tue, 14 Apr 1998 09:49:03 GMT (envelope-from garyj@peedub.muc.de) Received: from peedub.muc.de (localhost [127.0.0.1]) by peedub.muc.de (8.8.8/8.6.9) with ESMTP id LAA11292; Tue, 14 Apr 1998 11:49:29 +0200 (CEST) Message-Id: <199804140949.LAA11292@peedub.muc.de> X-Mailer: exmh version 2.0.1 12/23/97 To: cvs-committers@FreeBSD.ORG, mozilla@FreeBSD.ORG Subject: Re: cvs commit: ports/www/mozilla Makefile ports/www/mozilla/files netscape.sh ports/www/mozilla/pkg PLIST Reply-To: Gary Jennejohn In-reply-to: Your message of "Tue, 14 Apr 1998 02:18:08 PDT." <199804140918.CAA02305@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 14 Apr 1998 11:49:28 +0200 From: Gary Jennejohn Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Satoshi Asami writes: > * Use shared libaries instead of having a 60+MB binary. > >Thanks! I built a package and put it in packages-stable. It looks >like: [snip] >## ls -slg /usr/ports/packages/All/mozilla-1998-04-08.tgz >19624 -rw-r--r-- 1 root wheel 20067869 Apr 13 21:41 /usr/ports/packages/All >/mozilla-1998-04-08.tgz >## ls -slg /usr/local/lib/mozilla/bin >=== > >I haven't tried to run it, but looking at the /usr/local/bin/mozilla >script, it appears to put the libraries in the right place. > >This wasn't that bad. It's only slightly larger than xemacs20. :> > not yet committed, but ... -rw-r--r-- 1 root wheel 16804382 Apr 12 19:21 xemacs-20.4.tgz -rw-r--r-- 1 root wheel 21026986 Apr 12 14:42 xemacs-mule-20.4.tgz it's gotten smaller :-) --- Gary Jennejohn Home - garyj@muc.de Work - garyj@fkr.dec.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 02:53:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA06290 for cvs-all-outgoing; Tue, 14 Apr 1998 02:53:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA06247; Tue, 14 Apr 1998 09:53:34 GMT (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA14510; Tue, 14 Apr 1998 02:52:57 -0700 (PDT) Date: Tue, 14 Apr 1998 02:52:57 -0700 (PDT) Message-Id: <199804140952.CAA14510@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/libhelp Makefile ports/x11/libhelp/patches patch-aj Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/04/14 02:52:57 PDT Modified files: x11/libhelp Makefile x11/libhelp/patches patch-aj Log: Un-break. Revision Changes Path 1.3 +1 -3 ports/x11/libhelp/Makefile 1.2 +18 -19 ports/x11/libhelp/patches/patch-aj To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 02:56:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA06793 for cvs-all-outgoing; Tue, 14 Apr 1998 02:56:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA06787; Tue, 14 Apr 1998 09:56:08 GMT (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA14621; Tue, 14 Apr 1998 02:55:31 -0700 (PDT) Date: Tue, 14 Apr 1998 02:55:31 -0700 (PDT) Message-Id: <199804140955.CAA14621@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/FAQ FAQ.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/14 02:55:31 PDT Modified files: FAQ FAQ.sgml Log: Add link to text and html version. Add link to the FreeBSD Web Server and the mailing lists freebsd-doc. Revision Changes Path 1.95 +14 -3 doc/FAQ/FAQ.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 03:02:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA07811 for cvs-all-outgoing; Tue, 14 Apr 1998 03:02:16 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA07803; Tue, 14 Apr 1998 10:02:14 GMT (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA14814; Tue, 14 Apr 1998 03:01:37 -0700 (PDT) Date: Tue, 14 Apr 1998 03:01:37 -0700 (PDT) Message-Id: <199804141001.DAA14814@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/FAQ preface.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/14 03:01:37 PDT Modified files: FAQ preface.sgml Log: Add links to the FreeBSD DEC Alpha and UltraSPARC ports. Revision Changes Path 1.7 +5 -2 doc/FAQ/preface.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 03:18:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA10120 for cvs-all-outgoing; Tue, 14 Apr 1998 03:18:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA10087; Tue, 14 Apr 1998 10:18:10 GMT (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 DAA15040; Tue, 14 Apr 1998 03:17:33 -0700 (PDT) Date: Tue, 14 Apr 1998 03:17:33 -0700 (PDT) Message-Id: <199804141017.DAA15040@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/lang/egcs Makefile ports/lang/egcs/files md5 ports/lang/egcs/patches patch-ad patch-af ports/lang/egcs/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/04/14 03:17:33 PDT Modified files: lang/egcs Makefile lang/egcs/files md5 lang/egcs/pkg PLIST Removed files: lang/egcs/patches patch-ad patch-af Log: Upgrade to 980406 snapshot Reviewed by: my PITA ecs240 project Revision Changes Path 1.16 +13 -13 ports/lang/egcs/Makefile 1.6 +1 -1 ports/lang/egcs/files/md5 1.8 +53 -29 ports/lang/egcs/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 03:46:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA13914 for cvs-all-outgoing; Tue, 14 Apr 1998 03:46:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ghpc8.ihf.rwth-aachen.de (ghpc8.ihf.RWTH-Aachen.DE [134.130.90.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA13866; Tue, 14 Apr 1998 10:46:37 GMT (envelope-from tg@ghpc8.ihf.rwth-aachen.de) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.rwth-aachen.de [134.130.90.6]) by ghpc8.ihf.rwth-aachen.de (8.8.7/8.8.6) with ESMTP id MAA12138; Tue, 14 Apr 1998 12:46:12 +0200 (CEST) Received: (from tg@localhost) by ghpc6.ihf.rwth-aachen.de (8.8.8/8.8.5) id MAA29417; Tue, 14 Apr 1998 12:46:11 +0200 (CEST) To: Gary Jennejohn Cc: cvs-committers@FreeBSD.ORG, mozilla@FreeBSD.ORG Subject: Re: cvs commit: ports/www/mozilla Makefile ports/www/mozilla/files netscape.sh ports/www/mozilla/pkg PLIST References: <199804140949.LAA11292@peedub.muc.de> From: Thomas Gellekum Date: 14 Apr 1998 12:46:11 +0200 In-Reply-To: Gary Jennejohn's message of "Tue, 14 Apr 1998 11:49:28 +0200" Message-ID: <87lnt8adfw.fsf@ghpc6.ihf.rwth-aachen.de> Lines: 15 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Gary Jennejohn writes: > >This wasn't that bad. It's only slightly larger than xemacs20. :> > > > > not yet committed, but ... > > -rw-r--r-- 1 root wheel 16804382 Apr 12 19:21 xemacs-20.4.tgz > -rw-r--r-- 1 root wheel 21026986 Apr 12 14:42 xemacs-mule-20.4.tgz > > it's gotten smaller :-) teTeX-0.9 will make up for that when it's out. tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 04:34:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA24472 for cvs-all-outgoing; Tue, 14 Apr 1998 04:34:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA24463; Tue, 14 Apr 1998 11:34:44 GMT (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA15370; Tue, 14 Apr 1998 04:34:06 -0700 (PDT) Date: Tue, 14 Apr 1998 04:34:06 -0700 (PDT) Message-Id: <199804141134.EAA15370@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook authors.sgml contrib.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/04/14 04:34:06 PDT Modified files: handbook authors.sgml contrib.sgml Log: Add myself to authors and contrib Revision Changes Path 1.96 +5 -1 doc/handbook/authors.sgml 1.278 +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 Tue Apr 14 04:49:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA26818 for cvs-all-outgoing; Tue, 14 Apr 1998 04:49:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA26812; Tue, 14 Apr 1998 11:49:53 GMT (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA15438; Tue, 14 Apr 1998 04:49:15 -0700 (PDT) Date: Tue, 14 Apr 1998 04:49:15 -0700 (PDT) Message-Id: <199804141149.EAA15438@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/lang/TenDRA Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/04/14 04:49:15 PDT Modified files: lang/TenDRA Makefile Log: Don't modify PLIST: use a copy instead. Revision Changes Path 1.2 +3 -4 ports/lang/TenDRA/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 06:52:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA15940 for cvs-all-outgoing; Tue, 14 Apr 1998 06:52:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA15935; Tue, 14 Apr 1998 13:52:01 GMT (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA09295; Tue, 14 Apr 1998 06:51:22 -0700 (PDT) Date: Tue, 14 Apr 1998 06:51:22 -0700 (PDT) Message-Id: <199804141351.GAA09295@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 if_ed.c if_ed98.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/04/14 06:51:22 PDT Modified files: sys/pc98/pc98 if_ed.c if_ed98.h Log: Fix page fault panic by probing NE200 compatible PCI card. Submitted by: chi@bd.mbn.or.jp (Chiharu Shibata) Revision Changes Path 1.45 +7 -12 src/sys/pc98/pc98/if_ed.c 1.14 +10 -3 src/sys/pc98/pc98/if_ed98.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 06:53:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA16331 for cvs-all-outgoing; Tue, 14 Apr 1998 06:53:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA16323; Tue, 14 Apr 1998 13:53:10 GMT (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA09335; Tue, 14 Apr 1998 06:52:31 -0700 (PDT) Date: Tue, 14 Apr 1998 06:52:31 -0700 (PDT) Message-Id: <199804141352.GAA09335@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 if_ed.c if_ed98.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/04/14 06:52:31 PDT Modified files: (Branch: RELENG_2_2) sys/pc98/pc98 if_ed.c if_ed98.h Log: MFC: Fix panic by probing NE2000 compatible PCI card. Revision Changes Path 1.11.2.13 +7 -12 src/sys/pc98/pc98/if_ed.c 1.6.2.8 +10 -3 src/sys/pc98/pc98/if_ed98.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 09:52:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA15604 for cvs-all-outgoing; Tue, 14 Apr 1998 09:52:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA15599; Tue, 14 Apr 1998 16:52:38 GMT (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA10053; Tue, 14 Apr 1998 09:51:59 -0700 (PDT) Date: Tue, 14 Apr 1998 09:51:59 -0700 (PDT) Message-Id: <199804141651.JAA10053@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data docs.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/14 09:51:59 PDT Modified files: data docs.sgml Log: Add 2.2.6r manual pages. Revision Changes Path 1.38 +3 -2 www/data/docs.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 12:53:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA00304 for cvs-all-outgoing; Tue, 14 Apr 1998 12:53:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA00242 for ; Tue, 14 Apr 1998 19:53:33 GMT (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id VAA00953 for ; Tue, 14 Apr 1998 21:52:32 +0200 (CEST) To: committers@FreeBSD.ORG Subject: Come on guys, close a PR or two, will ya ? From: Poul-Henning Kamp Date: Tue, 14 Apr 1998 21:52:32 +0200 Message-ID: <951.892583552@critter.freebsd.dk> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk I have now spent 8 hours sifting through PRs, and I am more than a little amazed at what we have in there. There are many that includes fixes, patches, test cases and so on. Some of which has been floating around forever... We're down to 1120 PRs now[*], and I would really like to be below 500 or so by the time 3.0 comes out of the door, but there is no way I can do that singlehandedly... We're well over 100 committers now, so if you each took one pr per month se should be in range for the above goal... Could you please go in there, take a random PR or two and look at it ? Poul-Henning PR-exterminator-du-jour [*] non-ports, that is, the ports gang has a couple of hundred of their own to cope with... -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 13:13:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA04121 for cvs-all-outgoing; Tue, 14 Apr 1998 13:13:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA04111; Tue, 14 Apr 1998 20:13:16 GMT (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA13305; Tue, 14 Apr 1998 13:12:35 -0700 (PDT) Date: Tue, 14 Apr 1998 13:12:35 -0700 (PDT) Message-Id: <199804142012.NAA13305@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/mozilla/patches patch-ad Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1998/04/14 13:12:35 PDT Modified files: www/mozilla/patches patch-ad Log: Allow building with dynamic Motiff lib too (use -l instead of full patch to static lib) Revision Changes Path 1.2 +2 -2 ports/www/mozilla/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 Apr 14 14:03:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA13158 for cvs-all-outgoing; Tue, 14 Apr 1998 14:03:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA13056; Tue, 14 Apr 1998 21:02:37 GMT (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA13519; Tue, 14 Apr 1998 14:01:56 -0700 (PDT) Date: Tue, 14 Apr 1998 14:01:56 -0700 (PDT) Message-Id: <199804142101.OAA13519@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/mozilla/patches patch-ag patch-ah Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1998/04/14 14:01:56 PDT Added files: www/mozilla/patches patch-ag patch-ah Log: Add proper locale mapping table To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 14:49:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA23177 for cvs-all-outgoing; Tue, 14 Apr 1998 14:49:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from lsd.relcom.eu.net (lsd.relcom.eu.net [193.125.27.73]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA23162; Tue, 14 Apr 1998 21:49:51 GMT (envelope-from ache@lsd.relcom.eu.net) Received: (from ache@localhost) by lsd.relcom.eu.net (8.8.8/8.8.8) id BAA17994; Wed, 15 Apr 1998 01:49:42 +0400 (MSD) (envelope-from ache) Message-ID: <19980415014941.11797@nagual.pp.ru> Date: Wed, 15 Apr 1998 01:49:41 +0400 From: =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= To: Wolfgang Helbig Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG Subject: Re: cvs commit: src/sbin/adjkerntz adjkerntz.8 adjkerntz.c Mail-Followup-To: Wolfgang Helbig , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG References: <199804112118.OAA02144@freefall.freebsd.org> <199804140916.LAA00792@rvc1.informatik.ba-stuttgart.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <199804140916.LAA00792@rvc1.informatik.ba-stuttgart.de>; from helbig@Informatik.BA-Stuttgart.DE on Tue, Apr 14, 1998 at 11:16:48AM +0200 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Tue, Apr 14, 1998 at 11:16:48AM +0200, Wolfgang Helbig wrote: > > ache 1998/04/11 14:18:57 PDT > > > > Modified files: > > sbin/adjkerntz adjkerntz.8 adjkerntz.c > > Log: > > Implement Helbig idea of offset calculation reducing mktime() calls > > Immediately exit if /etc/wall_cmos_clock not present > > Now, the `-s' option is obsolete, since there is no nonexisting local time > during switch two or from daylight saving time. Nonexisten local time can occurse still between zone switch epecially when booting at that time. > OTOH, you don't handle ambiguous CMOS local time during booting (adjkerntz -i) > at all. What you suggest? -- Andrey A. Chernov http://www.nagual.pp.ru/~ache/ MTH/SH/HE S-- W-- N+ PEC>+ D A a++ C G>+ QH+(++) 666+>++ Y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 14:58:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA26100 for cvs-all-outgoing; Tue, 14 Apr 1998 14:58:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA26079; Tue, 14 Apr 1998 21:58:37 GMT (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA13831; Tue, 14 Apr 1998 14:57:56 -0700 (PDT) Date: Tue, 14 Apr 1998 14:57:56 -0700 (PDT) Message-Id: <199804142157.OAA13831@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/bind8/patches patch-ac Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/04/14 14:57:56 PDT Added files: net/bind8/patches patch-ac Log: Make this build under current again To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 15:09:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA28380 for cvs-all-outgoing; Tue, 14 Apr 1998 15:09:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA28360; Tue, 14 Apr 1998 22:09:30 GMT (envelope-from danny@FreeBSD.org) From: "Daniel O'Callaghan" Received: (from danny@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA13991; Tue, 14 Apr 1998 15:08:48 -0700 (PDT) Date: Tue, 14 Apr 1998 15:08:48 -0700 (PDT) Message-Id: <199804142208.PAA13991@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/basename basename.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk danny 1998/04/14 15:08:48 PDT Modified files: usr.bin/basename basename.1 Log: PR: 4866 Submitted by: fenner Make man page reflect reality. Revision Changes Path 1.5 +9 -11 src/usr.bin/basename/basename.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 15:11:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA28809 for cvs-all-outgoing; Tue, 14 Apr 1998 15:11:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA28796; Tue, 14 Apr 1998 22:11:23 GMT (envelope-from danny@FreeBSD.org) From: "Daniel O'Callaghan" Received: (from danny@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA14052; Tue, 14 Apr 1998 15:10:42 -0700 (PDT) Date: Tue, 14 Apr 1998 15:10:42 -0700 (PDT) Message-Id: <199804142210.PAA14052@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/basename basename.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk danny 1998/04/14 15:10:42 PDT Modified files: (Branch: RELENG_2_2) usr.bin/basename basename.1 Log: PR: 4866 Submitted by: fenner Make manpage reflect reality. Revision Changes Path 1.2.2.1 +9 -11 src/usr.bin/basename/basename.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 15:11:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA28810 for cvs-all-outgoing; Tue, 14 Apr 1998 15:11:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA28799; Tue, 14 Apr 1998 22:11:24 GMT (envelope-from jdp@FreeBSD.org) From: John Polstra Received: (from jdp@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA14064; Tue, 14 Apr 1998 15:10:42 -0700 (PDT) Date: Tue, 14 Apr 1998 15:10:42 -0700 (PDT) Message-Id: <199804142210.PAA14064@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT avail Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jdp 1998/04/14 15:10:42 PDT Modified files: . avail Log: Add Dmitrij Tejblum . Welcome aboard, Dima! Revision Changes Path 1.29 +2 -2 CVSROOT/avail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 15:39:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA05456 for cvs-all-outgoing; Tue, 14 Apr 1998 15:39:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from sasami.jurai.net (winter@sasami.jurai.net [207.153.65.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA05269; Tue, 14 Apr 1998 22:38:43 GMT (envelope-from winter@jurai.net) Received: from localhost (winter@localhost) by sasami.jurai.net (8.8.8/8.8.7) with SMTP id SAA14602; Tue, 14 Apr 1998 18:38:30 -0400 (EDT) Date: Tue, 14 Apr 1998 18:38:29 -0400 (EDT) From: "Matthew N. Dodd" To: Poul-Henning Kamp cc: committers@FreeBSD.ORG, hackers@FreeBSD.ORG Subject: Re: Come on guys, close a PR or two, will ya ? In-Reply-To: <951.892583552@critter.freebsd.dk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Tue, 14 Apr 1998, Poul-Henning Kamp wrote: > [*] non-ports, that is, the ports gang has a couple of hundred of their > own to cope with... Isn't it about time the ports project took on a life of its own? Not that I'm advocating changing the way it interacts with FreeBSD but if steps were made to unify the *BSD-ports/pkgsrc efforts into one project we would stand to gain a number of helpful hands from the OpenBSD and NetBSD groups. /* Matthew N. Dodd | A memory retaining a love you had for life winter@jurai.net | As cruel as it seems nothing ever seems to http://www.jurai.net/~winter | go right - FLA M 3.1:53 */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 16:03:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA11188 for cvs-all-outgoing; Tue, 14 Apr 1998 16:03:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA11176; Tue, 14 Apr 1998 23:03:35 GMT (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA14267; Tue, 14 Apr 1998 16:02:53 -0700 (PDT) Date: Tue, 14 Apr 1998 16:02:53 -0700 (PDT) Message-Id: <199804142302.QAA14267@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/dip/patches patch-c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/04/14 16:02:53 PDT Modified files: net/dip/patches patch-c Log: Make this build under current again. Revision Changes Path 1.4 +14 -6 ports/net/dip/patches/patch-c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 16:06:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA11626 for cvs-all-outgoing; Tue, 14 Apr 1998 16:06:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA11621; Tue, 14 Apr 1998 23:06:09 GMT (envelope-from jmb@FreeBSD.org) From: "Jonathan M. Bresler" Received: (from jmb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA14305; Tue, 14 Apr 1998 16:05:28 -0700 (PDT) Date: Tue, 14 Apr 1998 16:05:28 -0700 (PDT) Message-Id: <199804142305.QAA14305@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc newsyslog.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jmb 1998/04/14 16:05:27 PDT Modified files: etc newsyslog.conf Log: rotate sendmail statistics file weekly. keep the last ten weeks of data. Submitted by: jmb Revision Changes Path 1.15 +2 -1 src/etc/newsyslog.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 16:09:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA12093 for cvs-all-outgoing; Tue, 14 Apr 1998 16:09:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA12088; Tue, 14 Apr 1998 23:09:12 GMT (envelope-from jmb@FreeBSD.org) From: "Jonathan M. Bresler" Received: (from jmb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA14348; Tue, 14 Apr 1998 16:08:31 -0700 (PDT) Date: Tue, 14 Apr 1998 16:08:31 -0700 (PDT) Message-Id: <199804142308.QAA14348@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc newsyslog.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jmb 1998/04/14 16:08:30 PDT Modified files: (Branch: RELENG_2_2) etc newsyslog.conf Log: rotate sendmail statistics file weekly. keep the last ten weeks of data. Submitted by: jmb Revision Changes Path 1.6.2.4 +2 -1 src/etc/newsyslog.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 16:17:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA12835 for cvs-all-outgoing; Tue, 14 Apr 1998 16:17:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA12830; Tue, 14 Apr 1998 23:17:56 GMT (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA14561; Tue, 14 Apr 1998 16:17:15 -0700 (PDT) Date: Tue, 14 Apr 1998 16:17:15 -0700 (PDT) Message-Id: <199804142317.QAA14561@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp alias_cmd.c command.c command.h datalink.c filter.c ipcp.c log.c mp.c prompt.c systems.c vars.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/04/14 16:17:15 PDT Modified files: (Branch: MP) usr.sbin/ppp alias_cmd.c command.c command.h datalink.c filter.c ipcp.c log.c mp.c prompt.c systems.c vars.c Log: Pass all command arguments around with struct cmdargs rather than incrementing argv and decrementing argc. Now individual functions can determine their caller. This also removes the "prefix" hack in FindExec(). Revision Changes Path 1.12.2.7 +9 -8 src/usr.sbin/ppp/alias_cmd.c 1.131.2.60 +145 -116 src/usr.sbin/ppp/command.c 1.12.2.10 +2 -1 src/usr.sbin/ppp/command.h 1.1.2.37 +11 -11 src/usr.sbin/ppp/Attic/datalink.c 1.22.2.15 +14 -13 src/usr.sbin/ppp/filter.c 1.50.2.36 +7 -7 src/usr.sbin/ppp/ipcp.c 1.25.2.8 +3 -3 src/usr.sbin/ppp/log.c 1.1.2.3 +3 -3 src/usr.sbin/ppp/Attic/mp.c 1.1.2.26 +4 -4 src/usr.sbin/ppp/Attic/prompt.c 1.35.2.7 +3 -3 src/usr.sbin/ppp/systems.c 1.45.2.27 +3 -3 src/usr.sbin/ppp/vars.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 16:18:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA12960 for cvs-all-outgoing; Tue, 14 Apr 1998 16:18:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA12955; Tue, 14 Apr 1998 23:18:06 GMT (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA14592; Tue, 14 Apr 1998 16:17:25 -0700 (PDT) Date: Tue, 14 Apr 1998 16:17:25 -0700 (PDT) Message-Id: <199804142317.QAA14592@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/04/14 16:17:25 PDT Modified files: (Branch: MP) usr.sbin/ppp bundle.c Log: Pass all command arguments around with struct cmdargs rather than incrementing argv and decrementing argc. Now individual functions can determine their caller. This also removes the "prefix" hack in FindExec(). Revision Changes Path 1.1.2.46 +2 -2 src/usr.sbin/ppp/Attic/bundle.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 16:47:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA18901 for cvs-all-outgoing; Tue, 14 Apr 1998 16:47:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA18879; Tue, 14 Apr 1998 23:47:24 GMT (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA14837; Tue, 14 Apr 1998 16:46:43 -0700 (PDT) Date: Tue, 14 Apr 1998 16:46:43 -0700 (PDT) Message-Id: <199804142346.QAA14837@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data/ports Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/04/14 16:46:42 PDT Modified files: data/ports Makefile Log: Explicitly use perl to execute portindex, so we don't have to rely on the permissions of the file in the CVS tree. PR: 6279 Submitted by: Frank Volf Revision Changes Path 1.8 +2 -2 www/data/ports/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 16:49:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA19598 for cvs-all-outgoing; Tue, 14 Apr 1998 16:49:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from awfulhak.org (awfulhak.demon.co.uk [158.152.17.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA19352; Tue, 14 Apr 1998 23:48:58 GMT (envelope-from brian@Awfulhak.org) Received: from gate.lan.awfulhak.org (localhost [127.0.0.1]) by awfulhak.org (8.8.8/8.8.7) with ESMTP id AAA23298; Wed, 15 Apr 1998 00:47:10 +0100 (BST) (envelope-from brian@gate.lan.awfulhak.org) Message-Id: <199804142347.AAA23298@awfulhak.org> X-Mailer: exmh version 2.0.1 12/23/97 To: Brian Somers cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: Re: cvs commit: src/usr.sbin/ppp bundle.c In-reply-to: Your message of "Tue, 14 Apr 1998 16:17:25 PDT." <199804142317.QAA14592@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 15 Apr 1998 00:47:09 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > brian 1998/04/14 16:17:25 PDT > > Modified files: (Branch: MP) > usr.sbin/ppp bundle.c > Log: > Pass all command arguments around with struct cmdargs rather > than incrementing argv and decrementing argc. Now individual > functions can determine their caller. This also removes the > "prefix" hack in FindExec(). Oops - wrong message :-( I *meant*: Don't enter TERMINATE phase when IPCP says it's coming down (TLD). Wait 'till it's down (TLF), then enter TERMINATE. This deals with the fact that my wonderful ISP (Demon) has started sending IPCP config requests *after* we've both ACKd and entered the (IPCP) opened state. This is ok according to the rfc (IPCP does a TLD, deals with the REQ, sends a new REQ and hopefully does a TLU pretty soon), but smells of a problem on their end as the REQ has no data :-/ > Revision Changes Path > 1.1.2.46 +2 -2 src/usr.sbin/ppp/Attic/bundle.c -- Brian , , Don't _EVER_ lose your sense of humour.... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 17:32:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA29679 for cvs-all-outgoing; Tue, 14 Apr 1998 17:32:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from opus.cts.cwu.edu (skynyrd@opus.cts.cwu.edu [198.104.92.71]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA29288; Wed, 15 Apr 1998 00:31:20 GMT (envelope-from skynyrd@opus.cts.cwu.edu) Received: from localhost (skynyrd@localhost) by opus.cts.cwu.edu (8.8.8/8.8.8) with SMTP id RAA29993; Tue, 14 Apr 1998 17:31:19 -0700 (PDT) (envelope-from skynyrd@opus.cts.cwu.edu) Date: Tue, 14 Apr 1998 17:31:19 -0700 (PDT) From: Chris Timmons To: Poul-Henning Kamp cc: committers@FreeBSD.ORG Subject: Re: Come on guys, close a PR or two, will ya ? In-Reply-To: <951.892583552@critter.freebsd.dk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk And for those of you who aren't real keen about gnats, give tkgnats a try - it made it much easier for me to sift through the pile! -Chris On Tue, 14 Apr 1998, Poul-Henning Kamp wrote: > > I have now spent 8 hours sifting through PRs, and I am more than a little > amazed at what we have in there. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 20:12:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA00706 for cvs-all-outgoing; Tue, 14 Apr 1998 20:12:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA00700; Wed, 15 Apr 1998 03:12:21 GMT (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA15262; Tue, 14 Apr 1998 20:11:38 -0700 (PDT) Date: Tue, 14 Apr 1998 20:11:38 -0700 (PDT) Message-Id: <199804150311.UAA15262@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/stdio mktemp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/04/14 20:11:37 PDT Modified files: (Branch: RELENG_2_2) lib/libc/stdio mktemp.c Log: MFC: don't generate potential shell or interpreter metacharacters when doing character rotation while searching for unique names. Revision Changes Path 1.4.2.4 +4 -2 src/lib/libc/stdio/mktemp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 21:34:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA14748 for cvs-all-outgoing; Tue, 14 Apr 1998 21:34:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA14642; Wed, 15 Apr 1998 04:33:59 GMT (envelope-from asami@vader.cs.berkeley.edu) Received: from bubble.didi.com (ala-ca34-37.ix.netcom.com [207.93.143.165]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id VAA28814; Tue, 14 Apr 1998 21:33:56 -0700 (PDT) Received: (from asami@localhost) by bubble.didi.com (8.8.7/8.8.8) id VAA03498; Tue, 14 Apr 1998 21:33:52 -0700 (PDT) (envelope-from asami) Date: Tue, 14 Apr 1998 21:33:52 -0700 (PDT) Message-Id: <199804150433.VAA03498@bubble.didi.com> To: winter@jurai.net CC: phk@FreeBSD.ORG, committers@FreeBSD.ORG, hackers@FreeBSD.ORG In-reply-to: (winter@jurai.net) Subject: Re: Come on guys, close a PR or two, will ya ? From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Isn't it about time the ports project took on a life of its own? Not that * I'm advocating changing the way it interacts with FreeBSD but if steps * were made to unify the *BSD-ports/pkgsrc efforts into one project we would * stand to gain a number of helpful hands from the OpenBSD and NetBSD * groups. I am not against making our collection more friendly to other *BSD systems, but with the logistics and stuff that's involved, I don't think it's likely that it will reduce our load any.... Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 21:43:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA16191 for cvs-all-outgoing; Tue, 14 Apr 1998 21:43:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from sasami.jurai.net (winter@sasami.jurai.net [207.153.65.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA16158; Wed, 15 Apr 1998 04:42:47 GMT (envelope-from winter@jurai.net) Received: from localhost (winter@localhost) by sasami.jurai.net (8.8.8/8.8.7) with SMTP id AAA21575; Wed, 15 Apr 1998 00:42:44 -0400 (EDT) Date: Wed, 15 Apr 1998 00:42:44 -0400 (EDT) From: "Matthew N. Dodd" To: Satoshi Asami cc: phk@FreeBSD.ORG, committers@FreeBSD.ORG, hackers@FreeBSD.ORG Subject: Re: Come on guys, close a PR or two, will ya ? In-Reply-To: <199804150433.VAA03498@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 Tue, 14 Apr 1998, Satoshi Asami wrote: > I am not against making our collection more friendly to other *BSD > systems, but with the logistics and stuff that's involved, I don't think > it's likely that it will reduce our load any.... Coordinating all the system dependent bits is likely to increase load. I am not saying otherwise. However, this cost is offset by the potentially larger base of ports maintainers drawn from all 3 projects. /* Matthew N. Dodd | A memory retaining a love you had for life winter@jurai.net | As cruel as it seems nothing ever seems to http://www.jurai.net/~winter | go right - FLA M 3.1:53 */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 22:08:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA20525 for cvs-all-outgoing; Tue, 14 Apr 1998 22:08:29 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au (spinner.netplex.com.au [202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA20400; Wed, 15 Apr 1998 05:08:01 GMT (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.8.8/8.8.8/Spinner) with ESMTP id NAA24706; Wed, 15 Apr 1998 13:07:18 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199804150507.NAA24706@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: "Matthew N. Dodd" cc: Satoshi Asami , phk@FreeBSD.ORG, committers@FreeBSD.ORG, hackers@FreeBSD.ORG Subject: Re: Come on guys, close a PR or two, will ya ? In-reply-to: Your message of "Wed, 15 Apr 1998 00:42:44 -0400." Date: Wed, 15 Apr 1998 13:07:16 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Matthew N. Dodd" wrote: > On Tue, 14 Apr 1998, Satoshi Asami wrote: > > I am not against making our collection more friendly to other *BSD > > systems, but with the logistics and stuff that's involved, I don't think > > it's likely that it will reduce our load any.... > > Coordinating all the system dependent bits is likely to increase load. I > am not saying otherwise. However, this cost is offset by the potentially > larger base of ports maintainers drawn from all 3 projects. Well, the first set of differences that I can think of: - Man page names in PLIST's.. The other BSD's don't gzip the pages, that causes PLIST problems. - Shared library naming strategies. We're going to have this soon when we hit elf too. - Dependencies on the base system. For example the p5-* ports would have trouble with OpenBSD's use of perl5 in the base tree. We will probably have this problem too some time. The other BSD's have things like libwrap and identd in the base tree as well, NetBSD has no perl at all, so things like /usr/bin/perl can't automatically be used. - Locations of system critical files. OpenBSD at least puts security and system critical etc files in /etc where they belong rather than patching everything to /usr/local/etc. They do not put these files in PLIST's so that they survive a pkg_delete prior to a new version being installed. - Naming issues. DESCR files etc refer to FreeBSD by name, patch files patch in "FreeBSD" into things, etc. - Political issues. Who runs the show? Do all NetBSD/OpenBSD committers automatically get commit rights to the ports tree the same way the FreeBSD folks do? Presumably the ports tree would move to a seperate CVS repository with seperate commit and access lists? On a seperate machine to minimize the political friction of having all parties having accounts on the same machine? How can ports be tested cross-platform? Three build/ test machines, one for each OS, available to all ports commiters? What about pre-release ports tree freezes? - those inconvenience 2 parties. This probably means branching the tree for each release by each OS. - Policies like 'the ports tree supports 2.2-stable and not -current' become nonsensical as the inter-os differences are generally far greater than the 2.2/3.0 differences. - Probably a zillion other things. Much of this could probably be dealt with by bsd.port.mk, but where the PLIST is concerned there is a problem as there doesn't seem to be an easy way of doing some sort of pre-processing of the PLIST to counter things like manpage compression policy. IMHO, this already is a problem as we can't package things with no man page compression ourselves. Don't get me wrong, I'd love to see it happen, but the question is.. is there sufficient willpower and energy to make it work and put out the fires during the teething process? Cheers, -Peter -- Peter Wemm Netplex Consulting To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 22:22:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA22851 for cvs-all-outgoing; Tue, 14 Apr 1998 22:22:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from sasami.jurai.net (winter@sasami.jurai.net [207.153.65.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA22619; Wed, 15 Apr 1998 05:20:14 GMT (envelope-from winter@jurai.net) Received: from localhost (winter@localhost) by sasami.jurai.net (8.8.8/8.8.7) with SMTP id BAA21968; Wed, 15 Apr 1998 01:19:35 -0400 (EDT) Date: Wed, 15 Apr 1998 01:19:35 -0400 (EDT) From: "Matthew N. Dodd" To: Peter Wemm cc: Satoshi Asami , phk@FreeBSD.ORG, committers@FreeBSD.ORG, hackers@FreeBSD.ORG Subject: Re: Come on guys, close a PR or two, will ya ? In-Reply-To: <199804150507.NAA24706@spinner.netplex.com.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk All solveable problems. A more robust packaging system will solve most of these. On Wed, 15 Apr 1998, Peter Wemm wrote: > - Man page names in PLIST's.. The other BSD's don't gzip the pages, that > causes PLIST problems. PLIST.os.arch or something similar if you want a direct bug ugly solution. > - Shared library naming strategies. We're going to have this soon when we > hit elf too. Makefile.os.arch.inc in the base port dir. " " > - Dependencies on the base system. For example the p5-* ports would have > trouble with OpenBSD's use of perl5 in the base tree. We will probably > have this problem too some time. The other BSD's have things like libwrap > and identd in the base tree as well, NetBSD has no perl at all, so things > like /usr/bin/perl can't automatically be used. > > - Locations of system critical files. OpenBSD at least puts security and > system critical etc files in /etc where they belong rather than patching > everything to /usr/local/etc. They do not put these files in PLIST's so > that they survive a pkg_delete prior to a new version being installed. A better packaging system/management system solves these. Debian has most of these problems solved (thought I'm in no way advocating we adopt their tools; they just have some good ideas) > - Naming issues. DESCR files etc refer to FreeBSD by name, patch files > patch in "FreeBSD" into things, etc. Again, OS and arch specific differences must be supported in a more meaningful way. Once this is solved doing release specific modifications to ports will be possible. > - Political issues. Who runs the show? Do all NetBSD/OpenBSD committers > automatically get commit rights to the ports tree the same way the FreeBSD > folks do? Presumably the ports tree would move to a seperate CVS > repository with seperate commit and access lists? I would envision a separate ports project which would imply this sort of seperation. > On a seperate machine to minimize the political friction of having all > parties having accounts on the same machine? How can ports be tested > cross-platform? Three build/ test machines, one for each OS, available > to all ports commiters? What about pre-release ports tree freezes? - > those inconvenience 2 parties. With a separate project the ports tree wouldn't be tied to any specific release. (Or rather should not.) > This probably means branching the tree for each release by each OS. Check out how debian manages this problem. > - Policies like 'the ports tree supports 2.2-stable and not -current' > become nonsensical as the inter-os differences are generally far greater > than the 2.2/3.0 differences. You're missing the big picture. This is one of the problems that would have to be solved in order to support the other BSDs. > - Probably a zillion other things. Indeed. You've spelled out a number of things that I was aware of but unable to convey in a meaningful manner. > Much of this could probably be dealt with by bsd.port.mk, but where the > PLIST is concerned there is a problem as there doesn't seem to be an easy > way of doing some sort of pre-processing of the PLIST to counter things > like manpage compression policy. IMHO, this already is a problem as we > can't package things with no man page compression ourselves. It may be that the current way of doing this is showing its shortcomings. > Don't get me wrong, I'd love to see it happen, but the question is.. is > there sufficient willpower and energy to make it work and put out the > fires during the teething process? This is an issue that will have to be solved some time. If/When FreeBSD supports the Sparc, Alpha and whatever else we will face these same issues. We can start dealing with them now and enlist the help of others who stand to benefit greatly (ever seen NetBSD's ports tree? ick) from the venture. /* Matthew N. Dodd | A memory retaining a love you had for life winter@jurai.net | As cruel as it seems nothing ever seems to http://www.jurai.net/~winter | go right - FLA M 3.1:53 */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 23:07:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA02039 for cvs-all-outgoing; Tue, 14 Apr 1998 23:07:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA02007; Wed, 15 Apr 1998 06:07:44 GMT (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id QAA01489; Wed, 15 Apr 1998 16:03:19 +1000 Date: Wed, 15 Apr 1998 16:03:19 +1000 From: Bruce Evans Message-Id: <199804150603.QAA01489@godzilla.zeta.org.au> To: cvs-committers@FreeBSD.ORG, jmb@FreeBSD.ORG Subject: Re: cvs commit: src/etc newsyslog.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >jmb 1998/04/14 16:05:27 PDT > > Modified files: > etc newsyslog.conf > Log: > rotate sendmail statistics file weekly. > keep the last ten weeks of data. > Submitted by: jmb The `Submitted by:' line doesn't apply for committing your own changes. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 14 23:24:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA06207 for cvs-all-outgoing; Tue, 14 Apr 1998 23:24:49 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from picnic.mat.net (picnic.mat.net [206.246.122.117]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA06183; Wed, 15 Apr 1998 06:24:34 GMT (envelope-from chuckr@glue.umd.edu) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.8.8/8.8.5) with SMTP id BAA02838; Wed, 15 Apr 1998 01:23:32 -0400 (EDT) Date: Wed, 15 Apr 1998 01:23:32 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@localhost To: "Matthew N. Dodd" cc: Satoshi Asami , phk@FreeBSD.ORG, committers@FreeBSD.ORG, hackers@FreeBSD.ORG Subject: Re: Come on guys, close a PR or two, will ya ? 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, 15 Apr 1998, Matthew N. Dodd wrote: > On Tue, 14 Apr 1998, Satoshi Asami wrote: > > I am not against making our collection more friendly to other *BSD > > systems, but with the logistics and stuff that's involved, I don't think > > it's likely that it will reduce our load any.... > > Coordinating all the system dependent bits is likely to increase load. I > am not saying otherwise. However, this cost is offset by the potentially > larger base of ports maintainers drawn from all 3 projects. Well, we already get submissions from a large group, and that does include several from NetBSD and OpenBSD. The important thing to keep is the present understanding of where it's going and who leads it. Without an absolute tie-breaker, and a good rationale as to direction, it degrades into a committee. I remember a definition of a committee's collective IQ that I subscribe to: Take the average IQ of the members and divide by the number of members. Never found this wrong ... > > /* > Matthew N. Dodd | A memory retaining a love you had for life > winter@jurai.net | As cruel as it seems nothing ever seems to > http://www.jurai.net/~winter | go right - FLA M 3.1:53 > */ > > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@glue.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run Journey2 and picnic, both FreeBSD (301) 220-2114 | version 3.0 current -- and great FUN! ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 00:36:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA27275 for cvs-all-outgoing; Wed, 15 Apr 1998 00:36:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA27268; Wed, 15 Apr 1998 07:36:33 GMT (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA15879; Wed, 15 Apr 1998 00:35:49 -0700 (PDT) Date: Wed, 15 Apr 1998 00:35:49 -0700 (PDT) Message-Id: <199804150735.AAA15879@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/lang/python Makefile ports/lang/python/files Setup md5 ports/lang/python/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/04/15 00:35:49 PDT Modified files: lang/python Makefile lang/python/files Setup md5 lang/python/pkg PLIST Log: Upgrade to 1.5.1. Revision Changes Path 1.26 +5 -8 ports/lang/python/Makefile 1.14 +23 -9 ports/lang/python/files/Setup 1.9 +1 -2 ports/lang/python/files/md5 1.13 +25 -30 ports/lang/python/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 00:40:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA27652 for cvs-all-outgoing; Wed, 15 Apr 1998 00:40:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA27563; Wed, 15 Apr 1998 07:39:45 GMT (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-37.ix.netcom.com [207.93.143.165]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id AAA29005; Wed, 15 Apr 1998 00:39:43 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id AAA05333; Wed, 15 Apr 1998 00:39:41 -0700 (PDT) Date: Wed, 15 Apr 1998 00:39:41 -0700 (PDT) Message-Id: <199804150739.AAA05333@silvia.HIP.Berkeley.EDU> To: ache@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <199804142012.NAA13305@freefall.freebsd.org> (ache@FreeBSD.ORG) Subject: Re: cvs commit: ports/www/mozilla/patches patch-ad From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Allow building with dynamic Motiff lib too (use -l instead of full * patch to static lib) The port should just use MOTIFLIB (set in bsd.port.mk), so the user can select which library s/he wants to link by using MOTIF_STATIC. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 01:22:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA02080 for cvs-all-outgoing; Wed, 15 Apr 1998 01:22:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA02043; Wed, 15 Apr 1998 08:21:56 GMT (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id BAA14884; Wed, 15 Apr 1998 01:22:19 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: John Polstra cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail In-reply-to: Your message of "Tue, 14 Apr 1998 15:10:42 PDT." <199804142210.PAA14064@freefall.freebsd.org> Date: Wed, 15 Apr 1998 01:22:19 -0700 Message-ID: <14880.892628539@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Whoops, did I forget that step? Sorry! :-) > jdp 1998/04/14 15:10:42 PDT > > Modified files: > . avail > Log: > Add Dmitrij Tejblum . Welcome aboard, Dima! > > Revision Changes Path > 1.29 +2 -2 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 Apr 15 01:26:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA02516 for cvs-all-outgoing; Wed, 15 Apr 1998 01:26:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA02476; Wed, 15 Apr 1998 08:26:10 GMT (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id BAA14947; Wed, 15 Apr 1998 01:26:30 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: "Matthew N. Dodd" cc: Poul-Henning Kamp , committers@FreeBSD.ORG, hackers@FreeBSD.ORG Subject: Re: Come on guys, close a PR or two, will ya ? In-reply-to: Your message of "Tue, 14 Apr 1998 18:38:29 EDT." Date: Wed, 15 Apr 1998 01:26:30 -0700 Message-ID: <14943.892628790@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Isn't it about time the ports project took on a life of its own? Not that It already has done exactly that, and some time ago. That's still no reason to duplicate all the infrastructure (like GNATS) for it since that'd otherwise mean that somebody on the ports team would have to go reimplement all that stuff for their "truly separate" project. I also think that every attempt to unify efforts with the other *BSDs has already been made and pushing the ports folks further away from FreeBSD isn't going to help. The problem with getting them to work with us isn't one of perception ("we'd only be helping those evil FreeBSD folks") but time - the volunteers just don't have enough of it available to do a more thorough job of integration. Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 02:39:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA12528 for cvs-all-outgoing; Wed, 15 Apr 1998 02:39:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA12523; Wed, 15 Apr 1998 09:39:10 GMT (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 CAA16156; Wed, 15 Apr 1998 02:38:25 -0700 (PDT) Date: Wed, 15 Apr 1998 02:38:25 -0700 (PDT) Message-Id: <199804150938.CAA16156@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/editors/vim4/patches patch-af Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/04/15 02:38:25 PDT Added files: editors/vim4/patches patch-af Log: Reconize "-f /dev/stdout" same as "-f -". Submitted by: Nick Hibma To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 02:40:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA12753 for cvs-all-outgoing; Wed, 15 Apr 1998 02:40:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA12719; Wed, 15 Apr 1998 09:40:02 GMT (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA16224; Wed, 15 Apr 1998 02:39:16 -0700 (PDT) Date: Wed, 15 Apr 1998 02:39:16 -0700 (PDT) Message-Id: <199804150939.CAA16224@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/math/numpy Makefile ports/math/numpy/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/04/15 02:39:16 PDT Modified files: math/numpy Makefile math/numpy/pkg PLIST Log: Install header files, too. Revision Changes Path 1.7 +2 -1 ports/math/numpy/Makefile 1.6 +2 -0 ports/math/numpy/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 Apr 15 03:45:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA23820 for cvs-all-outgoing; Wed, 15 Apr 1998 03:45:48 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA23810; Wed, 15 Apr 1998 10:45:46 GMT (envelope-from dt@FreeBSD.org) From: Dmitrij Tejblum Received: (from dt@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA16501; Wed, 15 Apr 1998 03:45:00 -0700 (PDT) Date: Wed, 15 Apr 1998 03:45:00 -0700 (PDT) Message-Id: <199804151045.DAA16501@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook authors.sgml contrib.sgml submitters.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dt 1998/04/15 03:45:00 PDT Modified files: handbook authors.sgml contrib.sgml submitters.sgml Log: Move my name from the list of additional contributors to the list of committers. Revision Changes Path 1.97 +5 -1 doc/handbook/authors.sgml 1.279 +2 -1 doc/handbook/contrib.sgml 1.167 +1 -3 doc/handbook/submitters.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 04:05:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA28349 for cvs-all-outgoing; Wed, 15 Apr 1998 04:05:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA28289; Wed, 15 Apr 1998 11:05:40 GMT (envelope-from dt@FreeBSD.org) From: Dmitrij Tejblum Received: (from dt@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA16583; Wed, 15 Apr 1998 04:04:54 -0700 (PDT) Date: Wed, 15 Apr 1998 04:04:54 -0700 (PDT) Message-Id: <199804151104.EAA16583@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/msdosfs msdosfs_vfsops.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dt 1998/04/15 04:04:54 PDT Modified files: sys/msdosfs msdosfs_vfsops.c Log: Add a missing LK_RETRY. Noticed by: Bruce (almost 2 monts ago) Remove a debugging printf. Revision Changes Path 1.33 +3 -5 src/sys/msdosfs/msdosfs_vfsops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 04:11:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA29971 for cvs-all-outgoing; Wed, 15 Apr 1998 04:11:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA29925; Wed, 15 Apr 1998 11:11:14 GMT (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA16630; Wed, 15 Apr 1998 04:10:29 -0700 (PDT) Date: Wed, 15 Apr 1998 04:10:29 -0700 (PDT) Message-Id: <199804151110.EAA16630@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/i386 exception.s Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/04/15 04:10:29 PDT Modified files: sys/i386/i386 exception.s Log: Fixed breakage of fork accounting in previous commit. A fork benchmark reported about 15 times as much sys time as real time. getmicroruntime() is confusing name. Revision Changes Path 1.50 +2 -2 src/sys/i386/i386/exception.s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 05:01:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA08055 for cvs-all-outgoing; Wed, 15 Apr 1998 05:01:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA08041; Wed, 15 Apr 1998 12:01:01 GMT (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA16764; Wed, 15 Apr 1998 05:00:15 -0700 (PDT) Date: Wed, 15 Apr 1998 05:00:15 -0700 (PDT) Message-Id: <199804151200.FAA16764@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa syscons.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/04/15 05:00:15 PDT Modified files: (Branch: 1.182.2) sys/i386/isa syscons.c Log: Swapped "should we just return" and "should we stop the screensaver" in scrn_timer() to prevent deadlock when screensaver sets UNKNOWN_MODE. Revision Changes Path 1.182.2.32 +8 -8 src/sys/i386/isa/syscons.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 05:28:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA14324 for cvs-all-outgoing; Wed, 15 Apr 1998 05:28:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA14319; Wed, 15 Apr 1998 12:28:19 GMT (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA18164; Wed, 15 Apr 1998 05:27:33 -0700 (PDT) Date: Wed, 15 Apr 1998 05:27:33 -0700 (PDT) Message-Id: <199804151227.FAA18164@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/ufs/ufs ufs_lookup.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/04/15 05:27:33 PDT Modified files: sys/ufs/ufs ufs_lookup.c Log: Fixed bitrot in the non-softdep case of ufs_dirremove(): - restored async mount support. The first entry in a block is still always written synchronously, although it probably shouldn't be in the async case. - restored use of BWRITE() instead of bowrite() for the DOWHITEOUT case, although bowrite() is probably better. Broken by: merge of softdep changes (rev.1.22). Found by: lmbench2 delete-file benchmarks. Revision Changes Path 1.24 +9 -24 src/sys/ufs/ufs/ufs_lookup.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 06:20:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA21742 for cvs-all-outgoing; Wed, 15 Apr 1998 06:20:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA21737; Wed, 15 Apr 1998 13:20:31 GMT (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA18433; Wed, 15 Apr 1998 06:19:45 -0700 (PDT) Date: Wed, 15 Apr 1998 06:19:45 -0700 (PDT) Message-Id: <199804151319.GAA18433@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook isdn.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/15 06:19:44 PDT Modified files: handbook isdn.sgml Log: Mark the ISDN Cards section as obsolete. Add link to the ISDN4BSD homepage. Revision Changes Path 1.13 +7 -1 doc/handbook/isdn.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 06:34:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA25455 for cvs-all-outgoing; Wed, 15 Apr 1998 06:34:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA25320; Wed, 15 Apr 1998 13:34:24 GMT (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id GAA15978; Wed, 15 Apr 1998 06:34:27 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: "Matthew N. Dodd" cc: Peter Wemm , Satoshi Asami , phk@FreeBSD.ORG, committers@FreeBSD.ORG, hackers@FreeBSD.ORG Subject: Re: Come on guys, close a PR or two, will ya ? In-reply-to: Your message of "Wed, 15 Apr 1998 01:19:35 EDT." Date: Wed, 15 Apr 1998 06:34:26 -0700 Message-ID: <15974.892647266@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > All solveable problems. A more robust packaging system will solve most of > these. That's like saying "we can get to the stars, we just need a faster than light drive - it's obvious guys!" :-) I've been trying to write or get someone (anyone!) else to write "a more robust packaging system" for something close to 4 years now and I'm not having any luck at all. I've also even looked at what it would take to make the ports collection generate RPMs (it's sort of mappable but definitely not easy) and if Debian were easier to install on my spam box I'd probably have looked at that by now too. Nobody, least of all myself, is particularly proud of the current prototype package system and would LOVE to see Package System MKII, whether it's an import or another indigenous effort. A more robust packaging system / management system is not the answer - that is the question. Who's going to do it is the answer we're looking for here. :-) Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 06:48:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA28401 for cvs-all-outgoing; Wed, 15 Apr 1998 06:48:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA28396; Wed, 15 Apr 1998 13:48:12 GMT (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA12075; Wed, 15 Apr 1998 06:47:26 -0700 (PDT) Date: Wed, 15 Apr 1998 06:47:26 -0700 (PDT) Message-Id: <199804151347.GAA12075@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data/cgi cgi-style.pl Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/15 06:47:25 PDT Modified files: data/cgi cgi-style.pl Log: New variable hsty_email. hsty_email is the visible E-Mail address in the footer. Revision Changes Path 1.10 +5 -2 www/data/cgi/cgi-style.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 07:04:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA02461 for cvs-all-outgoing; Wed, 15 Apr 1998 07:04:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from rfcnet.com (mattc@rfcnet.com [207.227.20.207]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA02398; Wed, 15 Apr 1998 14:04:05 GMT (envelope-from mattc@rfcnet.com) Received: (from mattc@localhost) by rfcnet.com (8.8.8/8.8.8) id JAA21738; Wed, 15 Apr 1998 09:03:57 -0500 (CDT) (envelope-from mattc) Message-ID: <19980415090357.59810@rfcnet.com> Date: Wed, 15 Apr 1998 09:03:57 -0500 From: Matthew Cashdollar To: "Matthew N. Dodd" Cc: committers@FreeBSD.ORG, hackers@FreeBSD.ORG Subject: Re: Come on guys, close a PR or two, will ya ? References: <199804150507.NAA24706@spinner.netplex.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89i In-Reply-To: ; from Matthew N. Dodd on Wed, Apr 15, 1998 at 01:19:35AM -0400 x-no-archive: yes Organization: RF Communications, Inc. http://www.rfcinc.com Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Wed, Apr 15, 1998 at 01:19:35AM -0400, Matthew N. Dodd wrote: > A better packaging system/management system solves these. Debian has most > of these problems solved (thought I'm in no way advocating we adopt their > tools; they just have some good ideas) Yuck! Debian has the worst packaging system of any OS I have ever seen. If newbies are confused now, just wait until they try a debian linux-style packaging system.. LOL Seriously though, I don't see anything wrong with our current ports collection and the debian stuff is a step (or two) backwards if you ask me. -- Matthew Cashdollar RF Communications, Inc. -- http://www.rfcinc.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 07:50:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA12029 for cvs-all-outgoing; Wed, 15 Apr 1998 07:50:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from sasami.jurai.net (winter@sasami.jurai.net [207.153.65.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA11941; Wed, 15 Apr 1998 14:50:40 GMT (envelope-from winter@jurai.net) Received: from localhost (winter@localhost) by sasami.jurai.net (8.8.8/8.8.7) with SMTP id KAA26265; Wed, 15 Apr 1998 10:50:33 -0400 (EDT) Date: Wed, 15 Apr 1998 10:50:33 -0400 (EDT) From: "Matthew N. Dodd" To: Matthew Cashdollar cc: committers@FreeBSD.ORG, hackers@FreeBSD.ORG Subject: Re: Come on guys, close a PR or two, will ya ? In-Reply-To: <19980415090357.59810@rfcnet.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Wed, 15 Apr 1998, Matthew Cashdollar wrote: > Yuck! Debian has the worst packaging system of any OS I have ever seen. If > newbies are confused now, just wait until they try a debian linux-style > packaging system.. LOL I agree that dselect sucks hard. That wasn't what I was suggesting. (their new packaging tool is supposed to be the cat's meow though.) > Seriously though, I don't see anything wrong with our current ports > collection and the debian stuff is a step (or two) backwards if you ask > me. dselect is a step or two backwards yes. /* Matthew N. Dodd | A memory retaining a love you had for life winter@jurai.net | As cruel as it seems nothing ever seems to http://www.jurai.net/~winter | go right - FLA M 3.1:53 */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 08:14:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA16443 for cvs-all-outgoing; Wed, 15 Apr 1998 08:14:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from gatewaya.anheuser-busch.com (gatewaya.anheuser-busch.com [151.145.250.252]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id PAA16152; Wed, 15 Apr 1998 15:12:23 GMT (envelope-from Matthew.Alton@anheuser-busch.com) Received: by gatewaya.anheuser-busch.com; id KAA14119; Wed, 15 Apr 1998 10:11:44 -0500 Received: from stlabcexg003(151.145.101.158) by gatewaya.anheuser-busch.com via smap (3.2) id xma014100; Wed, 15 Apr 98 10:11:31 -0500 Received: by stlabcexg003.anheuser-busch.com with Internet Mail Service (5.5.1960.3) id <2TLM8TTP>; Wed, 15 Apr 1998 10:10:27 -0500 Message-ID: <31B3F0BF1C40D11192A700805FD48BF9017765A1@STLABCEXG011> From: "Alton, Matthew" To: "'Jordan K. Hubbard'" , "Matthew N. Dodd" Cc: Peter Wemm , Satoshi Asami , phk@FreeBSD.ORG, committers@FreeBSD.ORG, hackers@FreeBSD.ORG Subject: RE: Come on guys, close a PR or two, will ya ? Date: Wed, 15 Apr 1998 10:04:14 -0500 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 I'll do it. Please send me pointers. Thank you. > -----Original Message----- > From: Jordan K. Hubbard [SMTP:jkh@time.cdrom.com] > Sent: Wednesday, April 15, 1998 8:34 AM > To: Matthew N. Dodd > Cc: Peter Wemm; Satoshi Asami; phk@FreeBSD.ORG; committers@FreeBSD.ORG; > hackers@FreeBSD.ORG > Subject: Re: Come on guys, close a PR or two, will ya ? > > > All solveable problems. A more robust packaging system will solve most of > > these. > > That's like saying "we can get to the stars, we just need a faster > than light drive - it's obvious guys!" :-) > > I've been trying to write or get someone (anyone!) else to write "a > more robust packaging system" for something close to 4 years now and > I'm not having any luck at all. I've also even looked at what it > would take to make the ports collection generate RPMs (it's sort of > mappable but definitely not easy) and if Debian were easier to install > on my spam box I'd probably have looked at that by now too. Nobody, > least of all myself, is particularly proud of the current prototype > package system and would LOVE to see Package System MKII, whether it's > an import or another indigenous effort. A more robust packaging > system / management system is not the answer - that is the question. > Who's going to do it is the answer we're looking for here. :-) > > Jordan > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-hackers" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 08:29:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA20155 for cvs-all-outgoing; Wed, 15 Apr 1998 08:29:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: (from jmb@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA20144; Wed, 15 Apr 1998 08:29:45 -0700 (PDT) (envelope-from jmb) From: "Jonathan M. Bresler" Message-Id: <199804151529.IAA20144@hub.freebsd.org> Subject: Re: cvs commit: src/etc newsyslog.conf In-Reply-To: <199804150603.QAA01489@godzilla.zeta.org.au> from Bruce Evans at "Apr 15, 98 04:03:19 pm" To: bde@zeta.org.au (Bruce Evans) Date: Wed, 15 Apr 1998 08:29:44 -0700 (PDT) Cc: cvs-committers@FreeBSD.ORG, jmb@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Bruce Evans wrote: > >jmb 1998/04/14 16:05:27 PDT > > > > Modified files: > > etc newsyslog.conf > > Log: > > rotate sendmail statistics file weekly. > > keep the last ten weeks of data. > > Submitted by: jmb > > The `Submitted by:' line doesn't apply for committing your own changes. ack! you are absolutely right. jmb To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 09:22:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA00475 for cvs-all-outgoing; Wed, 15 Apr 1998 09:22:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA00468; Wed, 15 Apr 1998 16:22:48 GMT (envelope-from scrappy@FreeBSD.org) From: "Marc G. Fournier" Received: (from scrappy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA16228; Wed, 15 Apr 1998 09:22:01 -0700 (PDT) Date: Wed, 15 Apr 1998 09:22:01 -0700 (PDT) Message-Id: <199804151622.JAA16228@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/security/pgp5 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk scrappy 1998/04/15 09:22:01 PDT Modified files: security/pgp5 Makefile Log: path at the MASTER_SITEs listed wrong... Revision Changes Path 1.22 +3 -3 ports/security/pgp5/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 09:38:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA04055 for cvs-all-outgoing; Wed, 15 Apr 1998 09:38:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA04038; Wed, 15 Apr 1998 16:38:31 GMT (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA16821; Wed, 15 Apr 1998 09:37:43 -0700 (PDT) Date: Wed, 15 Apr 1998 09:37:43 -0700 (PDT) Message-Id: <199804151637.JAA16821@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/usr.sbin Makefile src/etc make.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/04/15 09:37:43 PDT Modified files: usr.sbin Makefile etc make.conf Log: In light of the fact that several widespread sendmail alternatives exists is reason enough to make the compilation & installation of sendmail an make.conf option. I know that you hate negative options Bruce. PR: 6284 Reviewed by: phk Submitted by: Adrian Colley Revision Changes Path 1.119 +6 -2 src/usr.sbin/Makefile 1.60 +4 -1 src/etc/make.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 09:42:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA04846 for cvs-all-outgoing; Wed, 15 Apr 1998 09:42:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA04803; Wed, 15 Apr 1998 16:42:02 GMT (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA16929; Wed, 15 Apr 1998 09:41:15 -0700 (PDT) Date: Wed, 15 Apr 1998 09:41:15 -0700 (PDT) Message-Id: <199804151641.JAA16929@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc rc.firewall Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/04/15 09:41:15 PDT Modified files: etc rc.firewall Log: Better RFC1918 network protection PR: 6278 Reviewed by: phk Submitted by: Ruslan Ermilov Revision Changes Path 1.17 +4 -1 src/etc/rc.firewall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 09:49:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA07091 for cvs-all-outgoing; Wed, 15 Apr 1998 09:49:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA06873; Wed, 15 Apr 1998 16:48:49 GMT (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id JAA16968; Wed, 15 Apr 1998 09:48:21 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: "Alton, Matthew" cc: "Matthew N. Dodd" , Peter Wemm , Satoshi Asami , phk@FreeBSD.ORG, committers@FreeBSD.ORG Subject: Re: Come on guys, close a PR or two, will ya ? In-reply-to: Your message of "Wed, 15 Apr 1998 10:04:14 CDT." <31B3F0BF1C40D11192A700805FD48BF9017765A1@STLABCEXG011> Date: Wed, 15 Apr 1998 09:48:21 -0700 Message-ID: <16964.892658901@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > I'll do it. Please send me pointers. Thank you. Mike, did we ever put to paper any of our TCL-ish designs for "Package System From Hell MkII" or did it all remain on that skanky whiteboard out in the shipping dept? Mike and I sat down about 6 months ago and sketched out the details of the various insane ravings we'd both had on this topic for the last year or two, but we didn't actually implement anything so I imagine our "work" would be of limited use anyway. :-) Some of my (exceedingly verbose) postings on this topic can also probably be culled from the mailing list archives at ftp://ftp.freebsd.org/pub/FreeBSD/mailing-lists/ if you look back around 1995-1996, maybe even as early as '94. I wrote the package bits in '93 and probably started hating them pretty soon thereafter. :-) In some of those postings, I did at least lay out a lot of criteria for what a next-generation packaging system would need and also railed against the .tar.gz method of packaging and what a more successful storage model would need to have. I also did actually sort of deal with that latter problem about a year ago by contracting out the task of writing a zip file access library, the last version(s) of that work being sort of in Mike Smith's hands now since he foolishly volunteered to take over liason work on that project awhile back. Ask Mike if you want a copy. The ziplib stuff is only a very small part of it, however, and you still need to work out the details of the "trusted install script" mechanism so that packages can frob your system in fairly significant yet carefully controlled ways, and you need to get the "undo" functionality working so that packages can be backed out a little more successfully. :-) Then there's the whole "upgrade" scenario to worry about. That's FUN! :) It's a fair amount of work, but if you're game to do it them I'm certainly game to see you give it a try! :-) Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 10:08:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA12308 for cvs-all-outgoing; Wed, 15 Apr 1998 10:08:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA12204; Wed, 15 Apr 1998 17:07:42 GMT (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA17372; Wed, 15 Apr 1998 10:06:53 -0700 (PDT) Date: Wed, 15 Apr 1998 10:06:53 -0700 (PDT) Message-Id: <199804151706.KAA17372@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa psm.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/04/15 10:06:53 PDT Modified files: sys/i386/isa psm.c Log: In pre-devfs days, /dev/psm0 had always been a non-blocking device. But with devfs, currently, /dev/psm0 is the blocking device and /dev/npsm0 is the non-blocking one. DEVFS must stay consistent with the older behaviour. PR: 6260 Reviewed by: phk Submitted by: Kapil Chowksey Revision Changes Path 1.52 +6 -6 src/sys/i386/isa/psm.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 10:27:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA18797 for cvs-all-outgoing; Wed, 15 Apr 1998 10:27:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA18697; Wed, 15 Apr 1998 17:27:07 GMT (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA17585; Wed, 15 Apr 1998 10:26:19 -0700 (PDT) Date: Wed, 15 Apr 1998 10:26:19 -0700 (PDT) Message-Id: <199804151726.KAA17585@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/i386 in_cksum.c src/sys/i386/isa seagate.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/04/15 10:26:18 PDT Modified files: sys/i386/i386 in_cksum.c sys/i386/isa seagate.c Log: Support compiling with `gcc -ansi'. Fix missing `volatile's in __asm() statements while I'm here. Revision Changes Path 1.13 +9 -5 src/sys/i386/i386/in_cksum.c 1.28 +8 -8 src/sys/i386/isa/seagate.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 10:31:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA20691 for cvs-all-outgoing; Wed, 15 Apr 1998 10:31:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from zwei.siemens.at (zwei.siemens.at [193.81.246.12]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA20249; Wed, 15 Apr 1998 17:30:47 GMT (envelope-from lada@pc8811.gud.siemens.at) Received: from pc8811.gud.siemens.at (root@firix [10.1.143.100]) by zwei.siemens.at with ESMTP id TAA26195; Wed, 15 Apr 1998 19:28:47 +0200 (MET DST) Received: from pc8811.gud.siemens.at (pc8811.gud.siemens.co.at [195.3.22.159]) by pc8811.gud.siemens.at (8.8.8/8.8.8) with ESMTP id TAA29543; Wed, 15 Apr 1998 19:30:16 +0200 (CEST) (envelope-from lada@pc8811.gud.siemens.at) Message-ID: X-Mailer: XFMail 1.2 [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: <15974.892647266@time.cdrom.com> Date: Wed, 15 Apr 1998 19:30:15 +0200 (CEST) Organization: Siemens Austria AG From: Marino Ladavac To: "Jordan K. Hubbard" Subject: Re: Come on guys, close a PR or two, will ya ? Cc: hackers@FreeBSD.ORG, committers@FreeBSD.ORG, phk@FreeBSD.ORG, Satoshi Asami , Peter Wemm , "Matthew N. Dodd" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On 15-Apr-98 Jordan K. Hubbard wrote: >> All solveable problems. A more robust packaging system will solve most of >> these. > > A more robust packaging > system / management system is not the answer - that is the question. > Who's going to do it is the answer we're looking for here. :-) > > Jordan > I could take a look at it if you don't mind SystemV packaging style. At least I have the manpages for it and I can see how it seems to create its filesystem and stream packages. Most probably I will not go for stream package compatibility with SysV because I think it's a proprietary binary format (have to take a look at it, there was never any need to do that before). Sadly, it has its bad points in the sense that _all_ files need to be specified, but at least it is fairly standard (as far as the word standard means anything in the UNIX world :) /Marino ---------------------------------- Marino Ladavac Date: 15-Apr-98 Time: 19:22:46 ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 10:48:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA26398 for cvs-all-outgoing; Wed, 15 Apr 1998 10:48:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA26346; Wed, 15 Apr 1998 17:48:29 GMT (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA18484; Wed, 15 Apr 1998 10:47:41 -0700 (PDT) Date: Wed, 15 Apr 1998 10:47:41 -0700 (PDT) Message-Id: <199804151747.KAA18484@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/dev/en midway.c src/sys/dev/ppbus vpo.c src/sys/gnu/ext2fs ext2_linux_balloc.c i386-bitops.h src/sys/gnu/i386/isa dgb.c src/sys/i386/i386 identcpu.c pmap.c trap.c vm86.c src/sys/i386/isa aic6360.c if_ed.c if_el.c if_ie.c ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/04/15 10:47:41 PDT Modified files: sys/dev/en midway.c sys/dev/ppbus vpo.c sys/gnu/ext2fs ext2_linux_balloc.c i386-bitops.h sys/gnu/i386/isa dgb.c sys/i386/i386 identcpu.c pmap.c trap.c vm86.c sys/i386/isa aic6360.c if_ed.c if_el.c if_ie.c if_lnc.c if_ze.c istallion.c labpc.c lpt.c ncr5380.c pcaudio.c pcic.h prof_machdep.c random_machdep.c rp.c scd.c stallion.c wcd.c sys/i386/isa/ic i82586.h sys/i386/isa/pcvt pcvt_kbd.c sys/i386/isa/sound audio.c sys/i386/scsi aic7xxx.c sys/kern md5c.c subr_prof.c subr_rlist.c tty_subr.c vfs_bio.c sys/libkern qsort.c sys/msdosfs msdosfs_conv.c msdosfs_fat.c sys/net if_var.h ppp_tty.c sys/netinet ip_fw.c sys/pccard pcic.c sys/pci ide_pci.c if_fxp.c if_tx.c smc83c170.h sys/posix4 ksched.c sys/scsi cd.c od.c sd.c worm.c sys/sys dpt.h kernel.h sys/vm swap_pager.c vm_page.c vm_zone.c Log: Support compiling with `gcc -ansi'. Revision Changes Path 1.6 +1 -1 src/sys/dev/en/midway.c 1.5 +8 -8 src/sys/dev/ppbus/vpo.c 1.8 +5 -5 src/sys/gnu/ext2fs/ext2_linux_balloc.c 1.3 +4 -4 src/sys/gnu/ext2fs/i386-bitops.h 1.32 +9 -9 src/sys/gnu/i386/isa/dgb.c 1.44 +3 -3 src/sys/i386/i386/identcpu.c 1.192 +3 -3 src/sys/i386/i386/pmap.c 1.126 +4 -4 src/sys/i386/i386/trap.c 1.12 +8 -8 src/sys/i386/i386/vm86.c 1.40 +3 -3 src/sys/i386/isa/aic6360.c 1.139 +8 -8 src/sys/i386/isa/if_ed.c 1.35 +5 -5 src/sys/i386/isa/if_el.c 1.52 +10 -10 src/sys/i386/isa/if_ie.c 1.39 +22 -20 src/sys/i386/isa/if_lnc.c 1.52 +8 -7 src/sys/i386/isa/if_ze.c 1.18 +8 -7 src/sys/i386/isa/istallion.c 1.24 +4 -4 src/sys/i386/isa/labpc.c 1.68 +4 -4 src/sys/i386/isa/lpt.c 1.19 +2 -2 src/sys/i386/isa/ncr5380.c 1.40 +2 -2 src/sys/i386/isa/pcaudio.c 1.5 +4 -4 src/sys/i386/isa/pcic.h 1.9 +4 -4 src/sys/i386/isa/prof_machdep.c 1.25 +3 -3 src/sys/i386/isa/random_machdep.c 1.13 +1 -1 src/sys/i386/isa/rp.c 1.36 +3 -3 src/sys/i386/isa/scd.c 1.19 +7 -7 src/sys/i386/isa/stallion.c 1.52 +2 -2 src/sys/i386/isa/wcd.c 1.6 +4 -4 src/sys/i386/isa/ic/i82586.h 1.22 +1 -1 src/sys/i386/isa/pcvt/pcvt_kbd.c 1.17 +4 -4 src/sys/i386/isa/sound/audio.c 1.127 +8 -8 src/sys/i386/scsi/aic7xxx.c 1.13 +4 -3 src/sys/kern/md5c.c 1.25 +10 -10 src/sys/kern/subr_prof.c 1.26 +3 -3 src/sys/kern/subr_rlist.c 1.29 +3 -3 src/sys/kern/tty_subr.c 1.161 +2 -2 src/sys/kern/vfs_bio.c 1.8 +5 -5 src/sys/libkern/qsort.c 1.26 +3 -3 src/sys/msdosfs/msdosfs_conv.c 1.21 +7 -5 src/sys/msdosfs/msdosfs_fat.c 1.7 +3 -3 src/sys/net/if_var.h 1.34 +3 -3 src/sys/net/ppp_tty.c 1.81 +8 -4 src/sys/netinet/ip_fw.c 1.58 +7 -7 src/sys/pccard/pcic.c 1.10 +5 -5 src/sys/pci/ide_pci.c 1.51 +6 -6 src/sys/pci/if_fxp.c 1.10 +3 -3 src/sys/pci/if_tx.c 1.7 +3 -6 src/sys/pci/smc83c170.h 1.4 +1 -1 src/sys/posix4/ksched.c 1.90 +2 -2 src/sys/scsi/cd.c 1.36 +2 -2 src/sys/scsi/od.c 1.122 +2 -2 src/sys/scsi/sd.c 1.54 +2 -2 src/sys/scsi/worm.c 1.2 +2 -2 src/sys/sys/dpt.h 1.39 +6 -6 src/sys/sys/kernel.h 1.93 +7 -7 src/sys/vm/swap_pager.c 1.98 +4 -4 src/sys/vm/vm_page.c 1.20 +3 -3 src/sys/vm/vm_zone.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 10:54:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA28482 for cvs-all-outgoing; Wed, 15 Apr 1998 10:54:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA28411; Wed, 15 Apr 1998 17:54:22 GMT (envelope-from dima@FreeBSD.org) From: Dima Ruban Received: (from dima@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA18689; Wed, 15 Apr 1998 10:53:34 -0700 (PDT) Date: Wed, 15 Apr 1998 10:53:34 -0700 (PDT) Message-Id: <199804151753.KAA18689@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/conf Makefile.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dima 1998/04/15 10:53:33 PDT Modified files: sys/i386/conf Makefile.i386 Log: Use 0440 root.kmem kermissions on kernel instead of 0555 root.wheel. Reviewed by: freebsd-security Revision Changes Path 1.108 +2 -2 src/sys/i386/conf/Makefile.i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 11:29:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA05665 for cvs-all-outgoing; Wed, 15 Apr 1998 11:29:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA05634; Wed, 15 Apr 1998 18:29:19 GMT (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA19172; Wed, 15 Apr 1998 11:28:30 -0700 (PDT) Date: Wed, 15 Apr 1998 11:28:30 -0700 (PDT) Message-Id: <199804151828.LAA19172@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/04/15 11:28:29 PDT Modified files: release Makefile Log: Allow the CVS modules from which the source, doc and ports collections are checked out to be overridden. PR: misc/6309 Submitted by: "Greg A. Woods" Revision Changes Path 1.348 +12 -5 src/release/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 11:38:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA07842 for cvs-all-outgoing; Wed, 15 Apr 1998 11:38:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA07834; Wed, 15 Apr 1998 18:38:38 GMT (envelope-from tegge@FreeBSD.org) From: Tor Egge Received: (from tegge@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA19424; Wed, 15 Apr 1998 11:37:50 -0700 (PDT) Date: Wed, 15 Apr 1998 11:37:50 -0700 (PDT) Message-Id: <199804151837.LAA19424@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern vfs_subr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tegge 1998/04/15 11:37:50 PDT Modified files: sys/kern vfs_subr.c Log: Unlock mountlist_slock if the mount point was busy (unmount in progress) during the attempt at lazy fsync. Revision Changes Path 1.149 +4 -2 src/sys/kern/vfs_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 11:58:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA12153 for cvs-all-outgoing; Wed, 15 Apr 1998 11:58:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA12147; Wed, 15 Apr 1998 18:58:58 GMT (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA19752; Wed, 15 Apr 1998 11:58:10 -0700 (PDT) Date: Wed, 15 Apr 1998 11:58:10 -0700 (PDT) Message-Id: <199804151858.LAA19752@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa npx.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/04/15 11:58:10 PDT Modified files: sys/i386/isa npx.c Log: Finish supporting compiling with `gcc -ansi'. Fix missing `volatile's in __asm() statements while I'm here. Revision Changes Path 1.59 +6 -6 src/sys/i386/isa/npx.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 12:56:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA24127 for cvs-all-outgoing; Wed, 15 Apr 1998 12:56:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA24010; Wed, 15 Apr 1998 19:56:09 GMT (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA19924; Wed, 15 Apr 1998 12:55:16 -0700 (PDT) Date: Wed, 15 Apr 1998 12:55:16 -0700 (PDT) Message-Id: <199804151955.MAA19924@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG Subject: cvs commit: src/sbin/ping ping.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/04/15 12:55:16 PDT Modified files: sbin/ping ping.c Log: If ping write fails with short packet count, the error message prints the two numbers backwards. PR: 6313 Reviewed by: phk Submitted by: Archie Cobbs Revision Changes Path 1.33 +2 -2 src/sbin/ping/ping.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 14:33:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA19919 for cvs-all-outgoing; Wed, 15 Apr 1998 14:33:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA19913; Wed, 15 Apr 1998 21:33:40 GMT (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA20552; Wed, 15 Apr 1998 14:32:51 -0700 (PDT) Date: Wed, 15 Apr 1998 14:32:51 -0700 (PDT) Message-Id: <199804152132.OAA20552@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/graphics/jpeg Makefile ports/graphics/jpeg/files md5 ports/graphics/jpeg/patches patch-aa ports/graphics/jpeg/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/04/15 14:32:51 PDT Modified files: graphics/jpeg Makefile graphics/jpeg/files md5 graphics/jpeg/patches patch-aa graphics/jpeg/pkg PLIST Log: Update to version 6b Revision Changes Path 1.15 +8 -6 ports/graphics/jpeg/Makefile 1.5 +1 -1 ports/graphics/jpeg/files/md5 1.7 +11 -146 ports/graphics/jpeg/patches/patch-aa 1.11 +9 -8 ports/graphics/jpeg/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 14:40:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA21238 for cvs-all-outgoing; Wed, 15 Apr 1998 14:40:29 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA21192; Wed, 15 Apr 1998 21:40:15 GMT (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA20617; Wed, 15 Apr 1998 14:39:25 -0700 (PDT) Date: Wed, 15 Apr 1998 14:39:25 -0700 (PDT) Message-Id: <199804152139.OAA20617@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/graphics/ImageMagick Makefile ports/graphics/tiff34 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/04/15 14:39:25 PDT Modified files: graphics/ImageMagick Makefile graphics/tiff34 Makefile Log: Use jpeg shared library version 8. Revision Changes Path 1.36 +2 -2 ports/graphics/ImageMagick/Makefile 1.7 +2 -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 Wed Apr 15 14:42:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA21677 for cvs-all-outgoing; Wed, 15 Apr 1998 14:42:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA21602; Wed, 15 Apr 1998 21:42:04 GMT (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA20653; Wed, 15 Apr 1998 14:41:14 -0700 (PDT) Date: Wed, 15 Apr 1998 14:41:14 -0700 (PDT) Message-Id: <199804152141.OAA20653@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/print/transfig Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/04/15 14:41:14 PDT Modified files: print/transfig Makefile Log: Use jpeg shared library version 8. Revision Changes Path 1.16 +2 -2 ports/print/transfig/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 15:19:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA00311 for cvs-all-outgoing; Wed, 15 Apr 1998 15:19:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA00304; Wed, 15 Apr 1998 22:19:14 GMT (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA21193; Wed, 15 Apr 1998 15:18:25 -0700 (PDT) Date: Wed, 15 Apr 1998 15:18:25 -0700 (PDT) Message-Id: <199804152218.PAA21193@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/arena Makefile ports/www/chimera2 Makefile ports/graphics/gimp-devel Makefile ports/graphics/hpscan Makefile ports/comms/hylafax Makefile ports/graphics/imlib Makefile ports/x11/kdebase Makefile ports/games/kdegames Makefile ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/04/15 15:18:25 PDT Modified files: www/arena Makefile www/chimera2 Makefile graphics/gimp-devel Makefile graphics/hpscan Makefile comms/hylafax Makefile graphics/imlib Makefile x11/kdebase Makefile games/kdegames Makefile graphics/kdegraphics Makefile x11/kdelibs Makefile audio/kdemultimedia Makefile net/kdenetwork Makefile misc/kdeutils Makefile news/knews Makefile comms/kpilot Makefile x11/tkstep80 Makefile x11/windowmaker Makefile editors/xemacs Makefile editors/xemacs20 Makefile graphics/xfig Makefile graphics/xpaint Makefile graphics/xv Makefile Log: Switch remaining ports to use jpeg lib version 8.0. Revision Changes Path 1.9 +2 -2 ports/www/arena/Makefile 1.14 +2 -2 ports/www/chimera2/Makefile 1.25 +2 -2 ports/graphics/gimp-devel/Makefile 1.10 +2 -2 ports/graphics/hpscan/Makefile 1.13 +2 -2 ports/comms/hylafax/Makefile 1.18 +2 -2 ports/graphics/imlib/Makefile 1.10 +2 -2 ports/x11/kdebase/Makefile 1.6 +2 -2 ports/games/kdegames/Makefile 1.3 +2 -2 ports/graphics/kdegraphics/Makefile 1.9 +2 -2 ports/x11/kdelibs/Makefile 1.6 +2 -2 ports/audio/kdemultimedia/Makefile 1.10 +2 -2 ports/net/kdenetwork/Makefile 1.8 +2 -2 ports/misc/kdeutils/Makefile 1.14 +2 -2 ports/news/knews/Makefile 1.3 +2 -2 ports/comms/kpilot/Makefile 1.7 +2 -2 ports/x11/tkstep80/Makefile 1.9 +2 -2 ports/x11/windowmaker/Makefile 1.32 +2 -2 ports/editors/xemacs/Makefile 1.12 +2 -2 ports/editors/xemacs20/Makefile 1.18 +2 -2 ports/graphics/xfig/Makefile 1.19 +2 -2 ports/graphics/xpaint/Makefile 1.17 +2 -2 ports/graphics/xv/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 16:14:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA12449 for cvs-all-outgoing; Wed, 15 Apr 1998 16:14:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA12442; Wed, 15 Apr 1998 23:14:28 GMT (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA21483; Wed, 15 Apr 1998 16:13:38 -0700 (PDT) Date: Wed, 15 Apr 1998 16:13:38 -0700 (PDT) Message-Id: <199804152313.QAA21483@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libncurses curses.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1998/04/15 16:13:37 PDT Modified files: lib/libncurses curses.h Log: Add some easy to implement XSI macros including attr_get Revision Changes Path 1.11 +10 -1 src/lib/libncurses/curses.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 16:15:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA12729 for cvs-all-outgoing; Wed, 15 Apr 1998 16:15:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA12724; Wed, 15 Apr 1998 23:15:28 GMT (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA21517; Wed, 15 Apr 1998 16:14:39 -0700 (PDT) Date: Wed, 15 Apr 1998 16:14:39 -0700 (PDT) Message-Id: <199804152314.QAA21517@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libncurses curses.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1998/04/15 16:14:39 PDT Modified files: (Branch: RELENG_2_2) lib/libncurses curses.h Log: MFC: XSI macros including attr_get Revision Changes Path 1.6.6.4 +10 -1 src/lib/libncurses/curses.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 17:26:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA06585 for cvs-all-outgoing; Wed, 15 Apr 1998 17:26:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA06548; Wed, 15 Apr 1998 17:26:28 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA05830; Wed, 15 Apr 1998 17:26:26 -0700 (PDT) Date: Wed, 15 Apr 1998 17:26:26 -0700 (PDT) Message-Id: <199804160026.RAA05830@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp Makefile auth.c bundle.c bundle.h ccp.c ccp.h chap.c command.c command.h datalink.c deflate.c fsm.c ipcp.c ipcp.h lcp.c lcp.h lqr.c main.c modem.c mp.c pap.c physical.c ppp.8 pred.c throughput.c throughput.h vjcomp.c vars.c ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/04/15 17:26:25 PDT Modified files: (Branch: MP) usr.sbin/ppp Makefile auth.c bundle.c bundle.h ccp.c ccp.h chap.c command.c command.h datalink.c deflate.c fsm.c ipcp.c ipcp.h lcp.c lcp.h lqr.c main.c modem.c mp.c pap.c physical.c ppp.8 pred.c throughput.c throughput.h vjcomp.c Removed files: (Branch: MP) usr.sbin/ppp vars.c vars.h Log: o Move the accept/deny/disable/enable globals either to the bundle (non-negotiated vars) or to their respective IPCP, LCP or CCP. o Enable rolling throughput statistics by default. o Remove the `display' command. These values now appear in `show bundle', `show ipcp', `show ccp' and `show lcp'. o Initialise auth name & key at bundle create time (oops). o Rename pppd-deflate (the id-24 hack) to deflate24. o Don't send both a REJ and a NAK to an IPCP or LCP REQ. Favour the REJ (already done at the CCP level). o Recurse in datalink_UpdateSet() when we change state, otherwise we end up setting no descriptors and getting jammed in the imminent select() instead of doing the dial/login/hangup. o Display our CHAP encryption method despite being built with DES. o Display VJ as not negotiated in ``show ipcp'' when necessary. Revision Changes Path 1.36.2.10 +2 -2 src/usr.sbin/ppp/Makefile 1.27.2.21 +2 -3 src/usr.sbin/ppp/auth.c 1.1.2.47 +26 -1 src/usr.sbin/ppp/Attic/bundle.c 1.1.2.29 +12 -1 src/usr.sbin/ppp/Attic/bundle.h 1.30.2.34 +33 -22 src/usr.sbin/ppp/ccp.c 1.14.2.17 +8 -2 src/usr.sbin/ppp/ccp.h 1.28.2.24 +3 -2 src/usr.sbin/ppp/chap.c 1.131.2.61 +260 -9 src/usr.sbin/ppp/command.c 1.12.2.11 +6 -21 src/usr.sbin/ppp/command.h 1.1.2.38 +13 -14 src/usr.sbin/ppp/Attic/datalink.c 1.6.4.11 +3 -4 src/usr.sbin/ppp/deflate.c 1.27.2.28 +19 -11 src/usr.sbin/ppp/fsm.c 1.50.2.37 +42 -28 src/usr.sbin/ppp/ipcp.c 1.18.2.22 +6 -3 src/usr.sbin/ppp/ipcp.h 1.55.2.42 +44 -17 src/usr.sbin/ppp/lcp.c 1.16.2.20 +7 -1 src/usr.sbin/ppp/lcp.h 1.22.2.23 +5 -13 src/usr.sbin/ppp/lqr.c 1.121.2.49 +2 -3 src/usr.sbin/ppp/main.c 1.77.2.50 +8 -7 src/usr.sbin/ppp/modem.c 1.1.2.4 +1 -4 src/usr.sbin/ppp/Attic/mp.c 1.20.2.25 +3 -2 src/usr.sbin/ppp/pap.c 1.1.2.25 +2 -5 src/usr.sbin/ppp/Attic/physical.c 1.97.2.16 +17 -20 src/usr.sbin/ppp/ppp.8 1.20.2.9 +2 -3 src/usr.sbin/ppp/pred.c 1.4.4.7 +8 -7 src/usr.sbin/ppp/throughput.c 1.2.4.4 +3 -2 src/usr.sbin/ppp/throughput.h 1.16.2.14 +6 -3 src/usr.sbin/ppp/vjcomp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 15 18:56:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA28270 for cvs-all-outgoing; Wed, 15 Apr 1998 18:56:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA28247; Wed, 15 Apr 1998 18:56:50 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA06054; Wed, 15 Apr 1998 18:56:49 -0700 (PDT) Date: Wed, 15 Apr 1998 18:56:49 -0700 (PDT) Message-Id: <199804160156.SAA06054@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/graphics/xpm Makefile ports/graphics/xpm/files md5 ports/graphics/xpm/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/04/15 18:56:48 PDT Modified files: graphics/xpm Makefile graphics/xpm/files md5 graphics/xpm/pkg PLIST Log: Upgrade to version 3.4k. Make myself MAINTAINER. Revision Changes Path 1.15 +5 -3 ports/graphics/xpm/Makefile 1.7 +1 -1 ports/graphics/xpm/files/md5 1.12 +4 -3 ports/graphics/xpm/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 Apr 15 18:57:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA28426 for cvs-all-outgoing; Wed, 15 Apr 1998 18:57:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA28399; Wed, 15 Apr 1998 18:57:17 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA06082; Wed, 15 Apr 1998 18:57:16 -0700 (PDT) Date: Wed, 15 Apr 1998 18:57:16 -0700 (PDT) Message-Id: <199804160157.SAA06082@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/mozilla/patches patch-ad Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/04/15 18:57:16 PDT Modified files: www/mozilla/patches patch-ad Log: Fix selection of static or shared library. I'd appreciate it if someone using lesstif could test this. Pointed out by: asami Revision Changes Path 1.3 +1 -11 ports/www/mozilla/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 Apr 15 19:25:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA02525 for cvs-all-outgoing; Wed, 15 Apr 1998 19:25:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA02516; Wed, 15 Apr 1998 19:25:09 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA06189; Wed, 15 Apr 1998 19:25:08 -0700 (PDT) Date: Wed, 15 Apr 1998 19:25:08 -0700 (PDT) Message-Id: <199804160225.TAA06189@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/graphics/ImageMagick/patches patch-ad Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/04/15 19:25:08 PDT Modified files: graphics/ImageMagick/patches patch-ad Log: Patch configure instead of configure.in Pointed out by: marcus@miami.edu, asami Revision Changes Path 1.6 +59 -17 ports/graphics/ImageMagick/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 Apr 15 20:31:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA15189 for cvs-all-outgoing; Wed, 15 Apr 1998 20:31:29 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA15184; Wed, 15 Apr 1998 20:31:28 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA06311; Wed, 15 Apr 1998 20:31:27 -0700 (PDT) Date: Wed, 15 Apr 1998 20:31:27 -0700 (PDT) Message-Id: <199804160331.UAA06311@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern vfs_subr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/04/15 20:31:27 PDT Modified files: sys/kern vfs_subr.c Log: When the softdep conversion took place, the periodic vfs_msync() from update got lost. This is responsible for ensuring that dirty mmap() pages get periodically written to disk. Without it, long time mmap's might not have their dirty pages written out at all of the system crashes or isn't cleanly shut down. This could be nasty if you've got a long-running writing via mmap(), dirty pages used to get written to disk within 30 seconds or so. Revision Changes Path 1.150 +2 -1 src/sys/kern/vfs_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 01:01:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA11716 for cvs-all-outgoing; Thu, 16 Apr 1998 01:01:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA11700; Thu, 16 Apr 1998 01:01:32 -0700 (PDT) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA06806; Thu, 16 Apr 1998 01:01:28 -0700 (PDT) Date: Thu, 16 Apr 1998 01:01:28 -0700 (PDT) Message-Id: <199804160801.BAA06806@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc make.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1998/04/16 01:01:28 PDT Modified files: etc make.conf Log: Add missing commented out MOTIF_STATIC example Revision Changes Path 1.61 +2 -1 src/etc/make.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 01:17:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA14228 for cvs-all-outgoing; Thu, 16 Apr 1998 01:17:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA14223; Thu, 16 Apr 1998 01:17:07 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA06860; Thu, 16 Apr 1998 01:17:03 -0700 (PDT) Date: Thu, 16 Apr 1998 01:17:03 -0700 (PDT) Message-Id: <199804160817.BAA06860@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/print/transfig/patches patch-ae Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/04/16 01:17:03 PDT Added files: print/transfig/patches patch-ae Log: Add a bugfix from the author. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 01:21:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA14921 for cvs-all-outgoing; Thu, 16 Apr 1998 01:21:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA14907; Thu, 16 Apr 1998 01:21:29 -0700 (PDT) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA06906; Thu, 16 Apr 1998 01:21:26 -0700 (PDT) Date: Thu, 16 Apr 1998 01:21:26 -0700 (PDT) Message-Id: <199804160821.BAA06906@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc make.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1998/04/16 01:21:26 PDT Modified files: etc make.conf Log: Add commented out common INSTALL and FORCE_PKG_REGISTER knobs Revision Changes Path 1.62 +8 -1 src/etc/make.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 01:53:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA19964 for cvs-all-outgoing; Thu, 16 Apr 1998 01:53:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA19956; Thu, 16 Apr 1998 01:53:53 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA07192; Thu, 16 Apr 1998 01:53:50 -0700 (PDT) Date: Thu, 16 Apr 1998 01:53:50 -0700 (PDT) Message-Id: <199804160853.BAA07192@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data/tutorials Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/16 01:53:49 PDT Modified files: data/tutorials Makefile Log: Add new variable DOCBOOK_ONLY. If set and not empty, the linuxdoc tutorials are not build. Revision Changes Path 1.13 +4 -1 www/data/tutorials/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 01:56:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA20823 for cvs-all-outgoing; Thu, 16 Apr 1998 01:56:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA20572; Thu, 16 Apr 1998 01:55:25 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id SAA04053; Thu, 16 Apr 1998 18:51:05 +1000 Date: Thu, 16 Apr 1998 18:51:05 +1000 From: Bruce Evans Message-Id: <199804160851.SAA04053@godzilla.zeta.org.au> To: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-sys@FreeBSD.ORG, peter@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern vfs_subr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Modified files: > sys/kern vfs_subr.c > Log: > When the softdep conversion took place, the periodic vfs_msync() from > update got lost. This is responsible for ensuring that dirty mmap() pages > get periodically written to disk. Without it, long time mmap's might not > have their dirty pages written out at all of the system crashes or isn't > cleanly shut down. This could be nasty if you've got a long-running > writing via mmap(), dirty pages used to get written to disk within 30 > seconds or so. sync_fsync() seems to be called too often for this (approx. every 3 seconds on an idle system). vfs_msync() seems to do a lot every time it is called. We also lost control of the update interval. We also lost waking the sync daemon in vm_pageout_scan(). There is still a wakeup on vfs_update_wakeup, but nothing sleeps on it any more. A better quick fix for most of this is probably to resurrect the update daemon and only call vfs_msync() from it. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 01:58:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA21168 for cvs-all-outgoing; Thu, 16 Apr 1998 01:58:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ocean.campus.luth.se (ocean.campus.luth.se [130.240.194.116]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA21149; Thu, 16 Apr 1998 01:58:44 -0700 (PDT) (envelope-from karpen@ocean.campus.luth.se) Received: (from karpen@localhost) by ocean.campus.luth.se (8.8.8/8.8.8) id KAA10479; Thu, 16 Apr 1998 10:53:08 +0200 (CEST) (envelope-from karpen) From: Mikael Karpberg Message-Id: <199804160853.KAA10479@ocean.campus.luth.se> Subject: Re: cvs commit: src/sys/i386/isa syscons.c In-Reply-To: <199804151200.FAA16764@freefall.freebsd.org> from "Dag-Erling C. Smxf8rgrav" at "Apr 15, 98 05:00:15 am" To: des@FreeBSD.ORG (Dag-Erling C. Sm\xf8rgrav) Date: Thu, 16 Apr 1998 10:53:08 +0200 (CEST) Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk According to Dag-Erling C. Sm\xf8rgrav: > des 1998/04/15 05:00:15 PDT > > Modified files: (Branch: 1.182.2) WHAT!? Did I miss something? This branch looks weird! > sys/i386/isa syscons.c /Mikael To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 02:33:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA24978 for cvs-all-outgoing; Thu, 16 Apr 1998 02:33:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA24973; Thu, 16 Apr 1998 02:33:18 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA07389; Thu, 16 Apr 1998 02:33:15 -0700 (PDT) Date: Thu, 16 Apr 1998 02:33:15 -0700 (PDT) Message-Id: <199804160933.CAA07389@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook eresources.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/16 02:33:15 PDT Modified files: handbook eresources.sgml Log: Add freebsd-advocacy and freebsd-tokenring Forgotten by: postmaster Revision Changes Path 1.42 +3 -1 doc/handbook/eresources.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 02:42:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA25934 for cvs-all-outgoing; Thu, 16 Apr 1998 02:42:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA25892; Thu, 16 Apr 1998 02:42:01 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA07434; Thu, 16 Apr 1998 02:41:57 -0700 (PDT) Date: Thu, 16 Apr 1998 02:41:57 -0700 (PDT) Message-Id: <199804160941.CAA07434@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa syscons.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/04/16 02:41:57 PDT Modified files: sys/i386/isa syscons.c Log: Swapped "should we just return" and "should we stop the screensaver" in scrn_timer() to avoid deadlock with graphical screensavers. Revision Changes Path 1.259 +11 -8 src/sys/i386/isa/syscons.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 03:36:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA03979 for cvs-all-outgoing; Thu, 16 Apr 1998 03:36:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA03935; Thu, 16 Apr 1998 03:35:56 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA07923; Thu, 16 Apr 1998 03:35:52 -0700 (PDT) Date: Thu, 16 Apr 1998 03:35:52 -0700 (PDT) Message-Id: <199804161035.DAA07923@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/scsi st.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/04/16 03:35:51 PDT Modified files: sys/scsi st.c Log: fix an obvious broken BOUNCE_BUFFER case. Revision Changes Path 1.86 +9 -1 src/sys/scsi/st.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 03:39:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA04448 for cvs-all-outgoing; Thu, 16 Apr 1998 03:39:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA04443; Thu, 16 Apr 1998 03:39:06 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA07960; Thu, 16 Apr 1998 03:39:02 -0700 (PDT) Date: Thu, 16 Apr 1998 03:39:02 -0700 (PDT) Message-Id: <199804161039.DAA07960@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data press.sgml Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/16 03:39:01 PDT Modified files: data Makefile Added files: data press.sgml Log: FreeBSD in the Press Revision Changes Path 1.27 +2 -2 www/data/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 04:15:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA11472 for cvs-all-outgoing; Thu, 16 Apr 1998 04:15:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA11464; Thu, 16 Apr 1998 04:15:28 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA08056; Thu, 16 Apr 1998 04:15:24 -0700 (PDT) Date: Thu, 16 Apr 1998 04:15:24 -0700 (PDT) Message-Id: <199804161115.EAA08056@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/scsi scsi_base.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/04/16 04:15:24 PDT Modified files: sys/scsi scsi_base.c Log: Attempt to get bounce_buffers working again for per-process kernel stack data targets. At least st0 works for me again.... Also, scsi_scsi_cmd() looks like it's been exiting without a biodone() on an attached buffer in a number of error cases, leading to locked buffers. Revision Changes Path 1.55 +40 -10 src/sys/scsi/scsi_base.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 04:53:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA16857 for cvs-all-outgoing; Thu, 16 Apr 1998 04:53:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA16852; Thu, 16 Apr 1998 04:53:07 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA08185; Thu, 16 Apr 1998 04:53:03 -0700 (PDT) Date: Thu, 16 Apr 1998 04:53:03 -0700 (PDT) Message-Id: <199804161153.EAA08185@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/textproc/rman Makefile ports/textproc/rman/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/04/16 04:53:02 PDT Modified files: textproc/rman Makefile textproc/rman/files md5 Log: Upgrade to 3.0.5. Revision Changes Path 1.18 +3 -3 ports/textproc/rman/Makefile 1.8 +1 -1 ports/textproc/rman/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 05:17:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA20295 for cvs-all-outgoing; Thu, 16 Apr 1998 05:17:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA20289; Thu, 16 Apr 1998 05:17:18 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA08765; Thu, 16 Apr 1998 05:17:14 -0700 (PDT) Date: Thu, 16 Apr 1998 05:17:14 -0700 (PDT) Message-Id: <199804161217.FAA08765@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data docs.sgml publish.sgml web.atoz Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/16 05:17:14 PDT Modified files: data docs.sgml publish.sgml web.atoz Log: Add links to the new 'FreeBSD in the Press' page. Revision Changes Path 1.39 +5 -2 www/data/docs.sgml 1.7 +4 -3 www/data/publish.sgml 1.14 +4 -1 www/data/web.atoz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 05:28:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA21608 for cvs-all-outgoing; Thu, 16 Apr 1998 05:28:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA21603; Thu, 16 Apr 1998 05:28:36 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA09580; Thu, 16 Apr 1998 05:28:32 -0700 (PDT) Date: Thu, 16 Apr 1998 05:28:32 -0700 (PDT) Message-Id: <199804161228.FAA09580@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/scsi ch.c worm.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/04/16 05:28:31 PDT Modified files: sys/scsi ch.c worm.c Log: Attempt to fix BOUNCE_BUFFERS. I cannot test these drivers, but they seem to compile OK with the bounce buffer mods. I have only visually checked for missing bounce buffer support, I could have missed some. Revision Changes Path 1.44 +30 -1 src/sys/scsi/ch.c 1.55 +24 -1 src/sys/scsi/worm.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 05:51:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA26450 for cvs-all-outgoing; Thu, 16 Apr 1998 05:51:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA26445; Thu, 16 Apr 1998 05:51:50 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA10644; Thu, 16 Apr 1998 05:51:45 -0700 (PDT) Date: Thu, 16 Apr 1998 05:51:45 -0700 (PDT) Message-Id: <199804161251.FAA10644@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/16 05:51:45 PDT Modified files: data Makefile Log: Add the new variable ENGLISH_ONLY. If set and not empty, the non-english web pages are not build. This is basically a debug option. Most committers does not touch the japanese documentation, so they don't need to test the japanese files. Revision Changes Path 1.28 +5 -2 www/data/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 06:04:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA28414 for cvs-all-outgoing; Thu, 16 Apr 1998 06:04:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au (spinner.netplex.com.au [202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA28124; Thu, 16 Apr 1998 06:02:11 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.8.8/8.8.8/Spinner) with ESMTP id VAA16055; Thu, 16 Apr 1998 21:00:30 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199804161300.VAA16055@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: Bruce Evans cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-sys@FreeBSD.ORG, dyson@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern vfs_subr.c In-reply-to: Your message of "Thu, 16 Apr 1998 18:51:05 +1000." <199804160851.SAA04053@godzilla.zeta.org.au> Date: Thu, 16 Apr 1998 21:00:29 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Bruce Evans wrote: > > Modified files: > > sys/kern vfs_subr.c > > Log: > > When the softdep conversion took place, the periodic vfs_msync() from > > update got lost. This is responsible for ensuring that dirty mmap() pages > > get periodically written to disk. Without it, long time mmap's might not > > have their dirty pages written out at all of the system crashes or isn't > > cleanly shut down. This could be nasty if you've got a long-running > > writing via mmap(), dirty pages used to get written to disk within 30 > > seconds or so. > > sync_fsync() seems to be called too often for this (approx. every 3 > seconds on an idle system). Well, from what I could see, it's called however often it needs in order to sync each filesystem one-at-a-time over a 30 second period. The old update process called vfs_msync() n times (n = number of mountpoints) every 30 seconds. The way I understand things, it's now being called at exactly the same rate overall but at a more even spread. > vfs_msync() seems to do a lot every time it is called. Yes.. It walks through the vnodes attached to a given filesystem. From the look of it, there could be some optimizations there.. We could eliminate uninteresting vnodes before wasting time doing VOP's, getting simple_locks, etc. Index: vfs_subr.c =================================================================== RCS file: /home/ncvs/src/sys/kern/vfs_subr.c,v retrieving revision 1.150 diff -u -2 -r1.150 vfs_subr.c --- vfs_subr.c 1998/04/16 03:31:26 1.150 +++ vfs_subr.c 1998/04/16 12:57:05 @@ -2405,4 +2405,5 @@ vfs_msync(struct mount *mp, int flags) { struct vnode *vp, *nvp; + struct vm_object *obj; int anyio, tries; @@ -2417,4 +2418,9 @@ goto loop; } + + /* skip vnodes that are uninteresting before locking */ + obj = vp->v_object; + if (obj == NULL || (obj->flags & OBJ_MIGHTBEDIRTY) == 0) + continue; if ((vp->v_flag & VXLOCK) || With a few thousand vnodes, all those VOP_ISLOCKED() and simple_lock()/unlock calls have got to add up. It should be harmless to test these variables outside of any critical section protection. > We also lost control of the update interval. Yes, but it is compile-time tweakable, so those with a desperate need to tweak it can still do so, although on a power-of-two basis. > We also lost waking the sync daemon in vm_pageout_scan(). There is > still a wakeup on vfs_update_wakeup, but nothing sleeps on it any > more. > > A better quick fix for most of this is probably to resurrect the > update daemon and only call vfs_msync() from it. I don't think there's much gain to be had overall.. The old update called sync() every 30 seconds. sync does: simple_lock(&mountlist_slock); for (mp = mountlist.cqh_first; mp != (void *)&mountlist; mp = nmp) { [..] vfs_msync(mp, MNT_NOWAIT); [..] } simple_unlock(&mountlist_slock); So, if you have 10 filesystems, you get 20 vfs_msync's per minute under update, but you get a whole glut of disk writes in one major hit. Under syncer, you get 1 vfs_msync() every 3 seconds, stepping through each filesystem one at a time. You still have 20 vfs_msync's per minute. > Bruce > Cheers, -Peter -- Peter Wemm Netplex Consulting To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 06:38:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA04643 for cvs-all-outgoing; Thu, 16 Apr 1998 06:38:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA04545; Thu, 16 Apr 1998 06:37:58 -0700 (PDT) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA28047; Thu, 16 Apr 1998 06:37:51 -0700 (PDT) Date: Thu, 16 Apr 1998 06:37:51 -0700 (PDT) Message-Id: <199804161337.GAA28047@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data/cgi ftp.mirrors Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1998/04/16 06:37:51 PDT Modified files: data/cgi ftp.mirrors Log: Add ftp4.ru Revision Changes Path 1.5 +1 -0 www/data/cgi/ftp.mirrors To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 06:46:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA06468 for cvs-all-outgoing; Thu, 16 Apr 1998 06:46:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA06457; Thu, 16 Apr 1998 06:46:22 -0700 (PDT) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA04353; Thu, 16 Apr 1998 06:46:17 -0700 (PDT) Date: Thu, 16 Apr 1998 06:46:17 -0700 (PDT) Message-Id: <199804161346.GAA04353@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook mirrors.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1998/04/16 06:46:17 PDT Modified files: handbook mirrors.sgml Log: Add ftp4.ru Revision Changes Path 1.83 +4 -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 Thu Apr 16 06:55:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA08704 for cvs-all-outgoing; Thu, 16 Apr 1998 06:55:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA08661; Thu, 16 Apr 1998 06:55:19 -0700 (PDT) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA04410; Thu, 16 Apr 1998 06:55:14 -0700 (PDT) Date: Thu, 16 Apr 1998 06:55:14 -0700 (PDT) Message-Id: <199804161355.GAA04410@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall menus.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1998/04/16 06:55:14 PDT Modified files: release/sysinstall menus.c Log: Add ftp4.ru Revision Changes Path 1.164 +3 -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 Thu Apr 16 06:58:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA09970 for cvs-all-outgoing; Thu, 16 Apr 1998 06:58:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA09928; Thu, 16 Apr 1998 06:58:28 -0700 (PDT) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA04444; Thu, 16 Apr 1998 06:58:20 -0700 (PDT) Date: Thu, 16 Apr 1998 06:58:20 -0700 (PDT) Message-Id: <199804161358.GAA04444@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-release@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall menus.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1998/04/16 06:58:19 PDT Modified files: (Branch: RELENG_2_2) release/sysinstall menus.c Log: MFC: add ftp4.ru Revision Changes Path 1.89.2.72 +3 -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 Thu Apr 16 07:00:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA10248 for cvs-all-outgoing; Thu, 16 Apr 1998 07:00:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA09247; Thu, 16 Apr 1998 06:56:42 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id GAA03521; Thu, 16 Apr 1998 06:55:58 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Peter Wemm cc: Bruce Evans , cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-sys@FreeBSD.ORG, dyson@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern vfs_subr.c In-reply-to: Your message of "Thu, 16 Apr 1998 21:00:29 +0800." <199804161300.VAA16055@spinner.netplex.com.au> Date: Thu, 16 Apr 1998 06:55:58 -0700 Message-ID: <3518.892734958@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > > We also lost control of the update interval. > > Yes, but it is compile-time tweakable, so those with a desperate need to > tweak it can still do so, although on a power-of-two basis. I think it'd still be nice to have it be sysctl tweakable. If nothing else, it would give you a quick and easy way of saying "Hey! Stop waking up the suspended drive in my laptop, dammit!" without having to go recompile the kernel. Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 07:05:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA11079 for cvs-all-outgoing; Thu, 16 Apr 1998 07:05:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA11071; Thu, 16 Apr 1998 07:05:14 -0700 (PDT) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA04497; Thu, 16 Apr 1998 07:05:10 -0700 (PDT) Date: Thu, 16 Apr 1998 07:05:10 -0700 (PDT) Message-Id: <199804161405.HAA04497@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data/cgi ftp.mirrors Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1998/04/16 07:05:09 PDT Modified files: data/cgi ftp.mirrors Log: ftp1.ru -> ftp.ru Revision Changes Path 1.6 +1 -1 www/data/cgi/ftp.mirrors To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 07:10:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA12032 for cvs-all-outgoing; Thu, 16 Apr 1998 07:10:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA12023; Thu, 16 Apr 1998 07:10:28 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA04536; Thu, 16 Apr 1998 07:10:23 -0700 (PDT) Date: Thu, 16 Apr 1998 07:10:23 -0700 (PDT) Message-Id: <199804161410.HAA04536@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data/cgi mid.cgi Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/16 07:10:23 PDT Modified files: data/cgi mid.cgi Log: Fix malformed header from script. Enable redirection to getmsg.cgi if only one E-Mail was found. Revision Changes Path 1.4 +7 -6 www/data/cgi/mid.cgi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 07:37:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA15312 for cvs-all-outgoing; Thu, 16 Apr 1998 07:37:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA15307; Thu, 16 Apr 1998 07:37:24 -0700 (PDT) (envelope-from joerg@FreeBSD.org) From: Joerg Wunsch Received: (from joerg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA04621; Thu, 16 Apr 1998 07:37:19 -0700 (PDT) Date: Thu, 16 Apr 1998 07:37:19 -0700 (PDT) Message-Id: <199804161437.HAA04621@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc hosts Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk joerg 1998/04/16 07:37:19 PDT Modified files: etc hosts Log: Add `myname.my.domain' as another alias for `localhost'. We set this as the initial generic hostname if the user didn't setup any NIC, but failure to resolve this name results in XF86Setup not being able to run. Reported by: Lutz Zienert Revision Changes Path 1.9 +2 -2 src/etc/hosts To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 07:48:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA17666 for cvs-all-outgoing; Thu, 16 Apr 1998 07:48:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au (spinner.netplex.com.au [202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA16491; Thu, 16 Apr 1998 07:45:11 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.8.8/8.8.8/Spinner) with ESMTP id WAA17178; Thu, 16 Apr 1998 22:42:15 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199804161442.WAA17178@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: "Jordan K. Hubbard" cc: Bruce Evans , cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-sys@FreeBSD.ORG, dyson@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern vfs_subr.c In-reply-to: Your message of "Thu, 16 Apr 1998 06:55:58 MST." <3518.892734958@time.cdrom.com> Date: Thu, 16 Apr 1998 22:42:14 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Jordan K. Hubbard" wrote: > > > We also lost control of the update interval. > > > > Yes, but it is compile-time tweakable, so those with a desperate need to > > tweak it can still do so, although on a power-of-two basis. > > I think it'd still be nice to have it be sysctl tweakable. If nothing > else, it would give you a quick and easy way of saying "Hey! Stop > waking up the suspended drive in my laptop, dammit!" without having > to go recompile the kernel. Given the present structures, it's not trivial or it'd have been done by now. The problem is that there's a compiled-in power-of-two sized table that represents work to do in 'n' seconds. Even if this were dynamically reallocated and the filesystem sync period was changeable, one would very quickly mess up the interleave of filesystems. Perhaps it'd be better to just have two syncer methods. One that does the interleaving, and the other that does a 'sync the whole damn universe every seconds'. One could switch from the gradual to the all-at-once method but there'd be no point going back. softdep will not run in that mode (not that softdep runs well at present in freebsd anyway...). > Jordan > Cheers, -Peter -- Peter Wemm Netplex Consulting To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 09:31:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA10344 for cvs-all-outgoing; Thu, 16 Apr 1998 09:31:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA10337; Thu, 16 Apr 1998 16:31:43 GMT (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA05073; Thu, 16 Apr 1998 09:31:37 -0700 (PDT) Date: Thu, 16 Apr 1998 09:31:37 -0700 (PDT) Message-Id: <199804161631.JAA05073@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/i386 trap.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/04/16 09:31:37 PDT Modified files: sys/pc98/i386 trap.c Log: Sync with sys/i386/i386/trap.c revision 1.126. Revision Changes Path 1.49 +4 -4 src/sys/pc98/i386/trap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 09:32:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA10574 for cvs-all-outgoing; Thu, 16 Apr 1998 09:32:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA10568; Thu, 16 Apr 1998 16:32:22 GMT (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA05103; Thu, 16 Apr 1998 09:32:16 -0700 (PDT) Date: Thu, 16 Apr 1998 09:32:16 -0700 (PDT) Message-Id: <199804161632.JAA05103@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 if_ed.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/04/16 09:32:16 PDT Modified files: sys/pc98/pc98 if_ed.c Log: Sync with sys/i386/isa/if_ed.c revision 1.139. Revision Changes Path 1.46 +8 -8 src/sys/pc98/pc98/if_ed.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 09:32:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA10717 for cvs-all-outgoing; Thu, 16 Apr 1998 09:32:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA10712; Thu, 16 Apr 1998 16:32:56 GMT (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA05134; Thu, 16 Apr 1998 09:32:50 -0700 (PDT) Date: Thu, 16 Apr 1998 09:32:50 -0700 (PDT) Message-Id: <199804161632.JAA05134@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 lpt.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/04/16 09:32:50 PDT Modified files: sys/pc98/pc98 lpt.c Log: Sync with sys/i386/isa/lpt.c revision 1.68. Revision Changes Path 1.19 +4 -4 src/sys/pc98/pc98/lpt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 09:33:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA10845 for cvs-all-outgoing; Thu, 16 Apr 1998 09:33:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA10839; Thu, 16 Apr 1998 16:33:27 GMT (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA05164; Thu, 16 Apr 1998 09:33:21 -0700 (PDT) Date: Thu, 16 Apr 1998 09:33:21 -0700 (PDT) Message-Id: <199804161633.JAA05164@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 pcaudio.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/04/16 09:33:21 PDT Modified files: sys/pc98/pc98 pcaudio.c Log: Sync with sys/i386/isa/pcaudio.c revision 1.40. Revision Changes Path 1.15 +2 -2 src/sys/pc98/pc98/pcaudio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 09:34:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA11108 for cvs-all-outgoing; Thu, 16 Apr 1998 09:34:16 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA11101; Thu, 16 Apr 1998 16:34:15 GMT (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA05195; Thu, 16 Apr 1998 09:34:09 -0700 (PDT) Date: Thu, 16 Apr 1998 09:34:09 -0700 (PDT) Message-Id: <199804161634.JAA05195@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf Makefile.pc98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/04/16 09:34:09 PDT Modified files: sys/pc98/conf Makefile.pc98 Log: Sync with sys/i386/conf/Makefile.i386 revision 1.108. Revision Changes Path 1.27 +2 -2 src/sys/pc98/conf/Makefile.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 09:34:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA11262 for cvs-all-outgoing; Thu, 16 Apr 1998 09:34:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA11255; Thu, 16 Apr 1998 16:34:52 GMT (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA05225; Thu, 16 Apr 1998 09:34:46 -0700 (PDT) Date: Thu, 16 Apr 1998 09:34:46 -0700 (PDT) Message-Id: <199804161634.JAA05225@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 npx.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/04/16 09:34:46 PDT Modified files: sys/pc98/pc98 npx.c Log: Sync with sys/i386/isa/npx.c revision 1.59. Revision Changes Path 1.35 +6 -6 src/sys/pc98/pc98/npx.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 09:35:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA11434 for cvs-all-outgoing; Thu, 16 Apr 1998 09:35:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA11425; Thu, 16 Apr 1998 16:35:31 GMT (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA05258; Thu, 16 Apr 1998 09:35:25 -0700 (PDT) Date: Thu, 16 Apr 1998 09:35:25 -0700 (PDT) Message-Id: <199804161635.JAA05258@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 syscons.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/04/16 09:35:25 PDT Modified files: sys/pc98/pc98 syscons.c Log: Sync with sys/i386/isa/syscons.c revision 1.259. Revision Changes Path 1.83 +11 -8 src/sys/pc98/pc98/syscons.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 11:31:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA03693 for cvs-all-outgoing; Thu, 16 Apr 1998 11:31:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA03686; Thu, 16 Apr 1998 18:31:03 GMT (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA05600; Thu, 16 Apr 1998 11:30:57 -0700 (PDT) Date: Thu, 16 Apr 1998 11:30:57 -0700 (PDT) Message-Id: <199804161830.LAA05600@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp command.c filter.c filter.h ip.c ppp.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/04/16 11:30:56 PDT Modified files: (Branch: MP) usr.sbin/ppp command.c filter.c filter.h ip.c ppp.8 Log: o Understand ``syn'' and ``finrst'' in filter rules. This is particularily useful when creating dial filters. Original work by: Junichi SATOH (junichi@astec.co.jp) o Parse a filter IP of ``0.0.0.0'' as having a width of 0, not 32. o Correct "set filter" usage message. o Warn about bad filter names. o Expand and correct a number of the man page sections. Revision Changes Path 1.131.2.62 +5 -3 src/usr.sbin/ppp/command.c 1.22.2.16 +36 -27 src/usr.sbin/ppp/filter.c 1.11.2.5 +4 -2 src/usr.sbin/ppp/filter.h 1.38.2.22 +15 -12 src/usr.sbin/ppp/ip.c 1.97.2.17 +274 -106 src/usr.sbin/ppp/ppp.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 14:20:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA06686 for cvs-all-outgoing; Thu, 16 Apr 1998 14:20:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA06453; Thu, 16 Apr 1998 21:19:27 GMT (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA05926; Thu, 16 Apr 1998 14:19:07 -0700 (PDT) Date: Thu, 16 Apr 1998 14:19:07 -0700 (PDT) Message-Id: <199804162119.OAA05926@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/04/16 14:19:07 PDT Modified files: (Branch: MP) usr.sbin/ppp bundle.c Log: o FsmDown() and FsmClose() any NCP that's still around before going into phase DEAD when the last physical link disappears. o Don't go to phase TERMINATE if we're already phase DEAD. Revision Changes Path 1.1.2.48 +8 -2 src/usr.sbin/ppp/Attic/bundle.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 14:50:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA17117 for cvs-all-outgoing; Thu, 16 Apr 1998 14:50:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from peedub.muc.de (newpc.muc.ditec.de [194.120.126.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA17045; Thu, 16 Apr 1998 21:50:42 GMT (envelope-from garyj@peedub.muc.de) Received: from peedub.muc.de (localhost [127.0.0.1]) by peedub.muc.de (8.8.8/8.6.9) with ESMTP id XAA08223; Thu, 16 Apr 1998 23:51:07 +0200 (CEST) Message-Id: <199804162151.XAA08223@peedub.muc.de> X-Mailer: exmh version 2.0.1 12/23/97 To: "Justin M. Seger" cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/www/mozilla/patches patch-ad Reply-To: Gary Jennejohn In-reply-to: Your message of "Wed, 15 Apr 1998 18:57:16 PDT." <199804160157.SAA06082@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 16 Apr 1998 23:51:07 +0200 From: Gary Jennejohn Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Justin M. Seger" writes: >jseger 1998/04/15 18:57:16 PDT > > Modified files: > www/mozilla/patches patch-ad > Log: > Fix selection of static or shared library. I'd appreciate it if someone > using lesstif could test this. > > Pointed out by: asami > > Revision Changes Path > 1.3 +1 -11 ports/www/mozilla/patches/patch-ad > fails miserably (with lesstif); doesn't find libXm in /usr/X11R6/lib. MOTIFLIB _is_ defined in /etc/make.conf. --- Gary Jennejohn Home - garyj@muc.de Work - garyj@fkr.dec.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 14:58:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA19836 for cvs-all-outgoing; Thu, 16 Apr 1998 14:58:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA19800; Thu, 16 Apr 1998 21:58:35 GMT (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA06012; Thu, 16 Apr 1998 14:58:28 -0700 (PDT) Date: Thu, 16 Apr 1998 14:58:28 -0700 (PDT) Message-Id: <199804162158.OAA06012@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT avail Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/04/16 14:58:27 PDT Modified files: . avail Log: Add Peter Hawkins to committers. Welcome aboard, Peter! Erm. I think that's enough committers for right now though - we're growing too fast, ack! :) Revision Changes Path 1.30 +2 -2 CVSROOT/avail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 15:12:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA23725 for cvs-all-outgoing; Thu, 16 Apr 1998 15:12:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA23616; Thu, 16 Apr 1998 22:11:57 GMT (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA06080; Thu, 16 Apr 1998 15:11:47 -0700 (PDT) Date: Thu, 16 Apr 1998 15:11:47 -0700 (PDT) Message-Id: <199804162211.PAA06080@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/04/16 15:11:47 PDT Modified files: (Branch: MP) usr.sbin/ppp bundle.c Log: Stop the idle timer if the timeout is disabled while the timer is active. Revision Changes Path 1.1.2.49 +11 -10 src/usr.sbin/ppp/Attic/bundle.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 15:48:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA03094 for cvs-all-outgoing; Thu, 16 Apr 1998 15:48:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA02923; Thu, 16 Apr 1998 22:47:01 GMT (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-52.ix.netcom.com [207.93.143.180]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id PAA01584; Thu, 16 Apr 1998 15:46:56 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id PAA10665; Thu, 16 Apr 1998 15:46:33 -0700 (PDT) Date: Thu, 16 Apr 1998 15:46:33 -0700 (PDT) Message-Id: <199804162246.PAA10665@silvia.HIP.Berkeley.EDU> To: ache@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG In-reply-to: <199804160801.BAA06806@freefall.freebsd.org> (ache@FreeBSD.ORG) Subject: Re: cvs commit: src/etc make.conf From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Add missing commented out MOTIF_STATIC example That part of the file now looks like this: === # If you have Motif on your system, uncomment this. # #HAVE_MOTIF= yes #MOTIF_STATIC= yes # # If the default location of the Motif library (specified below) is NOT # appropriate for you, uncomment this and change it to the correct value. # If your motif is in ${X11BASE}/lib, you don't need to touch this line. # #MOTIFLIB= -L${X11BASE}/lib -lXm === (1) There is no description of MOTIF_STATIC. People will most likely misunderstand the one above ("If you have Motif...") to mean both lines and end up linking everything with libXm.a. (2) The MOTIFLIB description is not appropriate anymore, now that MOTIF_STATIC is given as an example here. MOTIF_STATIC was never intended for use by ordinary users. It is only used for package-builders. Do we add every possible variable in make.conf (if so, I have a few dozen more from bsd.port.mk) or only have the common cases in here? Maybe it's time for /etc/make.conf.ports? (No I'm not kidding.) Satoshi P.S. I have seen half a dozen people post their make.conf with MOTIFLIB uncommented (with the value unchanged) along with HAVE_MOTIF. Someone please tell me how I can change the description (the one with the big "NOT") to make it clearer that they don't need to change it unless their Motif destribution puts the stuff in a totally weird place. (Is there some way to highlight text in ASCII or make the editor jump the cursor to that "NOT" when they try to edit the "#"? ;) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 16:07:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA06612 for cvs-all-outgoing; Thu, 16 Apr 1998 16:07:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA06530; Thu, 16 Apr 1998 23:07:14 GMT (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA06217; Thu, 16 Apr 1998 16:06:54 -0700 (PDT) Date: Thu, 16 Apr 1998 16:06:54 -0700 (PDT) Message-Id: <199804162306.QAA06217@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/04/16 16:06:54 PDT Modified files: (Branch: MP) usr.sbin/ppp bundle.c Log: Fix the worst sort of bug - a SEGV in a diagnostic ! Also, use sizeof sockaddr_in instead of 16 when writing to the routing socket. Revision Changes Path 1.1.2.50 +9 -9 src/usr.sbin/ppp/Attic/bundle.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 16:11:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA07797 for cvs-all-outgoing; Thu, 16 Apr 1998 16:11:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from lsd.relcom.eu.net (lsd.relcom.eu.net [193.125.27.73]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA07530; Thu, 16 Apr 1998 23:10:34 GMT (envelope-from ache@lsd.relcom.eu.net) Received: (from ache@localhost) by lsd.relcom.eu.net (8.8.8/8.8.8) id DAA07105; Fri, 17 Apr 1998 03:10:22 +0400 (MSD) (envelope-from ache) Message-ID: <19980417031022.02794@nagual.pp.ru> Date: Fri, 17 Apr 1998 03:10:22 +0400 From: =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= To: Satoshi Asami Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: Re: cvs commit: src/etc make.conf Mail-Followup-To: Satoshi Asami , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG References: <199804160801.BAA06806@freefall.freebsd.org> <199804162246.PAA10665@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <199804162246.PAA10665@silvia.HIP.Berkeley.EDU>; from asami@FreeBSD.ORG on Thu, Apr 16, 1998 at 03:46:33PM -0700 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Thu, Apr 16, 1998 at 03:46:33PM -0700, Satoshi Asami wrote: > (1) There is no description of MOTIF_STATIC. People will most likely > misunderstand the one above ("If you have Motif...") to mean both > lines and end up linking everything with libXm.a. Please add proper description in good English, I am not able to do it. > (2) The MOTIFLIB description is not appropriate anymore, now that > MOTIF_STATIC is given as an example here. It should be changed too, I agree. > MOTIF_STATIC was never intended for use by ordinary users. It is only > used for package-builders. Do we add every possible variable in > make.conf (if so, I have a few dozen more from bsd.port.mk) or only > have the common cases in here? I think system should be comfortable for developers first and next for ordinary users. > Maybe it's time for /etc/make.conf.ports? (No I'm not kidding.) Yes, good idea. -- Andrey A. Chernov http://www.nagual.pp.ru/~ache/ MTH/SH/HE S-- W-- N+ PEC>+ D A a++ C G>+ QH+(++) 666+>++ Y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 16:45:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA17689 for cvs-all-outgoing; Thu, 16 Apr 1998 16:45:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ns1.yes.no (ns1.yes.no [195.119.24.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA17681 for ; Thu, 16 Apr 1998 23:45:27 GMT (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [194.198.43.36]) by ns1.yes.no (8.8.7/8.8.7) with ESMTP id XAA01297; Thu, 16 Apr 1998 23:44:56 GMT Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id BAA05678; Fri, 17 Apr 1998 01:44:55 +0200 (MET DST) Message-ID: <19980417014455.02651@follo.net> Date: Fri, 17 Apr 1998 01:44:55 +0200 From: Eivind Eklund To: Peter Hawkins , cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail References: <199804162158.OAA06012@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <199804162158.OAA06012@freefall.freebsd.org>; from Jordan K. Hubbard on Thu, Apr 16, 1998 at 02:58:28PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Thu, Apr 16, 1998 at 02:58:28PM -0700, Jordan K. Hubbard wrote: > jkh 1998/04/16 14:58:27 PDT > > Modified files: > . avail > Log: > Add Peter Hawkins to committers. Welcome aboard, > Peter! Erm. I think that's enough committers for right now though - we're > growing too fast, ack! :) Welcome aboard, Peter, and thanks for going with FreeBSD Spacetours. Your CVS-meister will be Peter Wemm - take any repository-related problems with him. Patching the hull yourself (AKA writing directly to the repository) is strictly not allowed without prior permission; this include all cases. In case of emergency, Cc: to root@freebsd.org. Be aware of the severe implications of running a blow-torch ('cvs import') in the ship - it might sometimes be necessary, but we really recommend using Joergs new blowtorch with safety features (the 'easy-import' script on freefall). Besides Peter Wemm, there are other officers you'll get to know: Satoshi Asami A lean, mean ports-machine. This guy owns the docking machinery (bsd.port.mk) which you are not allowed to touch without permission, and have ultimate authority over all modifcations to docking setups (ports). Touch them when he's declared a hands-off, and you'll get your commit privileges suspended faster than you can say 'ports-freeze'. Jordan K Hubbard The usual takeoff-manager (release-engineer). When you forget to merge good, wholesome changes from -current (HEAD) to -stable (at the moment RELENG_2_2 - not some magic number), it is Jordan who is most likely to get the extra work. So remember to merge - he's overworked enough as it is. Jordan is also the guy who is constantly forgetting to set up forward files for new committers, so you'd probably be well of logging into hub.freebsd.org and setting /var/forward/tepish to point to where you want your mail to land. There's probably some letters from your sweetheart waiting for you on hub already.. Bruce Evans Perfection police. When you do a commit that could have been done better, Bruce will be there. Even though it can be extremely annoying to be reminded of your own imperfections at all the in-opportune moments, Bruce is a good guy too. Garret Wollman If you speak some obscure network internals, and you think FreeBSD has a lithp somewhere, then Garret is likely a good person to know about - he's responsible for the overall state of FreeBSD networking internals. ... and some important Steve Price Steve is unofficial maintainer of /can - oh, typo - /bin, I mean. If you're going to do something large to /bin (like merging everything from NetBSD or OpenBSD), you might be will of coordinating with Steve. He's also Problem Report-meister. Brian Somers Official maintainer of /usr/bin/ppp and LPD. He's ten times as efficient as god on changing PPP, so if you intend to help out there, be prepared to feel quite inadequate as he end up doing everything. (Anybody that feel left out - speak up. I've just included the people that I thought were likely to need their roles explained - no significance attached). For your convenience, we repeat some of the magic tricks of using CVS with SSH below: 1. Always use ssh public key authentication with agents to work against freefall. This is (a) secure and (b) extremely convenient. Details below. 2. Set your CVS_RSH=ssh 3. Store your local CVS-repository in /home/ncvs, as freefall hasn't got a /home/FreeBSD alias, so you can't store the repository anywhere intuitive. (Well, OpenBSD doesn't implement /home/OpenBSD, either - they're worse...) 4. Set alias lcvs='cvs -d /home/ncvs' 5. Set alias fcvs='cvs -d thepish@freefall.freebsd.org:/home/ncvs' Now, use lcvs to checkout/diff/update locally, and when you want to commit to freefall, use fcvs commit in the same directory. Remember: Doing a 'lcvs diff' before you commit is usually a good idea. 6. (Vary depending on preferences only) echo 'diff -u' > ~/.cvsrc' echo 'update -Pd' >> ~/.cvsrc' will give you unified diffs and pruned updates with directories. You'll probably want these two options. Now, for the ssh-setup (if you haven't done this already): 1.1 Put 'ssh-agent sh ~/.xsession-real' in ~/.xsession after having copied your old .xsession to .xsession-real. 1.2 Generate an ssh private/public key pair by running 'ssh-genkey' 1.3 Copy the public part of the key (~/.ssh/identity.pub) to freefall:/home/nik/.ssh/authorized_keys Now, when you want to get ready for authentication, run 1.3 'ssh-add' to add your private key to the authentication agent. Take particular note of the neat X-display if you run 'ssh-add < /dev/null' - I have this in my startup. (I am in a fairly secure environment, and I lock my display any time I leave my machine). After having stored your key in the authentication-agent (step 1.3 above), just ssh to the places you've added your identity.pub to - you'll be authenticaten through your agent, no passwords. The same goes for secure remote `cvs commit's. Oh, and when you fix the fact that somebody else have delivered a report of a leak in the ship or a suggestion for an improvement[1], you can run 'edit-pr ' on freefall to close it. Relax now - the impending takeoff will be at your hands, but it will _not_ include any mutilated bodies on the ground (AKA world-breakages) or bodies falling from the sky (AKA release-breakages). Everything will be just fine. No commiter has ever screwed up. :-) Starship Mate Eivind signing off. [1] Both are known as Problem Reports, or PRs for short - this is because they give the committers extra problems. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 16:47:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA18330 for cvs-all-outgoing; Thu, 16 Apr 1998 16:47:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ns1.yes.no (ns1.yes.no [195.119.24.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA18306 for ; Thu, 16 Apr 1998 23:47:36 GMT (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [194.198.43.36]) by ns1.yes.no (8.8.7/8.8.7) with ESMTP id XAA01358; Thu, 16 Apr 1998 23:47:25 GMT Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id BAA05697; Fri, 17 Apr 1998 01:47:24 +0200 (MET DST) Message-ID: <19980417014724.41837@follo.net> Date: Fri, 17 Apr 1998 01:47:24 +0200 From: Eivind Eklund To: Peter Hawkins , cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail References: <199804162158.OAA06012@freefall.freebsd.org> <19980417014455.02651@follo.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <19980417014455.02651@follo.net>; from Eivind Eklund on Fri, Apr 17, 1998 at 01:44:55AM +0200 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Fri, Apr 17, 1998 at 01:44:55AM +0200, Eivind Eklund wrote: > Besides Peter Wemm, there are other officers you'll get to know: [...] > (Anybody that feel left out - speak up. I've just included the people > that I thought were likely to need their roles explained - no > significance attached). John D. Polstra John is the guy behind our great 'shoot pieces of FreeBSD all over the world' technology, AKA cvsup. If you need to cvsup directly from freefall (and this can be useful at times, though it shouldn't be a regular habit unless you need it) you should ask John to set this up for you. Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 17:13:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA23125 for cvs-all-outgoing; Thu, 16 Apr 1998 17:13:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA23103 for ; Fri, 17 Apr 1998 00:13:23 GMT (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id RAA07964; Thu, 16 Apr 1998 17:13:02 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Eivind Eklund cc: Peter Hawkins , cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail In-reply-to: Your message of "Fri, 17 Apr 1998 01:44:55 +0200." <19980417014455.02651@follo.net> Date: Thu, 16 Apr 1998 17:13:02 -0700 Message-ID: <7961.892771982@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Jordan is also the guy who is constantly forgetting to set up > forward files for new committers, so you'd probably be well of Ahem! :) I don't forget to set up forward files, it's simply not my job to do that - how the hell am I supposed to know where they want their mail forwarded? :-) Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 17:54:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA01319 for cvs-all-outgoing; Thu, 16 Apr 1998 17:54:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA01198; Fri, 17 Apr 1998 00:54:29 GMT (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA06857; Thu, 16 Apr 1998 17:54:19 -0700 (PDT) Date: Thu, 16 Apr 1998 17:54:19 -0700 (PDT) Message-Id: <199804170054.RAA06857@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/graphics/xpaint Makefile ports/graphics/xpaint/files md5 ports/graphics/xpaint/patches patch-aa patch-ab patch-ac patch-ad Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/04/16 17:54:18 PDT Modified files: graphics/xpaint Makefile graphics/xpaint/files md5 Removed files: graphics/xpaint/patches patch-aa patch-ab patch-ac patch-ad Log: Upgrade to version 2.5.4. This version has incorporated all of our patches. Revision Changes Path 1.20 +3 -3 ports/graphics/xpaint/Makefile 1.9 +1 -1 ports/graphics/xpaint/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 17:59:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA02902 for cvs-all-outgoing; Thu, 16 Apr 1998 17:59:29 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA02875; Fri, 17 Apr 1998 00:59:25 GMT (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA06913; Thu, 16 Apr 1998 17:59:16 -0700 (PDT) Date: Thu, 16 Apr 1998 17:59:16 -0700 (PDT) Message-Id: <199804170059.RAA06913@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/gen tcsetpgrp.3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/04/16 17:59:16 PDT Modified files: lib/libc/gen tcsetpgrp.3 Log: Typo police Revision Changes Path 1.4 +1 -1 src/lib/libc/gen/tcsetpgrp.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 18:24:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA08112 for cvs-all-outgoing; Thu, 16 Apr 1998 18:24:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA07988; Fri, 17 Apr 1998 01:23:36 GMT (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-10.ix.netcom.com [207.93.143.138]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id SAA01787; Thu, 16 Apr 1998 18:23:30 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id RAA10861; Thu, 16 Apr 1998 17:27:52 -0700 (PDT) Date: Thu, 16 Apr 1998 17:27:52 -0700 (PDT) Message-Id: <199804170027.RAA10861@silvia.HIP.Berkeley.EDU> To: ache@nagual.pp.ru CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG In-reply-to: <19980417031022.02794@nagual.pp.ru> (message from =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= on Fri, 17 Apr 1998 03:10:22 +0400) Subject: Re: cvs commit: src/etc make.conf From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Please add proper description in good English, I am not able to do it. I can certainly do that (even though my Anglais is not that good), if we agree what to put there. * > (2) The MOTIFLIB description is not appropriate anymore, now that * > MOTIF_STATIC is given as an example here. * * It should be changed too, I agree. I didn't think you disagreed, I was just pointing out that you should read the stuff around something before adding a new line. :> * I think system should be comfortable for developers first and next for * ordinary users. I'm not sure if I agree with that, but that's another point. However, do developers really need MOTIF_STATIC? That makes EVERYTHING link with static libXm, making that person more of a package builder (one who builds packages to distribute to other users, not one who builds package for testing). I think it's more likely that they need it on a per-port basis (say, for testing mozilla that doesn't work with dynamic libXm), in which case the place to fix it is in that port's Makefile (or Makefile.i386 if you don't want to touch a file controlled by CVS), not /etc/make.conf. My fear is that /etc/make.conf is getting too clustered with stuff that is relevant to only a small set of users, thus making it harder for people to maintain. It's already getting a PITA to merge new changes from /usr/src/etc/make.conf. Ports developers are supposed to read the handbook as well as the header of bsd.port.mk, where all these (and other milliards of variables) are described in great detail. * > Maybe it's time for /etc/make.conf.ports? (No I'm not kidding.) * * Yes, good idea. Seriously though, I don't envision that as a description and default values for all possible variables. Those should go in bsd.port.mk, not only because one thing should be described in as few places as possible but also because /etc won't be upgraded as part of "make world". That means make.conf.ports is empty by default where people can add things as they wish. But they can do that to make.conf already, so I guess it makes the whole thing rather pointless. :< Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 19:06:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA17212 for cvs-all-outgoing; Thu, 16 Apr 1998 19:06:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from lsd.relcom.eu.net (lsd.relcom.eu.net [193.125.27.73]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA17193; Fri, 17 Apr 1998 02:06:30 GMT (envelope-from ache@lsd.relcom.eu.net) Received: (from ache@localhost) by lsd.relcom.eu.net (8.8.8/8.8.8) id GAA08141; Fri, 17 Apr 1998 06:06:28 +0400 (MSD) (envelope-from ache) Message-ID: <19980417060627.25427@nagual.pp.ru> Date: Fri, 17 Apr 1998 06:06:27 +0400 From: =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= To: Satoshi Asami Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: Re: cvs commit: src/etc make.conf Mail-Followup-To: Satoshi Asami , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org References: <19980417031022.02794@nagual.pp.ru> <199804170027.RAA10861@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <199804170027.RAA10861@silvia.HIP.Berkeley.EDU>; from asami@FreeBSD.org on Thu, Apr 16, 1998 at 05:27:52PM -0700 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Thu, Apr 16, 1998 at 05:27:52PM -0700, Satoshi Asami wrote: > I'm not sure if I agree with that, but that's another point. However, > do developers really need MOTIF_STATIC? That makes EVERYTHING link There is another point of MOTIF_STATIC adding exist too. Since it control MOTIFLIB too (as HAVE_MOTIF), not mentioning it gives reduced picture of things which can leads to confusion related to MOTIFLIB (one example of such confusion you already give). > Seriously though, I don't envision that as a description and default > values for all possible variables. Those should go in bsd.port.mk, bsd.port.mk is default for all systems and not tunable. /etc/make.conf (or similar thing) reflects per-system defaults. I.e. better leave bsd.port.mk untouched and set every non-standard variable values elsewhere. > That means make.conf.ports is empty by default where people can > add things as they wish. But they can do that to make.conf already, > so I guess it makes the whole thing rather pointless. :< Adding things from non-existance is harder than uncomment/edit some pre-existen line, so it will be more comfortable to have _all_ bsd.port.mk variables mentioned in make.conf.ports -- Andrey A. Chernov http://www.nagual.pp.ru/~ache/ MTH/SH/HE S-- W-- N+ PEC>+ D A a++ C G>+ QH+(++) 666+>++ Y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 21:53:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA16850 for cvs-all-outgoing; Thu, 16 Apr 1998 21:53:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA16837; Fri, 17 Apr 1998 04:53:55 GMT (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA07581; Thu, 16 Apr 1998 21:53:46 -0700 (PDT) Date: Thu, 16 Apr 1998 21:53:46 -0700 (PDT) Message-Id: <199804170453.VAA07581@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern kern_intr.c kern_lock.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/04/16 21:53:45 PDT Modified files: sys/kern kern_intr.c kern_lock.c Log: Really finish supporting compiling with `gcc -ansi'. Revision Changes Path 1.14 +2 -2 src/sys/kern/kern_intr.c 1.19 +2 -2 src/sys/kern/kern_lock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 22:53:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA29836 for cvs-all-outgoing; Thu, 16 Apr 1998 22:53:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA29764 for ; Fri, 17 Apr 1998 05:53:09 GMT (envelope-from j@uriah.heep.sax.de) Received: (from uucp@localhost) by sax.sax.de (8.8.8/8.8.8) with UUCP id HAA21612 for cvs-committers@FreeBSD.ORG; Fri, 17 Apr 1998 07:53:06 +0200 (CEST) (envelope-from j@uriah.heep.sax.de) Received: (from j@localhost) by uriah.heep.sax.de (8.8.8/8.8.5) id HAA09439; Fri, 17 Apr 1998 07:25:50 +0200 (MET DST) Message-ID: <19980417072550.11339@uriah.heep.sax.de> Date: Fri, 17 Apr 1998 07:25:50 +0200 From: J Wunsch To: cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: src/sys/i386/isa syscons.c Reply-To: Joerg Wunsch References: <199804151200.FAA16764@freefall.freebsd.org> <199804160853.KAA10479@ocean.campus.luth.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.88 In-Reply-To: <199804160853.KAA10479@ocean.campus.luth.se>; from Mikael Karpberg on Thu, Apr 16, 1998 at 10:53:08AM +0200 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk As Mikael Karpberg wrote: > According to Dag-Erling C. Sm\xf8rgrav: > > des 1998/04/15 05:00:15 PDT > > > > Modified files: (Branch: 1.182.2) > > WHAT!? Did I miss something? This branch looks weird! Not that weird. If you look into the CVS file, you'll see it's actually RELENG_2_2. For whatever reason, cvs didn't retranslate this into a human-readable form. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 23:19:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA06997 for cvs-all-outgoing; Thu, 16 Apr 1998 23:19:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA06961 for ; Fri, 17 Apr 1998 06:19:03 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.za (greenpeace.grondar.za [196.7.18.132]) by gratis.grondar.za (8.8.8/8.8.8) with ESMTP id IAA26970; Fri, 17 Apr 1998 08:18:51 +0200 (SAST) (envelope-from mark@grondar.za) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.za (8.8.8/8.8.8) with ESMTP id IAA13870; Fri, 17 Apr 1998 08:18:45 +0200 (SAST) (envelope-from mark@grondar.za) Message-Id: <199804170618.IAA13870@greenpeace.grondar.za> X-Mailer: exmh version 2.0.2 2/24/98 To: Eivind Eklund cc: Peter Hawkins , cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 17 Apr 1998 08:18:45 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Eivind Eklund wrote: > (Anybody that feel left out - speak up. I've just included the people > that I thought were likely to need their roles explained - no > significance attached). If you do any work that is crypto-related - please send me (markm@freebsd.org) a copy of your patches for inclusion into the International Crypto Repository. Better still, ask me for an account on that machine and commit the diffs there as well. This applies to all code in src/eBones, sec/secure and src/crypto. M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 23:36:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA10416 for cvs-all-outgoing; Thu, 16 Apr 1998 23:36:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA10385 for ; Fri, 17 Apr 1998 06:36:19 GMT (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id IAA01924; Fri, 17 Apr 1998 08:34:49 +0200 (CEST) To: Mark Murray cc: Eivind Eklund , Peter Hawkins , cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail In-reply-to: Your message of "Fri, 17 Apr 1998 08:18:45 +0200." <199804170618.IAA13870@greenpeace.grondar.za> Date: Fri, 17 Apr 1998 08:34:49 +0200 Message-ID: <1922.892794889@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In message <199804170618.IAA13870@greenpeace.grondar.za>, Mark Murray writes: >Eivind Eklund wrote: >> (Anybody that feel left out - speak up. I've just included the people >> that I thought were likely to need their roles explained - no >> significance attached). > >If you do any work that is crypto-related - please send me >(markm@freebsd.org) a copy of your patches for inclusion into the >International Crypto Repository. Better still, ask me for an account on >that machine and commit the diffs there as well. This applies to all >code in src/eBones, sec/secure and src/crypto. To maintain the spirit of the text, this paragraph should read: Vs lbh qb nal jbex gung vf pelcgb-eryngrq - cyrnfr fraq zr (znexz@serrofq.bet) n pbcl bs lbhe cngpurf sbe vapyhfvba vagb gur Vagreangvbany Pelcgb Ercbfvgbel. Orggre fgvyy, nfx zr sbe na nppbhag ba gung znpuvar naq pbzzvg gur qvssf gurer nf jryy. Guvf nccyvrf gb nyy pbqr va fep/rObarf, frp/frpher naq fep/pelcgb. If you can't figure it out, don't expect me to tell you :-) -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "Drink MONO-tonic, it goes down but it will NEVER come back up!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 23:38:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA11169 for cvs-all-outgoing; Thu, 16 Apr 1998 23:38:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au (spinner.netplex.com.au [202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA10879 for ; Fri, 17 Apr 1998 06:38:03 GMT (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.8.8/8.8.8/Spinner) with ESMTP id OAA27747; Fri, 17 Apr 1998 14:37:01 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199804170637.OAA27747@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: Joerg Wunsch cc: cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: src/sys/i386/isa syscons.c In-reply-to: Your message of "Fri, 17 Apr 1998 07:25:50 +0200." <19980417072550.11339@uriah.heep.sax.de> Date: Fri, 17 Apr 1998 14:37:00 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk J Wunsch wrote: > As Mikael Karpberg wrote: > > > According to Dag-Erling C. Sm\xf8rgrav: > > > des 1998/04/15 05:00:15 PDT > > > > > > Modified files: (Branch: 1.182.2) > > > > WHAT!? Did I miss something? This branch looks weird! > > Not that weird. If you look into the CVS file, you'll see it's > actually RELENG_2_2. For whatever reason, cvs didn't retranslate this > into a human-readable form. Hmm.... The only way that I can think of that this could happen is if the committer in question did a 'cvs update -r1.182.2' instead of a 'cvs update -rRELENG_2_2' or something like that. cvs doesn't convert between symbolic and branch names at this level. Cheers, -Peter -- Peter Wemm Netplex Consulting To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 16 23:41:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA12379 for cvs-all-outgoing; Thu, 16 Apr 1998 23:41:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA12218 for ; Fri, 17 Apr 1998 06:41:18 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.za (greenpeace.grondar.za [196.7.18.132]) by gratis.grondar.za (8.8.8/8.8.8) with ESMTP id IAA27570; Fri, 17 Apr 1998 08:41:08 +0200 (SAST) (envelope-from mark@grondar.za) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.za (8.8.8/8.8.8) with ESMTP id IAA14013; Fri, 17 Apr 1998 08:41:07 +0200 (SAST) (envelope-from mark@grondar.za) Message-Id: <199804170641.IAA14013@greenpeace.grondar.za> X-Mailer: exmh version 2.0.2 2/24/98 To: Poul-Henning Kamp cc: Eivind Eklund , Peter Hawkins , cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 17 Apr 1998 08:41:07 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Poul-Henning Kamp wrote: > If you can't figure it out, don't expect me to tell you :-) ROTFLMAO I used to know someone a univerity who could read that stuff directly. Talk about the geek fringe ;-) M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 00:02:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA19640 for cvs-all-outgoing; Fri, 17 Apr 1998 00:02:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA19538 for ; Fri, 17 Apr 1998 07:02:11 GMT (envelope-from julian@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id XAA29237; Thu, 16 Apr 1998 23:53:22 -0700 (PDT) Received: from current1.whistle.com(207.76.205.22) via SMTP by alpo.whistle.com, id smtpd029235; Fri Apr 17 06:53:21 1998 Message-ID: <3536FB28.15FB7483@whistle.com> Date: Thu, 16 Apr 1998 23:48:08 -0700 From: Julian Elischer Organization: Whistle Communications X-Mailer: Mozilla 3.0Gold (X11; I; FreeBSD 2.2.5-RELEASE i386) MIME-Version: 1.0 To: Poul-Henning Kamp CC: Mark Murray , Eivind Eklund , Peter Hawkins , cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail References: <1922.892794889@critter.freebsd.dk> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Poul-Henning Kamp wrote: > To maintain the spirit of the text, this paragraph should read: > > Vs lbh qb nal jbex gung vf pelcgb-eryngrq - cyrnfr fraq zr > (znexz@serrofq.bet) n pbcl bs lbhe cngpurf sbe vapyhfvba vagb gur > Vagreangvbany Pelcgb Ercbfvgbel. Orggre fgvyy, nfx zr sbe na nppbhag ba > gung znpuvar naq pbzzvg gur qvssf gurer nf jryy. Guvf nccyvrf gb nyy > pbqr va fep/rObarf, frp/frpher naq fep/pelcgb. > > If you can't figure it out, don't expect me to tell you :-) hmmm... at a guess...... tr abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ \ nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA21327 for cvs-all-outgoing; Fri, 17 Apr 1998 00:09:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA21237 for ; Fri, 17 Apr 1998 07:09:02 GMT (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id JAA02145; Fri, 17 Apr 1998 09:07:38 +0200 (CEST) To: Mark Murray cc: Eivind Eklund , Peter Hawkins , cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail In-reply-to: Your message of "Fri, 17 Apr 1998 08:41:07 +0200." <199804170641.IAA14013@greenpeace.grondar.za> Date: Fri, 17 Apr 1998 09:07:38 +0200 Message-ID: <2143.892796858@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In message <199804170641.IAA14013@greenpeace.grondar.za>, Mark Murray writes: >Poul-Henning Kamp wrote: >> If you can't figure it out, don't expect me to tell you :-) > >ROTFLMAO > >I used to know someone a univerity who could read that stuff directly. >Talk about the geek fringe ;-) I know a historian who can do it in Latin, translating to Danish on the fly, on the original texts Cesar wrote... -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "Drink MONO-tonic, it goes down but it will NEVER come back up!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 00:21:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA24993 for cvs-all-outgoing; Fri, 17 Apr 1998 00:21:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA24823; Fri, 17 Apr 1998 07:20:36 GMT (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id RAA24358; Fri, 17 Apr 1998 17:19:00 +1000 Date: Fri, 17 Apr 1998 17:19:00 +1000 From: Bruce Evans Message-Id: <199804170719.RAA24358@godzilla.zeta.org.au> To: ache@FreeBSD.ORG, asami@FreeBSD.ORG Subject: Re: cvs commit: src/etc make.conf Cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >MOTIF_STATIC was never intended for use by ordinary users. It is only >used for package-builders. Do we add every possible variable in >make.conf (if so, I have a few dozen more from bsd.port.mk) or only >have the common cases in here? Nothing except overrides for defaults in sys.mk should be there. >Maybe it's time for /etc/make.conf.ports? (No I'm not kidding.) Ports and build options should always have been separate from sys.mk, but there is a problem getting them noticed early enough. /etc/make.conf.ports should logically be included by bsd.port.mk, but may be needed when sys.mk is parsed. This is currently handled by abusing /etc/make.conf to extend sys.mk. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 00:27:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA26182 for cvs-all-outgoing; Fri, 17 Apr 1998 00:27:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA26167; Fri, 17 Apr 1998 07:27:03 GMT (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA08530; Fri, 17 Apr 1998 00:26:52 -0700 (PDT) Date: Fri, 17 Apr 1998 00:26:52 -0700 (PDT) Message-Id: <199804170726.AAA08530@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libz Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/04/17 00:26:52 PDT Modified files: lib/libz Makefile Log: Manpages not installed PR: 6327 Reviewed by: phk Submitted by: Chia-liang Kao Revision Changes Path 1.8 +3 -1 src/lib/libz/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 00:38:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA27973 for cvs-all-outgoing; Fri, 17 Apr 1998 00:38:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA27967; Fri, 17 Apr 1998 07:38:09 GMT (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA08782; Fri, 17 Apr 1998 00:37:58 -0700 (PDT) Date: Fri, 17 Apr 1998 00:37:58 -0700 (PDT) Message-Id: <199804170737.AAA08782@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT avail Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/04/17 00:37:58 PDT Modified files: . avail Log: (Jordan, not so fast. :) Everyone please join me in welcoming aboard Mr. Jun Kuriyama ("kuriyama") to the spaceship. He will be handling the docking setups (aka ports). If I haven't screwed up anything (which I probably have, but that is not a certainty until you actually run into one of them), you should have everything enabled so you can check out and commit to the tree by now. Change your forwarding address on hub's /var/forward/kuriyama if you wish, I set up to your default address. In addition to freefall (the commit machine), you have accounts on hub (aka the mail hub), catfish (the -stable test building box) and bento (the -current test building box, aka Satoshi's lunchbox). Don't ask me why your password file is duplicated on all four machines. I use ssh so I never type my password anyway. Your first assignment is to update the ship's roster in the handbook. In particular, you are a "FreeBSD Developer" now! (Yeah, like you weren't before.) If/when you do that task successfully, you are allowed to look at the GNATs database and start committing ports from there. (Yes, finally someone is closing your PR's!) Have a nice tirp. Starship Mate Satoshi signing off. Revision Changes Path 1.31 +2 -2 CVSROOT/avail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 00:39:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA28153 for cvs-all-outgoing; Fri, 17 Apr 1998 00:39:49 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from sun-test.hightek.com ([194.74.141.100]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA28113; Fri, 17 Apr 1998 07:39:44 GMT (envelope-from andreas@klemm2.hightek.com) Received: from klemm2.hightek.com ([195.90.203.76]) by sun-test.hightek.com (Netscape Mail Server v1.1) with ESMTP id AAA20708; Fri, 17 Apr 1998 09:41:07 +0200 Received: (from andreas@localhost) by klemm2.hightek.com (8.8.8/8.8.8) id JAA03169; Fri, 17 Apr 1998 09:39:40 +0200 (CEST) (envelope-from andreas) Message-ID: <19980417093939.29102@hightek.com> Date: Fri, 17 Apr 1998 09:39:39 +0200 From: Andreas Klemm To: Gary Jennejohn , "Justin M. Seger" Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/www/mozilla/patches patch-ad References: <199804160157.SAA06082@freefall.freebsd.org> <199804162151.XAA08223@peedub.muc.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <199804162151.XAA08223@peedub.muc.de>; from Gary Jennejohn on Thu, Apr 16, 1998 at 11:51:07PM +0200 X-Operating-System: FreeBSD 2.2.6-STABLE Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Thu, Apr 16, 1998 at 11:51:07PM +0200, Gary Jennejohn wrote: > "Justin M. Seger" writes: > >jseger 1998/04/15 18:57:16 PDT > > Modified files: > > www/mozilla/patches patch-ad > > Log: > > Fix selection of static or shared library. I'd appreciate it if someone > > using lesstif could test this. > > fails miserably (with lesstif); doesn't find libXm in /usr/X11R6/lib. > MOTIFLIB _is_ defined in /etc/make.conf. Does it still try to link with libXm.a ? lesstif only has a shared lib. Could this be changed by hacking mozilla port to use a shared per default ? Only a static, if someone creates a Mozilla tarball with a real Motif developer kit ? -- B&K Gruppe - Wuppertal phone +49 202 7399 - 170 fax +49 202 7399 - 100 http://www.FreeBSD.ORG/~andreas/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 00:47:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA29449 for cvs-all-outgoing; Fri, 17 Apr 1998 00:47:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA29427 for ; Fri, 17 Apr 1998 07:47:25 GMT (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-35.ix.netcom.com [207.93.143.163]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id AAA02169; Fri, 17 Apr 1998 00:47:13 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id AAA11929; Fri, 17 Apr 1998 00:47:03 -0700 (PDT) Date: Fri, 17 Apr 1998 00:47:03 -0700 (PDT) Message-Id: <199804170747.AAA11929@silvia.HIP.Berkeley.EDU> To: eivind@yes.no CC: peter@hilink.com.au, cvs-committers@FreeBSD.ORG In-reply-to: <19980417014455.02651@follo.net> (message from Eivind Eklund on Fri, 17 Apr 1998 01:44:55 +0200) Subject: Re: cvs commit: CVSROOT avail From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * From: Eivind Eklund Hey, great stuff! Just a few more things and we'll have the new committer orientation kit ready. * Satoshi Asami * A lean, mean ports-machine. This guy owns the docking * machinery (bsd.port.mk) which you are not allowed to touch * without permission, and have ultimate authority over all * modifcations to docking setups (ports). Touch them when he's * declared a hands-off, and you'll get your commit privileges * suspended faster than you can say 'ports-freeze'. I like the way you make that sound. While you are making me look like a bald-headed captain with one articifial hand, please mention that he hauls saucers across the dining hall if you don't test packaging of your docking setups before committing. (And that his aim is not all that good, and occasionally hits someone else. :) * Oh, and when you fix the fact that somebody else have delivered a * report of a leak in the ship or a suggestion for an improvement[1], * you can run 'edit-pr ' on freefall to close it. You may want to mention exactly how to close PR's, so phk ("The Crazed Dane") doesn't have to walk around closing the doors behind you. (Yeah I know I'm dumb, but it took me a while until I realized that if I just go ahead and change that "open" to "closed", gnats will do the right thing....) * will be just fine. No commiter has ever screwed up. :-) ^^^^^^^^ That's spelled with with two `t's, Eivind. Or perhaps our web2 has leaks. :> Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 00:51:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA00515 for cvs-all-outgoing; Fri, 17 Apr 1998 00:51:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA00495; Fri, 17 Apr 1998 07:51:49 GMT (envelope-from dima@FreeBSD.org) From: Dima Ruban Received: (from dima@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA08987; Fri, 17 Apr 1998 00:51:38 -0700 (PDT) Date: Fri, 17 Apr 1998 00:51:38 -0700 (PDT) Message-Id: <199804170751.AAA08987@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/conf Makefile.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dima 1998/04/17 00:51:38 PDT Modified files: sys/i386/conf Makefile.i386 Log: Undo my last change. Revision Changes Path 1.109 +2 -2 src/sys/i386/conf/Makefile.i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 01:26:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA06296 for cvs-all-outgoing; Fri, 17 Apr 1998 01:26:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA06278; Fri, 17 Apr 1998 08:26:31 GMT (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-35.ix.netcom.com [207.93.143.163]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id BAA02217; Fri, 17 Apr 1998 01:26:14 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id BAA12059; Fri, 17 Apr 1998 01:26:10 -0700 (PDT) Date: Fri, 17 Apr 1998 01:26:10 -0700 (PDT) Message-Id: <199804170826.BAA12059@silvia.HIP.Berkeley.EDU> To: aklemm@hightek.com CC: garyj@muc.de, jseger@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <19980417093939.29102@hightek.com> (message from Andreas Klemm on Fri, 17 Apr 1998 09:39:39 +0200) Subject: Re: cvs commit: ports/www/mozilla/patches patch-ad From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Does it still try to link with libXm.a ? lesstif only has a shared * lib. Could this be changed by hacking mozilla port to use a shared This shouldn't be a problem, as MOTIFLIB is used by all Motif ports. If it fails for mozilla for that reason, it should fail for other ports too. It doesn't work for me either (I already sent mail to Justin about this), looks like the port is for whatever reason picking up MOTIFLIB at all. The linker line is lacking any mention of Xm. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 01:31:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA06715 for cvs-all-outgoing; Fri, 17 Apr 1998 01:31:20 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA06707; Fri, 17 Apr 1998 08:31:19 GMT (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA09176; Fri, 17 Apr 1998 01:31:08 -0700 (PDT) Date: Fri, 17 Apr 1998 01:31:08 -0700 (PDT) Message-Id: <199804170831.BAA09176@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libz Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/04/17 01:31:08 PDT Modified files: lib/libz Makefile Log: Backup out the last commit, it was already there. Noticed by: bde Revision Changes Path 1.9 +1 -3 src/lib/libz/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 01:43:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA09027 for cvs-all-outgoing; Fri, 17 Apr 1998 01:43:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ghpc8.ihf.rwth-aachen.de (ghpc8.ihf.RWTH-Aachen.DE [134.130.90.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA09017; Fri, 17 Apr 1998 08:43:35 GMT (envelope-from tg@ghpc8.ihf.rwth-aachen.de) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.rwth-aachen.de [134.130.90.6]) by ghpc8.ihf.rwth-aachen.de (8.8.7/8.8.6) with ESMTP id KAA18244; Fri, 17 Apr 1998 10:43:13 +0200 (CEST) Received: (from tg@localhost) by ghpc6.ihf.rwth-aachen.de (8.8.8/8.8.5) id KAA04199; Fri, 17 Apr 1998 10:43:13 +0200 (CEST) To: asami@FreeBSD.ORG (Satoshi Asami) Cc: eivind@yes.no, peter@hilink.com.au, cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail References: <199804170747.AAA11929@silvia.HIP.Berkeley.EDU> From: Thomas Gellekum Date: 17 Apr 1998 10:43:13 +0200 In-Reply-To: asami@FreeBSD.ORG's message of "Fri, 17 Apr 1998 00:47:03 -0700 (PDT)" Message-ID: <87yax4hm8u.fsf@ghpc6.ihf.rwth-aachen.de> Lines: 10 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami@FreeBSD.ORG (Satoshi Asami) writes: > * will be just fine. No commiter has ever screwed up. :-) > ^^^^^^^^ > That's spelled with with two `t's, Eivind. Or perhaps our web2 has > leaks. :> There's a reason for the cvs-commiter alias on freefall. tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 02:07:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA13105 for cvs-all-outgoing; Fri, 17 Apr 1998 02:07:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA13090; Fri, 17 Apr 1998 09:07:13 GMT (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-35.ix.netcom.com [207.93.143.163]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id CAA02282; Fri, 17 Apr 1998 02:07:11 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id CAA12297; Fri, 17 Apr 1998 02:07:08 -0700 (PDT) Date: Fri, 17 Apr 1998 02:07:08 -0700 (PDT) Message-Id: <199804170907.CAA12297@silvia.HIP.Berkeley.EDU> To: ache@nagual.pp.ru CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG In-reply-to: <19980417060627.25427@nagual.pp.ru> (message from =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= on Fri, 17 Apr 1998 06:06:27 +0400) Subject: Re: cvs commit: src/etc make.conf From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * There is another point of MOTIF_STATIC adding exist too. Since it control * MOTIFLIB too (as HAVE_MOTIF), not mentioning it gives reduced picture * of things which can leads to confusion related to MOTIFLIB (one example of * such confusion you already give). I'm thinking about taking out MOTIFLIB too. 99% of the users don't need that and yet it seems everyone with Motif is defining it. * bsd.port.mk is default for all systems and not tunable. /etc/make.conf * (or similar thing) reflects per-system defaults. I.e. better leave * bsd.port.mk untouched and set every non-standard variable values * elsewhere. I didn't mean you should change bsd.port.mk. The descriptions should stay there, and changes to the default can be made in /etc/make.conf. * Adding things from non-existance is harder than uncomment/edit some * pre-existen line, so it will be more comfortable to have _all_ * bsd.port.mk variables mentioned in make.conf.ports I disagree. The header of bsd.port.mk is already over 200 lines long. It will be useless to duplicate that elsewhere because it will very likely get out of sync very quickly (both because committers can't remember to update the same thing in many places and because /etc is not updated by "make world"). I've already said everything I want on this topic. If we can agree to disagree, I'm going to take out everything but HAVE_MOTIF in /etc/make.conf. Sorry, but that's my area. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 02:29:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA14834 for cvs-all-outgoing; Fri, 17 Apr 1998 02:29:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA14829; Fri, 17 Apr 1998 09:29:37 GMT (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA09431; Fri, 17 Apr 1998 02:29:26 -0700 (PDT) Date: Fri, 17 Apr 1998 02:29:26 -0700 (PDT) Message-Id: <199804170929.CAA09431@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/mozilla Makefile ports/www/mozilla/patches patch-ad Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/04/17 02:29:26 PDT Modified files: www/mozilla Makefile www/mozilla/patches patch-ad Log: This is a kludge to make building work again. post-configure now echo's MOTIFLIB to work/ns/MOTIFLIB and in the linker line there is a `cat ../../MOTIFLIB'. The MOTIFLIB variable is being passed to work/ns/Makefile, but not beyond it. If anyone figures out how to fix this properly, please email a new patch to me. Revision Changes Path 1.22 +3 -1 ports/www/mozilla/Makefile 1.4 +1 -1 ports/www/mozilla/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 Fri Apr 17 02:37:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA16334 for cvs-all-outgoing; Fri, 17 Apr 1998 02:37:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA16328; Fri, 17 Apr 1998 09:37:53 GMT (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA09481; Fri, 17 Apr 1998 02:37:42 -0700 (PDT) Date: Fri, 17 Apr 1998 02:37:42 -0700 (PDT) Message-Id: <199804170937.CAA09481@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc_r/uthread uthread_kern.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/04/17 02:37:41 PDT Modified files: lib/libc_r/uthread uthread_kern.c Log: When in PS_SIGWAIT state, still call signal handlers and set errno to EINTR. Revision Changes Path 1.9 +2 -13 src/lib/libc_r/uthread/uthread_kern.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 02:39:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA16585 for cvs-all-outgoing; Fri, 17 Apr 1998 02:39:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA16580; Fri, 17 Apr 1998 09:39:49 GMT (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA09517; Fri, 17 Apr 1998 02:39:38 -0700 (PDT) Date: Fri, 17 Apr 1998 02:39:38 -0700 (PDT) Message-Id: <199804170939.CAA09517@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc_r/uthread uthread_info.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jb 1998/04/17 02:39:38 PDT Modified files: lib/libc_r/uthread uthread_info.c Log: Allow a thread dump to report the thread's sigmask when in the PS_SIGWAIT state. Revision Changes Path 1.4 +4 -0 src/lib/libc_r/uthread/uthread_info.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 02:45:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA17403 for cvs-all-outgoing; Fri, 17 Apr 1998 02:45:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA17385; Fri, 17 Apr 1998 09:44:59 GMT (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-35.ix.netcom.com [207.93.143.163]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id CAA02339; Fri, 17 Apr 1998 02:44:58 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id CAA12484; Fri, 17 Apr 1998 02:44:55 -0700 (PDT) Date: Fri, 17 Apr 1998 02:44:55 -0700 (PDT) Message-Id: <199804170944.CAA12484@silvia.HIP.Berkeley.EDU> To: jseger@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <199804170929.CAA09431@freefall.freebsd.org> (jseger@FreeBSD.ORG) Subject: Re: cvs commit: ports/www/mozilla Makefile ports/www/mozilla/patches patch-ad From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * The MOTIFLIB variable is being passed to work/ns/Makefile, but * not beyond it. If anyone figures out how to fix this properly, * please email a new patch to me. Ah. I found it, it's erased in config/FreeBSD.mk, included from work/ns/Makefile. I'm testing a patch now, I'll commit it when I'm done. (Or I can send it to you if you want.) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 02:54:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA18838 for cvs-all-outgoing; Fri, 17 Apr 1998 02:54:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA18810; Fri, 17 Apr 1998 09:54:42 GMT (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA09581; Fri, 17 Apr 1998 02:54:31 -0700 (PDT) Date: Fri, 17 Apr 1998 02:54:31 -0700 (PDT) Message-Id: <199804170954.CAA09581@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/lang/yorick/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/04/17 02:54:30 PDT Modified files: lang/yorick/files md5 Log: Distribution patches changed. Revision Changes Path 1.2 +1 -1 ports/lang/yorick/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 03:03:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA20286 for cvs-all-outgoing; Fri, 17 Apr 1998 03:03:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA20259; Fri, 17 Apr 1998 10:02:56 GMT (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA09664; Fri, 17 Apr 1998 03:02:44 -0700 (PDT) Date: Fri, 17 Apr 1998 03:02:44 -0700 (PDT) Message-Id: <199804171002.DAA09664@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data newsflash.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/17 03:02:44 PDT Modified files: data newsflash.sgml Log: Add 2.2.6R CD shipping. Revision Changes Path 1.74 +9 -2 www/data/newsflash.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 03:03:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA20412 for cvs-all-outgoing; Fri, 17 Apr 1998 03:03:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA20404; Fri, 17 Apr 1998 10:03:26 GMT (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA09693; Fri, 17 Apr 1998 03:03:14 -0700 (PDT) Date: Fri, 17 Apr 1998 03:03:14 -0700 (PDT) Message-Id: <199804171003.DAA09693@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa syscons.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/04/17 03:03:14 PDT Modified files: sys/i386/isa syscons.c Log: Stop the screensaver before switching consoles. Revision Changes Path 1.260 +7 -1 src/sys/i386/isa/syscons.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 03:11:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA21420 for cvs-all-outgoing; Fri, 17 Apr 1998 03:11:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA21408 for ; Fri, 17 Apr 1998 10:11:46 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.za (greenpeace.grondar.za [196.7.18.132]) by gratis.grondar.za (8.8.8/8.8.8) with ESMTP id MAA03975; Fri, 17 Apr 1998 12:11:38 +0200 (SAST) (envelope-from mark@grondar.za) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.za (8.8.8/8.8.8) with ESMTP id MAA14959; Fri, 17 Apr 1998 12:11:35 +0200 (SAST) (envelope-from mark@grondar.za) Message-Id: <199804171011.MAA14959@greenpeace.grondar.za> To: Julian Elischer cc: Poul-Henning Kamp , Eivind Eklund , Peter Hawkins , cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail Date: Fri, 17 Apr 1998 12:11:35 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Julian Elischer wrote: > > If you can't figure it out, don't expect me to tell you :-) > hmmm... > at a guess...... > tr abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ \ > nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA22037 for cvs-all-outgoing; Fri, 17 Apr 1998 03:15:29 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA22015 for ; Fri, 17 Apr 1998 10:15:13 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.za (greenpeace.grondar.za [196.7.18.132]) by gratis.grondar.za (8.8.8/8.8.8) with ESMTP id MAA03983; Fri, 17 Apr 1998 12:15:08 +0200 (SAST) (envelope-from mark@grondar.za) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.za (8.8.8/8.8.8) with ESMTP id MAA14986; Fri, 17 Apr 1998 12:15:08 +0200 (SAST) (envelope-from mark@grondar.za) Message-Id: <199804171015.MAA14986@greenpeace.grondar.za> To: Poul-Henning Kamp cc: Eivind Eklund , Peter Hawkins , cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail Date: Fri, 17 Apr 1998 12:15:07 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Poul-Henning Kamp wrote: > >I used to know someone a univerity who could read that stuff directly. > >Talk about the geek fringe ;-) > > I know a historian who can do it in Latin, translating to Danish on the > fly, on the original texts Cesar wrote... Not bad. :-) The chap I want to meet can whistle modem tones and do mental arithmetic well enough to log onto his local ISP and send PGP-encrypted MIME email using an ordinary telephone handset. ;-) M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 03:17:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA22298 for cvs-all-outgoing; Fri, 17 Apr 1998 03:17:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA22266 for ; Fri, 17 Apr 1998 10:17:01 GMT (envelope-from dag-erli@ifi.uio.no) Received: from gladsheim.ifi.uio.no (2602@gladsheim.ifi.uio.no [129.240.64.132]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with ESMTP id MAA02815; Fri, 17 Apr 1998 12:16:59 +0200 (MET DST) Received: (from dag-erli@localhost) by gladsheim.ifi.uio.no ; Fri, 17 Apr 1998 12:16:58 +0200 (MET DST) Mime-Version: 1.0 To: Joerg Wunsch Cc: cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: src/sys/i386/isa syscons.c References: <199804151200.FAA16764@freefall.freebsd.org> <199804160853.KAA10479@ocean.campus.luth.se> <19980417072550.11339@uriah.heep.sax.de> Organization: Gutteklubben Terrasse / KRST / PUMS / YASMW X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-Stop-Spam: http://www.cauce.org From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 17 Apr 1998 12:16:57 +0200 In-Reply-To: J Wunsch's message of "Fri, 17 Apr 1998 07:25:50 +0200" Message-ID: Lines: 15 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk J Wunsch writes: > As Mikael Karpberg wrote: > > According to Dag-Erling C. Sm\xf8rgrav: > > > des 1998/04/15 05:00:15 PDT > > > > > > Modified files: (Branch: 1.182.2) > > WHAT!? Did I miss something? This branch looks weird! > Not that weird. If you look into the CVS file, you'll see it's > actually RELENG_2_2. For whatever reason, cvs didn't retranslate this > into a human-readable form. My mistake. -- DES - FreeBSD developer - "Real hackers run -current on their laptop" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 03:36:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA24856 for cvs-all-outgoing; Fri, 17 Apr 1998 03:36:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA24851; Fri, 17 Apr 1998 10:36:57 GMT (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA10090; Fri, 17 Apr 1998 03:36:46 -0700 (PDT) Date: Fri, 17 Apr 1998 03:36:46 -0700 (PDT) Message-Id: <199804171036.DAA10090@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/mozilla Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/04/17 03:36:45 PDT Modified files: www/mozilla Makefile Log: Define BUILD_OPT and NO_NETSCAPE_STATIC. This now lets us build mozilla in 100MB of disk space. The size of a package created from make package is now 3MB! Revision Changes Path 1.23 +4 -4 ports/www/mozilla/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 03:41:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA25366 for cvs-all-outgoing; Fri, 17 Apr 1998 03:41:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA25361; Fri, 17 Apr 1998 10:41:57 GMT (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA10286; Fri, 17 Apr 1998 03:41:46 -0700 (PDT) Date: Fri, 17 Apr 1998 03:41:46 -0700 (PDT) Message-Id: <199804171041.DAA10286@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook authors.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/04/17 03:41:46 PDT Modified files: handbook authors.sgml Log: Changed my email address. Revision Changes Path 1.98 +2 -2 doc/handbook/authors.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 03:54:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA27884 for cvs-all-outgoing; Fri, 17 Apr 1998 03:54:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA27857; Fri, 17 Apr 1998 10:54:18 GMT (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA10569; Fri, 17 Apr 1998 03:54:05 -0700 (PDT) Date: Fri, 17 Apr 1998 03:54:05 -0700 (PDT) Message-Id: <199804171054.DAA10569@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc profile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/04/17 03:54:05 PDT Modified files: (Branch: RELENG_2_2) etc profile Log: Merged in changes from current (comments about LC_ALL) Revision Changes Path 1.8.2.2 +6 -2 src/etc/profile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 04:06:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA00997 for cvs-all-outgoing; Fri, 17 Apr 1998 04:06:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA00992; Fri, 17 Apr 1998 11:06:57 GMT (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA10687; Fri, 17 Apr 1998 04:06:45 -0700 (PDT) Date: Fri, 17 Apr 1998 04:06:45 -0700 (PDT) Message-Id: <199804171106.EAA10687@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports INDEX Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/04/17 04:06:45 PDT Modified files: . INDEX Log: Oops, forgot to commit this. We have 1,345 ports (now with mozilla!). Reminded by: wosch Revision Changes Path 1.173 +174 -167 ports/INDEX To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 04:11:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA02660 for cvs-all-outgoing; Fri, 17 Apr 1998 04:11:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA02616; Fri, 17 Apr 1998 11:11:24 GMT (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA10750; Fri, 17 Apr 1998 04:11:12 -0700 (PDT) Date: Fri, 17 Apr 1998 04:11:12 -0700 (PDT) Message-Id: <199804171111.EAA10750@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook contrib.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/04/17 04:11:12 PDT Modified files: handbook contrib.sgml Log: Put myself under the GNATS admin together with steve. Revision Changes Path 1.280 +3 -2 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 Apr 17 04:22:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA05419 for cvs-all-outgoing; Fri, 17 Apr 1998 04:22:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA05414; Fri, 17 Apr 1998 11:22:39 GMT (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA10804; Fri, 17 Apr 1998 04:22:27 -0700 (PDT) Date: Fri, 17 Apr 1998 04:22:27 -0700 (PDT) Message-Id: <199804171122.EAA10804@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc_r/uthread uthread_kern.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1998/04/17 04:22:27 PDT Modified files: (Branch: RELENG_2_2) lib/libc_r/uthread uthread_kern.c Log: MFC: when in PS_SIGWAIT state, still call signal handlers and set errno to EINTR. Revision Changes Path 1.3.2.3 +2 -13 src/lib/libc_r/uthread/uthread_kern.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 04:31:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA06266 for cvs-all-outgoing; Fri, 17 Apr 1998 04:31:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ns1.yes.no (ns1.yes.no [195.119.24.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA06255 for ; Fri, 17 Apr 1998 11:31:28 GMT (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [194.198.43.36]) by ns1.yes.no (8.8.7/8.8.7) with ESMTP id LAA21165; Fri, 17 Apr 1998 11:31:14 GMT Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id NAA07590; Fri, 17 Apr 1998 13:31:14 +0200 (MET DST) Message-ID: <19980417133113.51307@follo.net> Date: Fri, 17 Apr 1998 13:31:13 +0200 From: Eivind Eklund To: "Jordan K. Hubbard" Cc: Peter Hawkins , cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail References: <19980417014455.02651@follo.net> <7961.892771982@time.cdrom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <7961.892771982@time.cdrom.com>; from Jordan K. Hubbard on Thu, Apr 16, 1998 at 05:13:02PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Thu, Apr 16, 1998 at 05:13:02PM -0700, Jordan K. Hubbard wrote: > > Jordan is also the guy who is constantly forgetting to set up > > forward files for new committers, so you'd probably be well of > > Ahem! :) I don't forget to set up forward files, it's simply not my job > to do that - how the hell am I supposed to know where they want their > mail forwarded? :-) You ask 'em. It's really very simple - a single e-mail to their old address will usually suffice *grin*. (This is at least what Joerg did for me, when I first got my commit privileges). I don't think we can expect new committers to know their way around our infrastructure 'by magic' - and making sure their mail is forwarded correctly from the start saves them a lot of trouble. Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 04:45:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA07716 for cvs-all-outgoing; Fri, 17 Apr 1998 04:45:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from rhiannon.clari.net.au (rhiannon.clari.net.au [203.27.85.9]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA07708 for ; Fri, 17 Apr 1998 11:45:12 GMT (envelope-from peter@clari.net.au) Received: from dana.clari.net.au (dana.clari.net.au [203.27.85.21]) by rhiannon.clari.net.au (8.8.8/8.8.5) with SMTP id VAA29605; Fri, 17 Apr 1998 21:44:50 +1000 (EST) Date: Fri, 17 Apr 1998 21:44:50 +1000 (EST) From: Peter Hawkins To: Eivind Eklund cc: Peter Hawkins , cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail In-Reply-To: <19980417014455.02651@follo.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Elvind, Thankyou for your welcome and the advice. OK so lemme get this straight... I'm on the "FreeBSD spacetour", the "takeoff engineer" is "overworked", the ship has the odd "lithp", but we can't "patch the hull". The ports/dockers authority calls wildcat stoppages during which any imports result in instant death, while the "perfection police" wander about the ship reminding the crew that everyone from the captain to the tealady are getting it wrong. The "takeoff engineer" sometimes forgets not to forward mission control's communications to /dev/null but that's OK because we have a direct line to someone with "ten times the efficiency of god" who is the one who "ends up doing everything". Regrettably though, he's reached the time in his life where he's greatest concern is the smooth running of his PPP. Gee this sounds like the ride of my life! Nice to meet you one and all, Peter Clarinet Internet Peter Hawkins 51 Barnard Grv, Manager Kew, Vic, Australia 3101 Ph: +61-3-9421 2006 Fax: +61-3-9421 2007 http://www.clari.net.au Peter@clari.net.au To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 05:02:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA09583 for cvs-all-outgoing; Fri, 17 Apr 1998 05:02:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA09578; Fri, 17 Apr 1998 12:02:26 GMT (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA10968; Fri, 17 Apr 1998 05:02:14 -0700 (PDT) Date: Fri, 17 Apr 1998 05:02:14 -0700 (PDT) Message-Id: <199804171202.FAA10968@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook authors.sgml contrib.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/04/17 05:02:14 PDT Modified files: handbook authors.sgml contrib.sgml Log: Add myself to authors.sgml and contrib.sgml Revision Changes Path 1.99 +5 -1 doc/handbook/authors.sgml 1.281 +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 Apr 17 05:31:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA12204 for cvs-all-outgoing; Fri, 17 Apr 1998 05:31:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA12187; Fri, 17 Apr 1998 12:30:53 GMT (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-35.ix.netcom.com [207.93.143.163]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id FAA02582; Fri, 17 Apr 1998 05:30:50 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id FAA13414; Fri, 17 Apr 1998 05:30:46 -0700 (PDT) Date: Fri, 17 Apr 1998 05:30:46 -0700 (PDT) Message-Id: <199804171230.FAA13414@silvia.HIP.Berkeley.EDU> To: kuriyama@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG In-reply-to: <199804171202.FAA10968@freefall.freebsd.org> (message from Jun Kuriyama on Fri, 17 Apr 1998 05:02:14 -0700 (PDT)) Subject: Re: cvs commit: doc/handbook authors.sgml contrib.sgml From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Modified files: * handbook authors.sgml contrib.sgml Yikes, so you weren't in the "Additional Contributors" list? Unbelievable. My apologies on behalf of many ports' committers for assuming you were already there! Satoshi P.S. BTW, it's jmz, max, steve and itojun's fault. ;) P.P.S. Your first commit looks fine! Congratulations! (Did I tell you that my first commit was to import a brand new port directly under ${CVSROOT}? ;) Now go ahead and rip up the ports tree! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 06:12:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA17430 for cvs-all-outgoing; Fri, 17 Apr 1998 06:12:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA17424; Fri, 17 Apr 1998 13:12:24 GMT (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA11207; Fri, 17 Apr 1998 06:12:11 -0700 (PDT) Date: Fri, 17 Apr 1998 06:12:11 -0700 (PDT) Message-Id: <199804171312.GAA11207@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/ja/handbook authors.sgml contrib.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/04/17 06:12:11 PDT Modified files: ja/handbook authors.sgml contrib.sgml Log: Of course, I know who should update these files. :-) Following changes in the English version are merged. authors.sgml: 1.95 -> 1.99 contrib.sgml: 1.277 -> 1.281 Revision Changes Path 1.42 +14 -2 doc/ja/handbook/authors.sgml 1.79 +7 -3 doc/ja/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 Apr 17 06:12:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA17511 for cvs-all-outgoing; Fri, 17 Apr 1998 06:12:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from rhiannon.clari.net.au (rhiannon.clari.net.au [203.27.85.9]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA17452 for ; Fri, 17 Apr 1998 13:12:27 GMT (envelope-from peter@clari.net.au) Received: from dana.clari.net.au (dana.clari.net.au [203.27.85.21]) by rhiannon.clari.net.au (8.8.8/8.8.5) with SMTP id XAA02468; Fri, 17 Apr 1998 23:10:12 +1000 (EST) Date: Fri, 17 Apr 1998 23:10:12 +1000 (EST) From: Peter Hawkins To: Eivind Eklund cc: "Jordan K. Hubbard" , Peter Hawkins , cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail In-Reply-To: <19980417133113.51307@follo.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk No hassles. I set up ssh authentication and forwarding - no need to cc me if I'm in the list as thepish@. Peter Clarinet Internet Peter Hawkins 51 Barnard Grv, Manager Kew, Vic, Australia 3101 Ph: +61-3-9421 2006 Fax: +61-3-9421 2007 http://www.clari.net.au Peter@clari.net.au To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 06:21:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA19021 for cvs-all-outgoing; Fri, 17 Apr 1998 06:21:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA19014; Fri, 17 Apr 1998 13:21:35 GMT (envelope-from erich@FreeBSD.org) From: "Eric L. Hernes" Received: (from erich@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA11311; Fri, 17 Apr 1998 06:21:22 -0700 (PDT) Date: Fri, 17 Apr 1998 06:21:22 -0700 (PDT) Message-Id: <199804171321.GAA11311@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/gtk Makefile ports/x11/gtk/files md5 ports/x11/gtk/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk erich 1998/04/17 06:21:22 PDT Modified files: x11/gtk Makefile x11/gtk/files md5 x11/gtk/pkg PLIST Log: update to gtk-1.0.0 Revision Changes Path 1.15 +4 -4 ports/x11/gtk/Makefile 1.12 +1 -1 ports/x11/gtk/files/md5 1.16 +32 -32 ports/x11/gtk/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 06:31:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA20747 for cvs-all-outgoing; Fri, 17 Apr 1998 06:31:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA20740; Fri, 17 Apr 1998 13:31:33 GMT (envelope-from erich@FreeBSD.org) From: "Eric L. Hernes" Received: (from erich@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA11473; Fri, 17 Apr 1998 06:31:20 -0700 (PDT) Date: Fri, 17 Apr 1998 06:31:20 -0700 (PDT) Message-Id: <199804171331.GAA11473@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/graphics/gimp-devel Makefile ports/graphics/gimp-devel/files md5 ports/graphics/gimp-devel/patches patch-ah patch-ai ports/graphics/gimp-devel/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk erich 1998/04/17 06:31:20 PDT Modified files: graphics/gimp-devel Makefile graphics/gimp-devel/files md5 graphics/gimp-devel/patches patch-ah patch-ai graphics/gimp-devel/pkg PLIST Log: upgrade to 0.99.26 Revision Changes Path 1.26 +2 -2 ports/graphics/gimp-devel/Makefile 1.15 +1 -2 ports/graphics/gimp-devel/files/md5 1.11 +44 -27 ports/graphics/gimp-devel/patches/patch-ah 1.6 +75 -33 ports/graphics/gimp-devel/patches/patch-ai 1.17 +151 -123 ports/graphics/gimp-devel/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 07:02:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA25734 for cvs-all-outgoing; Fri, 17 Apr 1998 07:02:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from lsd.relcom.eu.net (lsd.relcom.eu.net [193.125.27.73]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA25724; Fri, 17 Apr 1998 14:02:31 GMT (envelope-from ache@lsd.relcom.eu.net) Received: (from ache@localhost) by lsd.relcom.eu.net (8.8.8/8.8.8) id SAA12826; Fri, 17 Apr 1998 18:02:28 +0400 (MSD) (envelope-from ache) Message-ID: <19980417180227.45217@nagual.pp.ru> Date: Fri, 17 Apr 1998 18:02:27 +0400 From: =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= To: Satoshi Asami Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: Re: cvs commit: src/etc make.conf Mail-Followup-To: Satoshi Asami , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org References: <19980417060627.25427@nagual.pp.ru> <199804170907.CAA12297@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <199804170907.CAA12297@silvia.HIP.Berkeley.EDU>; from asami@FreeBSD.org on Fri, Apr 17, 1998 at 02:07:08AM -0700 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Fri, Apr 17, 1998 at 02:07:08AM -0700, Satoshi Asami wrote: > * Adding things from non-existance is harder than uncomment/edit some > * pre-existen line, so it will be more comfortable to have _all_ > * bsd.port.mk variables mentioned in make.conf.ports > > I disagree. The header of bsd.port.mk is already over 200 lines > long. It will be useless to duplicate that elsewhere because it will > very likely get out of sync very quickly (both because committers > can't remember to update the same thing in many places and because > /etc is not updated by "make world"). Better remove header from bsd.port.mk and put it to /etc/make.ports.conf, then include /etc/make.ports.conf in bsd.port.mk. To not stay out of sync some check must be added in bsd.port.mk which yell about obsoleted /etc/make.ports.conf needs upgrade. I mean variables that really supposed to be changed, not all ones. > I've already said everything I want on this topic. If we can agree to > disagree, I'm going to take out everything but HAVE_MOTIF in > /etc/make.conf. Sorry, but that's my area. Well, your choice. -- Andrey A. Chernov http://www.nagual.pp.ru/~ache/ MTH/SH/HE S-- W-- N+ PEC>+ D A a++ C G>+ QH+(++) 666+>++ Y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 07:39:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA01813 for cvs-all-outgoing; Fri, 17 Apr 1998 07:39:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA01808; Fri, 17 Apr 1998 14:39:50 GMT (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA05435; Fri, 17 Apr 1998 07:39:37 -0700 (PDT) Date: Fri, 17 Apr 1998 07:39:37 -0700 (PDT) Message-Id: <199804171439.HAA05435@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/japanese/man Makefile ports/japanese/man/files md5 ports/japanese/man/patches patch-aa patch-ab Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/04/17 07:39:37 PDT Modified files: japanese/man Makefile japanese/man/files md5 japanese/man/patches patch-aa Removed files: japanese/man/patches patch-ab Log: This is my first commit about ports collection. Upgrade to 1.1g PR: 6217 Submitted by: myself :-) Revision Changes Path 1.15 +4 -4 ports/japanese/man/Makefile 1.6 +1 -1 ports/japanese/man/files/md5 1.4 +4 -4 ports/japanese/man/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 08:46:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA13416 for cvs-all-outgoing; Fri, 17 Apr 1998 08:46:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA13153; Fri, 17 Apr 1998 15:44:35 GMT (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 RAA28775; Fri, 17 Apr 1998 17:44:32 +0200 (MET DST) Received: (from dag-erli@localhost) by hrotti.ifi.uio.no ; Fri, 17 Apr 1998 17:44:31 +0200 (MET DST) Mime-Version: 1.0 To: Chris Timmons Cc: Poul-Henning Kamp , committers@FreeBSD.ORG Subject: Re: Come on guys, close a PR or two, will ya ? References: Organization: Gutteklubben Terrasse / KRST / PUMS / YASMW X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-Stop-Spam: http://www.cauce.org From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 17 Apr 1998 17:44:30 +0200 In-Reply-To: Chris Timmons's message of "Tue, 14 Apr 1998 17:31:19 -0700 (PDT)" Message-ID: Lines: 8 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Chris Timmons writes: > And for those of you who aren't real keen about gnats, give tkgnats a try > - it made it much easier for me to sift through the pile! Pointers? -- Nobody else has a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 08:47:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA13471 for cvs-all-outgoing; Fri, 17 Apr 1998 08:47:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA13398; Fri, 17 Apr 1998 15:46:25 GMT (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 RAA28981; Fri, 17 Apr 1998 17:46:23 +0200 (MET DST) Received: (from dag-erli@localhost) by hrotti.ifi.uio.no ; Fri, 17 Apr 1998 17:46:22 +0200 (MET DST) Mime-Version: 1.0 To: Poul-Henning Kamp Cc: committers@FreeBSD.ORG Subject: Re: Come on guys, close a PR or two, will ya ? References: <951.892583552@critter.freebsd.dk> Organization: Gutteklubben Terrasse / KRST / PUMS / YASMW X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-Stop-Spam: http://www.cauce.org From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 17 Apr 1998 17:46:21 +0200 In-Reply-To: Poul-Henning Kamp's message of "Tue, 14 Apr 1998 21:52:32 +0200" Message-ID: Lines: 10 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Poul-Henning Kamp writes: > We're down to 1120 PRs now[*], and I would really like to be below 500 or > so by the time 3.0 comes out of the door, but there is no way I can > do that singlehandedly... How about setting up a list of "PR killers" and assigning a handful of PRs to each every week or month? Sign me up... -- Nobody else has a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 08:57:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA16063 for cvs-all-outgoing; Fri, 17 Apr 1998 08:57:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA16052; Fri, 17 Apr 1998 15:57:42 GMT (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA05893; Fri, 17 Apr 1998 08:57:28 -0700 (PDT) Date: Fri, 17 Apr 1998 08:57:28 -0700 (PDT) Message-Id: <199804171557.IAA05893@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT avail Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/04/17 08:57:28 PDT Modified files: . avail Log: It is my second pleasure in two days, this time welcoming Mr. Matthew Hunt ("mph") to our esteemed (and overworked) rank of ports committers. Welcome aboard, flight officer Hunt. It's too early in the morning for me to type in the welcome message, so please go dig up the one I sent to flight officer Kuriyama yesterday. Everything in there applies to you too (including the parts of finally being able to work on your own PRs). Lieutenant Asami signing off. (It's going to be a long day....) Revision Changes Path 1.32 +2 -2 CVSROOT/avail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 09:15:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA20871 for cvs-all-outgoing; Fri, 17 Apr 1998 09:15:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA20861 for ; Fri, 17 Apr 1998 16:15:39 GMT (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id JAA11990; Fri, 17 Apr 1998 09:13:19 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Mark Murray cc: Poul-Henning Kamp , Eivind Eklund , Peter Hawkins , cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail In-reply-to: Your message of "Fri, 17 Apr 1998 12:15:07 +0200." <199804171015.MAA14986@greenpeace.grondar.za> Date: Fri, 17 Apr 1998 09:13:19 -0700 Message-ID: <11986.892829599@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > > The chap I want to meet can whistle modem tones and do mental arithmetic > well enough to log onto his local ISP and send PGP-encrypted MIME email > using an ordinary telephone handset. > For similar degree of silliness, try telneting to localhost at port 6000 if you're running an X server and see if you can dialog with the server *just* by typing characters at the keyboard (usage of meta or compose key is allowed). I once fooled around with this back in the early days of X, using a copy of the X11 protocol spec and a calculator for specifying the integer constants in the right byte order, and managed to create a window, allocate a GC and draw a line before I returned to my senses and wondered why I was wasting my time with such silly pursuits. :-) Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 09:39:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA25252 for cvs-all-outgoing; Fri, 17 Apr 1998 09:39:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ns1.yes.no (ns1.yes.no [195.119.24.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA25232 for ; Fri, 17 Apr 1998 16:39:07 GMT (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [194.198.43.36]) by ns1.yes.no (8.8.7/8.8.7) with ESMTP id QAA06828; Fri, 17 Apr 1998 16:39:04 GMT Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id SAA08646; Fri, 17 Apr 1998 18:39:03 +0200 (MET DST) Message-ID: <19980417183902.45662@follo.net> Date: Fri, 17 Apr 1998 18:39:02 +0200 From: Eivind Eklund To: Matthew Hunt , Jun Kuriyama Cc: cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail References: <199804171557.IAA05893@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <199804171557.IAA05893@freefall.freebsd.org>; from Satoshi Asami on Fri, Apr 17, 1998 at 08:57:28AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Fri, Apr 17, 1998 at 08:57:28AM -0700, Satoshi Asami wrote: > asami 1998/04/17 08:57:28 PDT > > Modified files: > . avail > Log: > It is my second pleasure in two days, this time welcoming > Mr. Matthew Hunt ("mph") to our esteemed (and overworked) rank of > ports committers. Welcome aboard, Matthew and Jun, and thanks for going with FreeBSD Spacetours. (All of the below goes for you too, Jun - just replace Matthew's login with your own). Your CVS-meister will be Peter Wemm - take any repository-related problems with him. Patching the hull yourself (AKA writing directly to the repository) is strictly not allowed without prior permission; this include all cases. In case of emergency, Cc: to root@freebsd.org. Be aware of the severe implications of running a blow-torch ('cvs import') in the ship - it might sometimes be necessary, but we really recommend using Joergs new blowtorch with safety features (the 'easy-import' script on freefall). Besides Peter Wemm, there are other officers you'll get to know: Satoshi Asami A lean, mean ports-machine. This guy owns the docking machinery (bsd.port.mk) which you are not allowed to touch without permission, and have ultimate authority over all modifcations to docking setups (ports). Touch them when he's declared a hands-off, and you'll get your commit privileges suspended faster than you can say 'ports-freeze'. To avoid him having to throw too many dinner-plates through the hall (fixing up trivial mistakes), it will be appreciated if you check that your new docks work with autopilots (packages correctly), apply to the correct class of ships (fetch correctly), and pass the standard tests (compile from scratch and pass portlint). Jordan K Hubbard The usual takeoff-manager (release-engineer). When you forget to merge good, wholesome changes from -current (HEAD) to -stable (at the moment RELENG_2_2 - not some magic number), it is Jordan who is most likely to get the extra work. So remember to merge - he's overworked enough as it is. Jordan is also the guy who is constantly claiming that he's not forgetting to set up forward files for new committers, so you'd probably be well of logging into hub.freebsd.org and setting /var/forward/mph to point to where you want your mail to land. There's probably some letters from your sweetheart waiting for you on hub already.. Bruce Evans Perfection police. When you do a commit that could have been done better, Bruce will be there. Even though it can be extremely annoying to be reminded of your own imperfections at all the in-opportune moments, Bruce is a good guy too. Garrett Wollman If you speak some obscure network internals, and you think FreeBSD has a lithp somewhere, then Garret is likely a good person to know about - he's responsible for the overall state of FreeBSD networking internals. John D. Polstra John is the guy behind our great 'shoot pieces of FreeBSD all over the world' technology, AKA cvsup. If you need to cvsup directly from freefall (and this can be useful at times, though it shouldn't be a regular habit unless you need it) you should ask John to set this up for you. ... and some important privates: Steve Price Steve is Problem Report-meister. and will be assigning you additional trouble sometimes. He tries to fix it all himself, but should really be less reluctant to use us others. Brian Somers Official maintainer of /usr/bin/ppp and LPD. He's ten times as efficient as god on changing PPP, so if you intend to help out there, be prepared to feel quite inadequate as he end up doing everything. Mark Murray Mark is the guy in the black hat, the one always one step ahead of NSA. If you can't read this: Vs lbh qb nal jbex gung vf pelcgb-eryngrq - cyrnfr fraq zr (znexz@serrofq.bet) n pbcl bs lbhe cngpurf sbe vapyhfvba vagb gur Vagreangvbany Pelcgb Ercbfvgbel. Orggre fgvyy, nfx zr sbe na nppbhag ba gung znpuvar naq pbzzvg gur qvssf gurer nf jryy. Guvf nccyvrf gb nyy pbqr va fep/rObarf, frp/frpher naq fep/pelcgb. then you shouldn't be touching src/eBones, sec/secure and src/crypto. (Anybody that feel left out - speak up. I've just included the people that I thought were likely to need their roles explained - no significance attached). For your convenience, we repeat some of the magic tricks of using CVS with SSH below: 1. Always use ssh public key authentication with agents to work against freefall. This is (a) secure and (b) extremely convenient. Details below. 2. Set your CVS_RSH=ssh 3. Store your local CVS-repository in /home/ncvs, as freefall hasn't got a /home/FreeBSD alias, so you can't store the repository anywhere intuitive. (Well, OpenBSD doesn't implement /home/OpenBSD, either - they're worse...) 4. Set alias lcvs='cvs -d /home/ncvs' 5. Set alias fcvs='cvs -d mph@freefall.freebsd.org:/home/ncvs' Now, use lcvs to checkout/diff/update locally, and when you want to commit to freefall, use fcvs commit in the same directory. Remember: Doing a 'lcvs diff' before you commit is usually a good idea. 6. (Vary depending on preferences only) echo 'diff -u' > ~/.cvsrc echo 'update -Pd' >> ~/.cvsrc will give you unified diffs and pruned updates with directories. You'll probably want these two options. Now, for the ssh-setup (if you haven't done this already): 1.1 Put 'ssh-agent sh ~/.xsession-real' in ~/.xsession after having copied your old .xsession to .xsession-real. 1.2 Generate an ssh private/public key pair by running 'ssh-keygen' 1.3 Copy the public part of the key (~/.ssh/identity.pub) to freefall:/home/mph/.ssh/authorized_keys 1.4 Check that /home/mph and /home/mph/.ssh is owned by 'mph', and does NOT have group write access. (Otherwise, it Just Won't Work). Now, when you want to get ready for authentication, run 1.5 'ssh-add' to add your private key to the authentication agent. Take particular note of the neat X-display if you run 'ssh-add < /dev/null' - I have this in my startup. (I am in a fairly secure environment, and I lock my display any time I leave my machine). After having stored your key in the authentication-agent (step 1.3 above), just ssh to the places you've added your identity.pub to - you'll be authenticaten through your agent, no passwords. The same goes for secure remote `cvs commit's. Oh, and when you fix the fact that somebody else have delivered a report of a leak in the ship or a suggestion for an improvement[1], you can run 'edit-pr ' on freefall to close it. It's easy, just like closing a door - you just change 'open' to 'closed'. Relax now - the impending takeoff will be at your hands, but it will _not_ include any mutilated bodies on the ground (AKA world-breakages) or bodies falling from the sky (AKA release-breakages). Everything will be just fine. No committer has ever screwed up. :-) Starship Mate Eivind signing off. [1] Both are known as Problem Reports, or PRs for short - this is because they give the committers extra problems. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 09:44:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA26680 for cvs-all-outgoing; Fri, 17 Apr 1998 09:44:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA26589; Fri, 17 Apr 1998 16:43:46 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA06390; Fri, 17 Apr 1998 09:43:31 -0700 (PDT) Date: Fri, 17 Apr 1998 09:43:31 -0700 (PDT) Message-Id: <199804171643.JAA06390@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook authors.sgml contrib.sgml submitters.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/17 09:43:31 PDT Modified files: handbook authors.sgml contrib.sgml submitters.sgml Log: As per tradition, remove myself from "Submitters" and add myself to "Committers". Revision Changes Path 1.100 +5 -1 doc/handbook/authors.sgml 1.282 +2 -1 doc/handbook/contrib.sgml 1.168 +1 -3 doc/handbook/submitters.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 10:21:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA04948 for cvs-all-outgoing; Fri, 17 Apr 1998 10:21:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA04909; Fri, 17 Apr 1998 17:21:36 GMT (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-35.ix.netcom.com [207.93.143.163]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id KAA02946; Fri, 17 Apr 1998 10:21:34 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id KAA14736; Fri, 17 Apr 1998 10:21:32 -0700 (PDT) Date: Fri, 17 Apr 1998 10:21:32 -0700 (PDT) Message-Id: <199804171721.KAA14736@silvia.HIP.Berkeley.EDU> To: jseger@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG In-reply-to: <199804171036.DAA10090@freefall.freebsd.org> (jseger@FreeBSD.ORG) Subject: Re: cvs commit: ports/www/mozilla Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Define BUILD_OPT and NO_NETSCAPE_STATIC. This now lets us build mozilla in * 100MB of disk space. The size of a package created from make package is now * 3MB! Justin, you are my hero! -rw-r--r-- 1 asami ftp-Free 20068241 Apr 15 21:26 mozilla-1998-04-08.tgz -rw-r--r-- 1 asami ftp-Free 3647721 Apr 17 04:58 mozilla-1998-04-08.tgz Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 10:26:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA05631 for cvs-all-outgoing; Fri, 17 Apr 1998 10:26:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA05626; Fri, 17 Apr 1998 17:26:05 GMT (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 KAA06938; Fri, 17 Apr 1998 10:25:51 -0700 (PDT) Date: Fri, 17 Apr 1998 10:25:51 -0700 (PDT) Message-Id: <199804171725.KAA06938@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/lpr/lpr lpr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/04/17 10:25:51 PDT Modified files: usr.sbin/lpr/lpr lpr.c Log: Make ``-h'' follow the manpage, and suppress the burst page reguardless of the number of ``-h'' given. Revision Changes Path 1.24 +3 -3 src/usr.sbin/lpr/lpr/lpr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 10:30:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA06096 for cvs-all-outgoing; Fri, 17 Apr 1998 10:30:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.95.76.54]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA05688; Fri, 17 Apr 1998 17:26:42 GMT (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.8.8/8.8.5) id KAA07561; Fri, 17 Apr 1998 10:29:25 -0700 (PDT) From: Steve Kargl Message-Id: <199804171729.KAA07561@troutmask.apl.washington.edu> Subject: Re: cvs commit: ports/www/mozilla/patches patch-ad In-Reply-To: <19980417093939.29102@hightek.com> from Andreas Klemm at "Apr 17, 98 09:39:39 am" To: aklemm@hightek.com (Andreas Klemm) Date: Fri, 17 Apr 1998 10:29:25 -0700 (PDT) Cc: garyj@muc.de, jseger@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk According to Andreas Klemm: > On Thu, Apr 16, 1998 at 11:51:07PM +0200, Gary Jennejohn wrote: > > "Justin M. Seger" writes: > > >jseger 1998/04/15 18:57:16 PDT > > > Modified files: > > > www/mozilla/patches patch-ad > > > Log: > > > Fix selection of static or shared library. I'd appreciate it if someone > > > using lesstif could test this. > > > > fails miserably (with lesstif); doesn't find libXm in /usr/X11R6/lib. > > MOTIFLIB _is_ defined in /etc/make.conf. > > Does it still try to link with libXm.a ? lesstif only has a shared > lib. Could this be changed by hacking mozilla port to use a shared > per default ? Only a static, if someone creates a Mozilla tarball > with a real Motif developer kit ? > You can buld lesstif with both static and shared libraries. The port should include --enable-static and --enable-shared in the configure arguments. Note: I doubt mozilla will function as expected with lesstif because lesstif is still fairly far from being complete. -- Steve finger kargl@troutmask.apl.washington.edu http://troutmask.apl.washington.edu/~clesceri/kargl.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 10:53:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA11832 for cvs-all-outgoing; Fri, 17 Apr 1998 10:53:32 -0700 (PDT) (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 RAA11756; Fri, 17 Apr 1998 17:53:23 GMT (envelope-from obrien@dragon.nuxi.com) Received: from dragon.nuxi.com (d60-090.leach.ucdavis.edu [169.237.60.90]) by relay.nuxi.com (8.8.7/8.6.12) with ESMTP id KAA26252; Fri, 17 Apr 1998 10:53:20 -0700 (PDT) Received: (from obrien@localhost) by dragon.nuxi.com (8.8.8/8.7.3) id RAA14306; Fri, 17 Apr 1998 17:53:20 GMT Message-ID: <19980417105320.45001@nuxi.com> Date: Fri, 17 Apr 1998 10:53:20 -0700 From: "David O'Brien" To: Steve Kargl Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/www/mozilla/patches patch-ad Reply-To: obrien@NUXI.com References: <19980417093939.29102@hightek.com> <199804171729.KAA07561@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.88 In-Reply-To: <199804171729.KAA07561@troutmask.apl.washington.edu>; from Steve Kargl on Fri, Apr 17, 1998 at 10:29:25AM -0700 X-Warning: Mutt Bites! X-Operating-System: FreeBSD 2.2.6-STABLE Organization: The NUXI *BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Note: I doubt mozilla will function as expected with lesstif because > lesstif is still fairly far from being complete. Not as well, but somewhat. Netscape brought in some Linux weenie from UC Santa Cruz to beta test building the Unix source. He, and the Mac guy, got *much* farther than the winloose95 luser. -- -- 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 Fri Apr 17 11:05:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA14112 for cvs-all-outgoing; Fri, 17 Apr 1998 11:05:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA14071; Fri, 17 Apr 1998 18:05:37 GMT (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 LAA07191; Fri, 17 Apr 1998 11:05:23 -0700 (PDT) Date: Fri, 17 Apr 1998 11:05:23 -0700 (PDT) Message-Id: <199804171805.LAA07191@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/misc/plan Makefile ports/misc/plan/files md5 ports/misc/plan/patches patch-ab patch-ac patch-ad patch-ae patch-af patch-ah patch-ai patch-aj ports/misc/plan/pkg DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/04/17 11:05:22 PDT Modified files: misc/plan Makefile misc/plan/files md5 misc/plan/patches patch-ab misc/plan/pkg DESCR PLIST Removed files: misc/plan/patches patch-ac patch-ad patch-ae patch-af patch-ah patch-ai patch-aj Log: Upgrade to version 1.7.1. Revision Changes Path 1.10 +5 -3 ports/misc/plan/Makefile 1.5 +1 -1 ports/misc/plan/files/md5 1.7 +206 -163 ports/misc/plan/patches/patch-ab 1.4 +2 -0 ports/misc/plan/pkg/DESCR 1.7 +5 -0 ports/misc/plan/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 11:08:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA15492 for cvs-all-outgoing; Fri, 17 Apr 1998 11:08:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA15438; Fri, 17 Apr 1998 18:08:50 GMT (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 LAA07265; Fri, 17 Apr 1998 11:08:35 -0700 (PDT) Date: Fri, 17 Apr 1998 11:08:35 -0700 (PDT) Message-Id: <199804171808.LAA07265@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/japanese/plan Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/04/17 11:08:35 PDT Modified files: japanese/plan Makefile Log: Mark this broken. Has a build problem w/in 1.7.1. Since we have a newly built ja-plan binary in 2.2.6-R, we've got some breathing room on getting this fixed. Revision Changes Path 1.2 +2 -1 ports/japanese/plan/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 11:24:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA21033 for cvs-all-outgoing; Fri, 17 Apr 1998 11:24:49 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA20884 for ; Fri, 17 Apr 1998 18:24:01 GMT (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-35.ix.netcom.com [207.93.143.163]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id LAA03014; Fri, 17 Apr 1998 11:23:33 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id LAA14951; Fri, 17 Apr 1998 11:23:27 -0700 (PDT) Date: Fri, 17 Apr 1998 11:23:27 -0700 (PDT) Message-Id: <199804171823.LAA14951@silvia.HIP.Berkeley.EDU> To: peter@clari.net.au CC: eivind@yes.no, peter@hilink.com.au, cvs-committers@FreeBSD.ORG In-reply-to: (message from Peter Hawkins on Fri, 17 Apr 1998 21:44:50 +1000 (EST)) Subject: Re: cvs commit: CVSROOT avail From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk By the way, just to make sure I didn't scare off too many people.... I haven't suspended anybody's commit priviledges for more than a year (I think it's more like two years), and I have never done it for an honest mistake. Only repeated offenders get thrown out of the ship without their spacesuits. :) Also, I have done it only once. (At least I only remember one...hmm, my memory as failing me...maybe I need to get some more beer....) Satoshi (aka the bald lieutenant with one artificial hand) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 12:15:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA05498 for cvs-all-outgoing; Fri, 17 Apr 1998 12:15:20 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA05475; Fri, 17 Apr 1998 19:15:17 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA08524; Fri, 17 Apr 1998 12:15:03 -0700 (PDT) Date: Fri, 17 Apr 1998 12:15:03 -0700 (PDT) Message-Id: <199804171915.MAA08524@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/17 12:15:03 PDT Modified files: . modules Log: p5-ReadLine-Gnu --> ports/devel/p5-ReadLine-Gnu Revision Changes Path 1.1912 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 12:16:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA05792 for cvs-all-outgoing; Fri, 17 Apr 1998 12:16:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA05785; Fri, 17 Apr 1998 19:16:34 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA08539; Fri, 17 Apr 1998 12:16:20 -0700 (PDT) Date: Fri, 17 Apr 1998 12:16:20 -0700 (PDT) Message-Id: <199804171916.MAA08539@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/p5-ReadLine-Gnu - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/17 12:16:19 PDT ports/devel/p5-ReadLine-Gnu - Imported sources Update of /home/ncvs/ports/devel/p5-ReadLine-Gnu In directory freefall.freebsd.org:/d/users/mph/p5-ReadLine-Gnu Log Message: My first import of a port (fingers crossed). PR: 5793 Status: Vendor Tag: MPH Release Tags: mph_009 N ports/devel/p5-ReadLine-Gnu/Makefile I ports/devel/p5-ReadLine-Gnu/CVS N ports/devel/p5-ReadLine-Gnu/files/md5 N ports/devel/p5-ReadLine-Gnu/pkg/PLIST N ports/devel/p5-ReadLine-Gnu/pkg/COMMENT N ports/devel/p5-ReadLine-Gnu/pkg/DESCR No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 13:16:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA18710 for cvs-all-outgoing; Fri, 17 Apr 1998 13:16:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from peedub.muc.de (newpc.muc.ditec.de [194.120.126.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA18686; Fri, 17 Apr 1998 20:16:43 GMT (envelope-from garyj@peedub.muc.de) Received: from peedub.muc.de (localhost [127.0.0.1]) by peedub.muc.de (8.8.8/8.6.9) with ESMTP id WAA14385; Fri, 17 Apr 1998 22:17:09 +0200 (CEST) Message-Id: <199804172017.WAA14385@peedub.muc.de> X-Mailer: exmh version 2.0.1 12/23/97 To: cvs-ports@FreeBSD.ORG Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/www/mozilla/patches patch-ad Reply-To: Gary Jennejohn In-reply-to: Your message of "Fri, 17 Apr 1998 10:26:10 +0200." <199804170826.BAA12059@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 17 Apr 1998 22:17:08 +0200 From: Gary Jennejohn Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Satoshi Asami writes: > * Does it still try to link with libXm.a ? lesstif only has a shared > * lib. Could this be changed by hacking mozilla port to use a shared > >This shouldn't be a problem, as MOTIFLIB is used by all Motif ports. >If it fails for mozilla for that reason, it should fail for other >ports too. > >It doesn't work for me either (I already sent mail to Justin about >this), looks like the port is for whatever reason picking up MOTIFLIB >at all. The linker line is lacking any mention of Xm. > >Satoshi could it be because the port is actually using gmake and make isn't passing its environment ? --- Gary Jennejohn Home - garyj@muc.de Work - garyj@fkr.dec.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 13:17:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA18774 for cvs-all-outgoing; Fri, 17 Apr 1998 13:17:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA18759 for ; Fri, 17 Apr 1998 20:17:04 GMT (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 WAA24857 for ; Fri, 17 Apr 1998 22:16:49 +0200 (MET DST) Received: (from dag-erli@localhost) by hrotti.ifi.uio.no ; Fri, 17 Apr 1998 22:16:49 +0200 (MET DST) Mime-Version: 1.0 To: cvs-committers@FreeBSD.ORG Subject: Useless PRs Organization: Gutteklubben Terrasse / KRST / PUMS / YASMW X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-Stop-Spam: http://www.cauce.org From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 17 Apr 1998 22:16:48 +0200 Message-ID: Lines: 7 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk What should we do about PRs such as kern/3761? Drop them in a black hole or leave them open and ask the originator for more / better information? kern/3761 is about not getting an EtherExpress card to work under 2.1.x... -- Nobody else has a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 13:22:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA19808 for cvs-all-outgoing; Fri, 17 Apr 1998 13:22:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA19801; Fri, 17 Apr 1998 20:22:01 GMT (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA08871; Fri, 17 Apr 1998 13:21:47 -0700 (PDT) Date: Fri, 17 Apr 1998 13:21:47 -0700 (PDT) Message-Id: <199804172021.NAA08871@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook authors.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/04/17 13:21:47 PDT Modified files: handbook authors.sgml Log: Dang, changed the mailto but forgot to change the text as well. Revision Changes Path 1.101 +2 -2 doc/handbook/authors.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 13:24:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA20223 for cvs-all-outgoing; Fri, 17 Apr 1998 13:24:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA20121 for ; Fri, 17 Apr 1998 20:24:09 GMT (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id WAA04861; Fri, 17 Apr 1998 22:22:58 +0200 (CEST) To: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) cc: cvs-committers@FreeBSD.ORG Subject: Re: Useless PRs In-reply-to: Your message of "17 Apr 1998 22:16:48 +0200." Date: Fri, 17 Apr 1998 22:22:58 +0200 Message-ID: <4859.892844578@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In message , Dag-Erling Coidan =?iso-8859-1? Q?Sm=F8rgrav?= writes: >What should we do about PRs such as kern/3761? Drop them in a black >hole or leave them open and ask the originator for more / better >information? kern/3761 is about not getting an EtherExpress card to >work under 2.1.x... Leave them to me, and I will decide. -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "Drink MONO-tonic, it goes down but it will NEVER come back up!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 13:25:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA20560 for cvs-all-outgoing; Fri, 17 Apr 1998 13:25:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id UAA20536; Fri, 17 Apr 1998 20:25:46 GMT (envelope-from imp@village.org) Received: from harmony [10.0.0.6] by rover.village.org with esmtp (Exim 1.71 #1) id 0yQHg6-00012l-00; Fri, 17 Apr 1998 14:24:06 -0600 Received: from harmony.village.org (localhost [127.0.0.1]) by harmony.village.org (8.8.8/8.8.3) with ESMTP id OAA05260; Fri, 17 Apr 1998 14:25:10 -0600 (MDT) Message-Id: <199804172025.OAA05260@harmony.village.org> To: asami@FreeBSD.ORG (Satoshi Asami) Subject: Re: cvs commit: CVSROOT avail Cc: peter@clari.net.au, eivind@yes.no, peter@hilink.com.au, cvs-committers@FreeBSD.ORG In-reply-to: Your message of "Fri, 17 Apr 1998 11:23:27 PDT." <199804171823.LAA14951@silvia.HIP.Berkeley.EDU> References: <199804171823.LAA14951@silvia.HIP.Berkeley.EDU> Date: Fri, 17 Apr 1998 14:25:10 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In message <199804171823.LAA14951@silvia.HIP.Berkeley.EDU> Satoshi Asami writes: : Only repeated offenders get thrown out of the ship without their : spacesuits. :) If you are lucky, the ship is berthing on a planet at the time :-) : Satoshi (aka the bald lieutenant with one artificial hand) Now what have we told you about being careful around the airlock doors :-) Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 13:27:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA20890 for cvs-all-outgoing; Fri, 17 Apr 1998 13:27:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA20883; Fri, 17 Apr 1998 20:26:59 GMT (envelope-from julian@FreeBSD.org) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA08944; Fri, 17 Apr 1998 13:26:44 -0700 (PDT) Date: Fri, 17 Apr 1998 13:26:44 -0700 (PDT) Message-Id: <199804172026.NAA08944@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/conf majors.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk julian 1998/04/17 13:26:44 PDT Modified files: sys/i386/conf majors.i386 Log: Reserve a number for the ALTQ control devices (96) Revision Changes Path 1.37 +3 -1 src/sys/i386/conf/majors.i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 13:31:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA21546 for cvs-all-outgoing; Fri, 17 Apr 1998 13:31:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA21540; Fri, 17 Apr 1998 20:31:13 GMT (envelope-from julian@FreeBSD.org) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA08989; Fri, 17 Apr 1998 13:30:58 -0700 (PDT) Date: Fri, 17 Apr 1998 13:30:58 -0700 (PDT) Message-Id: <199804172030.NAA08989@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/conf majors.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk julian 1998/04/17 13:30:58 PDT Modified files: (Branch: RELENG_2_2) sys/i386/conf majors.i386 Log: hold a number (that matches -current) for ALTQ remove duplicate DPT entry Revision Changes Path 1.9.2.10 +3 -3 src/sys/i386/conf/majors.i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 13:50:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA24611 for cvs-all-outgoing; Fri, 17 Apr 1998 13:50:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA24567 for ; Fri, 17 Apr 1998 20:50:35 GMT (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 WAA27374; Fri, 17 Apr 1998 22:50:32 +0200 (MET DST) Received: (from dag-erli@localhost) by hrotti.ifi.uio.no ; Fri, 17 Apr 1998 22:50:32 +0200 (MET DST) Mime-Version: 1.0 To: Poul-Henning Kamp Cc: cvs-committers@FreeBSD.ORG Subject: Re: Useless PRs References: <4859.892844578@critter.freebsd.dk> Organization: Gutteklubben Terrasse / KRST / PUMS / YASMW X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-Stop-Spam: http://www.cauce.org From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 17 Apr 1998 22:50:31 +0200 In-Reply-To: Poul-Henning Kamp's message of "Fri, 17 Apr 1998 22:22:58 +0200" Message-ID: Lines: 11 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Poul-Henning Kamp writes: > > What should we do about PRs such as kern/3761? Drop them in a black > Leave them to me, and I will decide. Aye aye, Sir. What about kern/4968? Looks to me like the problem was more or less identified as pilot error. Bruce? -- Nobody else has a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 13:56:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA25643 for cvs-all-outgoing; Fri, 17 Apr 1998 13:56:16 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA25625; Fri, 17 Apr 1998 20:56:12 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA09282; Fri, 17 Apr 1998 13:55:57 -0700 (PDT) Date: Fri, 17 Apr 1998 13:55:57 -0700 (PDT) Message-Id: <199804172055.NAA09282@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/17 13:55:57 PDT Modified files: . modules Log: p5-ReadLine-Perl --> ports/devel/p5-ReadLine-Perl Revision Changes Path 1.1913 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 13:57:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA25959 for cvs-all-outgoing; Fri, 17 Apr 1998 13:57:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA25917; Fri, 17 Apr 1998 20:57:44 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA09297; Fri, 17 Apr 1998 13:57:29 -0700 (PDT) Date: Fri, 17 Apr 1998 13:57:29 -0700 (PDT) Message-Id: <199804172057.NAA09297@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/p5-ReadLine-Perl - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/17 13:57:29 PDT ports/devel/p5-ReadLine-Perl - Imported sources Update of /home/ncvs/ports/devel/p5-ReadLine-Perl In directory freefall.freebsd.org:/d/users/mph/p5-ReadLine-Perl Log Message: Imported p5-ReadLine-Perl, a Perl5 module that allows command-line editing without needing GNU readline. PR: 5804 Status: Vendor Tag: MPH Release Tags: mph_09902 N ports/devel/p5-ReadLine-Perl/Makefile I ports/devel/p5-ReadLine-Perl/CVS N ports/devel/p5-ReadLine-Perl/files/md5 N ports/devel/p5-ReadLine-Perl/pkg/PLIST N ports/devel/p5-ReadLine-Perl/pkg/COMMENT N ports/devel/p5-ReadLine-Perl/pkg/DESCR No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 14:14:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA28716 for cvs-all-outgoing; Fri, 17 Apr 1998 14:14:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA28708; Fri, 17 Apr 1998 21:14:15 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA09355; Fri, 17 Apr 1998 14:14:00 -0700 (PDT) Date: Fri, 17 Apr 1998 14:14:00 -0700 (PDT) Message-Id: <199804172114.OAA09355@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/17 14:14:00 PDT Modified files: devel Makefile Log: Activate p5-ReadLine-Gnu and p5-ReadLine-Perl. Revision Changes Path 1.97 +3 -1 ports/devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 14:26:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA00534 for cvs-all-outgoing; Fri, 17 Apr 1998 14:26:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA00525; Fri, 17 Apr 1998 21:26:35 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA10676; Fri, 17 Apr 1998 14:26:20 -0700 (PDT) Date: Fri, 17 Apr 1998 14:26:20 -0700 (PDT) Message-Id: <199804172126.OAA10676@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/17 14:26:20 PDT Modified files: . modules Log: saoimage --> ports/astro/saoimage Revision Changes Path 1.1914 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 14:27:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA00668 for cvs-all-outgoing; Fri, 17 Apr 1998 14:27:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA00652; Fri, 17 Apr 1998 21:27:48 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA10690; Fri, 17 Apr 1998 14:27:33 -0700 (PDT) Date: Fri, 17 Apr 1998 14:27:33 -0700 (PDT) Message-Id: <199804172127.OAA10690@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/astro/saoimage - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/17 14:27:33 PDT ports/astro/saoimage - Imported sources Update of /home/ncvs/ports/astro/saoimage In directory freefall.freebsd.org:/d/users/mph/saoimage Log Message: Import of saoimage, a viewer for FITS files (which are used in professional astronomy). PR: 5805 Submitted by: giffunip@asme.org Status: Vendor Tag: GIFFUNIP Release Tags: giffunip_1_22 N ports/astro/saoimage/Makefile I ports/astro/saoimage/CVS N ports/astro/saoimage/pkg/DESCR N ports/astro/saoimage/pkg/COMMENT N ports/astro/saoimage/pkg/PLIST N ports/astro/saoimage/files/md5 N ports/astro/saoimage/patches/patch-aa N ports/astro/saoimage/patches/patch-ac N ports/astro/saoimage/patches/patch-ab N ports/astro/saoimage/patches/patch-ad No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 14:29:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA00910 for cvs-all-outgoing; Fri, 17 Apr 1998 14:29:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA00905; Fri, 17 Apr 1998 21:29:32 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA10733; Fri, 17 Apr 1998 14:29:17 -0700 (PDT) Date: Fri, 17 Apr 1998 14:29:17 -0700 (PDT) Message-Id: <199804172129.OAA10733@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/astro Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/17 14:29:17 PDT Modified files: astro Makefile Log: Activate saoimage. Revision Changes Path 1.6 +2 -1 ports/astro/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 14:35:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA01940 for cvs-all-outgoing; Fri, 17 Apr 1998 14:35:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA01814; Fri, 17 Apr 1998 21:34:48 GMT (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.8.7/8.7.3) id OAA03361; Fri, 17 Apr 1998 14:34:23 -0700 (PDT) Date: Fri, 17 Apr 1998 14:34:23 -0700 (PDT) Message-Id: <199804172134.OAA03361@vader.cs.berkeley.edu> To: garyj@muc.de CC: cvs-ports@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199804172017.WAA14385@peedub.muc.de> (message from Gary Jennejohn on Fri, 17 Apr 1998 22:17:08 +0200) Subject: Re: cvs commit: ports/www/mozilla/patches patch-ad From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * could it be because the port is actually using gmake and make isn't * passing its environment ? Really, I wouldn't miss something *that* obvious. mozilla is not the only port using gmake you know. :) Anyway, the problem is solved, but I guess Justin is still busy so I'm going to attach a patch I sent to him here. It was config/FreeBSD.mk actually DELETING the definition of MOTIFLIB. (What the hell the person who wrote that was thinking, I have absolutely no bleeping idea.) Satoshi ------- Index: Makefile =================================================================== RCS file: /usr/cvs/ports/www/mozilla/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- Makefile 1998/04/17 10:36:45 1.23 +++ Makefile 1998/04/17 11:01:59 @@ -26,8 +26,6 @@ OSVER= `uname -r | ${SED} 's/-.*//'` OBJDIR= ${WRKSRC}/dist/${OSNAME}${OSVER}_OPT.OBJ -post-configure: - @${ECHO} ${MOTIFLIB} > ${WRKSRC}/MOTIFLIB do-install: @${MKDIR} ${PREFIX}/lib/mozilla/bin @cd ${OBJDIR}/bin && tar -chf - bsdecho lib* moz-export \ Index: patches/patch-ad =================================================================== RCS file: /usr/cvs/ports/www/mozilla/patches/patch-ad,v retrieving revision 1.4 diff -u -r1.4 patch-ad --- patch-ad 1998/04/17 09:29:25 1.4 +++ patch-ad 1998/04/17 10:56:17 @@ -5,6 +5,6 @@ # FreeBSD ifeq ($(OS_ARCH),FreeBSD) -OTHER_LIBS = /usr/X11R6/lib/libXm.a -L/usr/X11R6/lib -lXt -lXmu -lXext -lX11 -lSM -lICE -lm $(OS_LIBS) -+OTHER_LIBS = `cat ../../MOTIFLIB` -L/usr/X11R6/lib -lXt -lXmu -lXext -lX11 -lSM -lICE -lm $(OS_LIBS) ++OTHER_LIBS = ${MOTIFLIB} -L/usr/X11R6/lib -lXt -lXmu -lXext -lX11 -lSM -lICE -lm $(OS_LIBS) endif Index: patches/patch-ah =================================================================== RCS file: /usr/cvs/ports/www/mozilla/patches/patch-ah,v retrieving revision 1.1 diff -u -r1.1 patch-ah --- patch-ah 1998/04/14 21:01:55 1.1 +++ patch-ah 1998/04/17 11:32:45 @@ -1,6 +1,23 @@ *** config/FreeBSD.mk.orig Thu Apr 9 04:53:23 1998 --- config/FreeBSD.mk Wed Apr 15 00:52:41 1998 *************** +*** 31,37 **** + G++INCLUDES = -I/usr/include/g++ + LOC_LIB_DIR = + MOTIF = +! MOTIFLIB = + OS_LIBS = + + # Don't define BSD, because it's already defined in /usr/include/sys/param.h. +--- 31,37 ---- + G++INCLUDES = -I/usr/include/g++ + LOC_LIB_DIR = + MOTIF = +! #MOTIFLIB = + OS_LIBS = + + # Don't define BSD, because it's already defined in /usr/include/sys/param.h. +*************** *** 44,59 **** OS_CFLAGS = $(PLATFORM_FLAGS) $(PORT_FLAGS) $(MOVEMAIL_FLAGS) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 14:41:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA04004 for cvs-all-outgoing; Fri, 17 Apr 1998 14:41:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from hwcn.org (ac199@[199.212.94.66]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA03939 for ; Fri, 17 Apr 1998 21:41:18 GMT (envelope-from hoek@hwcn.org) Received: from localhost (ac199@localhost) by hwcn.org (8.8.8/8.8.8) with SMTP id RAA24411; Fri, 17 Apr 1998 17:27:56 -0400 (EDT) Date: Fri, 17 Apr 1998 17:27:55 -0400 (EDT) From: Tim Vanderhoek To: Julian Elischer cc: Poul-Henning Kamp , Mark Murray , Eivind Eklund , Peter Hawkins , cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail In-Reply-To: <3536FB28.15FB7483@whistle.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Thu, 16 Apr 1998, Julian Elischer wrote: > > To maintain the spirit of the text, this paragraph should read: > > > > Vs lbh qb nal jbex gung vf pelcgb-eryngrq - cyrnfr fraq zr [...] > hmmm... > at a guess...... > tr abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ \ > nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA07277 for cvs-all-outgoing; Fri, 17 Apr 1998 14:50:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA07142; Fri, 17 Apr 1998 21:50:15 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA11269; Fri, 17 Apr 1998 14:49:56 -0700 (PDT) Date: Fri, 17 Apr 1998 14:49:56 -0700 (PDT) Message-Id: <199804172149.OAA11269@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/17 14:49:56 PDT Modified files: . modules Log: intercal --> ports/lang/intercal Revision Changes Path 1.1915 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 14:53:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA07996 for cvs-all-outgoing; Fri, 17 Apr 1998 14:53:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA07839; Fri, 17 Apr 1998 21:52:41 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA11404; Fri, 17 Apr 1998 14:52:21 -0700 (PDT) Date: Fri, 17 Apr 1998 14:52:21 -0700 (PDT) Message-Id: <199804172152.OAA11404@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/lang/intercal - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/17 14:52:21 PDT ports/lang/intercal - Imported sources Update of /home/ncvs/ports/lang/intercal In directory freefall.freebsd.org:/d/users/mph/intercal Log Message: Import of the INTERCAL compiler, ick, version 0.17. PR: 6080 Status: Vendor Tag: MPH Release Tags: mph_0_17 N ports/lang/intercal/Makefile I ports/lang/intercal/CVS N ports/lang/intercal/files/md5 N ports/lang/intercal/pkg/PLIST N ports/lang/intercal/pkg/COMMENT N ports/lang/intercal/pkg/DESCR N ports/lang/intercal/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 Fri Apr 17 14:53:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA08029 for cvs-all-outgoing; Fri, 17 Apr 1998 14:53:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA07862; Fri, 17 Apr 1998 21:52:45 GMT (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA11425; Fri, 17 Apr 1998 14:52:27 -0700 (PDT) Date: Fri, 17 Apr 1998 14:52:27 -0700 (PDT) Message-Id: <199804172152.OAA11425@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/mozilla Makefile ports/www/mozilla/patches patch-ad patch-ah Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1998/04/17 14:52:27 PDT Modified files: www/mozilla Makefile www/mozilla/patches patch-ad patch-ah Log: Remove the MOTIFLIB= (i.e., defined to be empty) line from config/FreeBSD.mk, and remove hacks to work around it. Revision Changes Path 1.24 +1 -3 ports/www/mozilla/Makefile 1.5 +1 -1 ports/www/mozilla/patches/patch-ad 1.2 +17 -0 ports/www/mozilla/patches/patch-ah To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 15:05:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA12552 for cvs-all-outgoing; Fri, 17 Apr 1998 15:05:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA12444; Fri, 17 Apr 1998 22:05:02 GMT (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA11532; Fri, 17 Apr 1998 15:04:41 -0700 (PDT) Date: Fri, 17 Apr 1998 15:04:41 -0700 (PDT) Message-Id: <199804172204.PAA11532@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c bundle.h datalink.c modem.c timer.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/04/17 15:04:40 PDT Modified files: (Branch: MP) usr.sbin/ppp bundle.c bundle.h datalink.c modem.c timer.c Log: o Remove bundle_LinkLost() and have the modem routines simply call datalink_Down() where appropriate rather than modem_Hangup(). o Now, when something horrible happens (failed read/write, loss of carrier etc), we go offline and run any hangup scripts etc in a controlled manner - exactly the same as if someone says ``down'' at the prompt or sends us a HUP. o -dedicated links that fail to make the modem raw close it, suffer the redial timeout then try to open it again. o Add a ``carrier lost'' warning diagnostic. Revision Changes Path 1.1.2.51 +1 -20 src/usr.sbin/ppp/Attic/bundle.c 1.1.2.30 +1 -2 src/usr.sbin/ppp/Attic/bundle.h 1.1.2.39 +14 -2 src/usr.sbin/ppp/Attic/datalink.c 1.77.2.51 +17 -49 src/usr.sbin/ppp/modem.c 1.27.2.5 +2 -2 src/usr.sbin/ppp/timer.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 15:06:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA12975 for cvs-all-outgoing; Fri, 17 Apr 1998 15:06:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA12844; Fri, 17 Apr 1998 22:05:58 GMT (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA11609; Fri, 17 Apr 1998 15:05:42 -0700 (PDT) Date: Fri, 17 Apr 1998 15:05:42 -0700 (PDT) Message-Id: <199804172205.PAA11609@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c bundle.h command.c id.c id.h ipcp.c ipcp.h ppp.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/04/17 15:05:42 PDT Modified files: (Branch: MP) usr.sbin/ppp bundle.c bundle.h command.c id.c id.h ipcp.c ipcp.h ppp.8 Log: Support client side DNS server negotiation, disabled and denied by default (POLA). o Remove ``enable'' msext. Now, doing a ``set nbns'' will automatically enable a NBNS ACK/NAK rather than a REJ. o Add accept|disable|deny|enable dns. If we ``accept'', we'll tell the peer what our nameservers are (if he asks). The values in resolv.conf can be overridden with the ``set dns'' command. If we ``enable'', we'll REQ using our resolv.conf entries, and any NAKs are written back to resolv.conf. o Remove ``show msext'' and show the relevent IP numbers in ``show ipcp''. Revision Changes Path 1.1.2.52 +1 -3 src/usr.sbin/ppp/Attic/bundle.c 1.1.2.31 +5 -6 src/usr.sbin/ppp/Attic/bundle.h 1.131.2.63 +46 -89 src/usr.sbin/ppp/command.c 1.6.4.5 +7 -3 src/usr.sbin/ppp/id.c 1.3.4.2 +2 -2 src/usr.sbin/ppp/id.h 1.50.2.38 +213 -69 src/usr.sbin/ppp/ipcp.c 1.18.2.23 +8 -5 src/usr.sbin/ppp/ipcp.h 1.97.2.18 +41 -31 src/usr.sbin/ppp/ppp.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 15:07:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA13452 for cvs-all-outgoing; Fri, 17 Apr 1998 15:07:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA13378; Fri, 17 Apr 1998 22:07:22 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA11648; Fri, 17 Apr 1998 15:07:06 -0700 (PDT) Date: Fri, 17 Apr 1998 15:07:06 -0700 (PDT) Message-Id: <199804172207.PAA11648@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/lang Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/17 15:07:05 PDT Modified files: lang Makefile Log: Activate intercal. Revision Changes Path 1.97 +2 -1 ports/lang/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 15:37:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA21934 for cvs-all-outgoing; Fri, 17 Apr 1998 15:37:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA21919; Fri, 17 Apr 1998 22:37:36 GMT (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA12467; Fri, 17 Apr 1998 15:37:21 -0700 (PDT) Date: Fri, 17 Apr 1998 15:37:21 -0700 (PDT) Message-Id: <199804172237.PAA12467@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/dev/dpt dpt_control.c src/sys/gnu/ext2fs COPYRIGHT.INFO ext2_alloc.c ext2_vnops.c src/sys/i386/eisa aha1742.c aic7770.c src/sys/i386/i386 busdma_machdep.c exception.s i386-gdbstub.c src/sys/i386/isa aha1542.c fd.c ft.c if_ar.c ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/04/17 15:37:20 PDT Modified files: sys/dev/dpt dpt_control.c sys/gnu/ext2fs COPYRIGHT.INFO ext2_alloc.c ext2_vnops.c sys/i386/eisa aha1742.c aic7770.c sys/i386/i386 busdma_machdep.c exception.s i386-gdbstub.c sys/i386/isa aha1542.c fd.c ft.c if_ar.c if_ed.c if_epreg.h if_sr.c isa.c ppc.c rpreg.h ultra14f.c sys/i386/isa/pcvt pcvt_conf.h sys/i386/isa/snd ad1848.c sys/i386/isa/sound CHANGELOG Readme.v30 ad1848.c dmabuf.c mpu401.c sys/kern init_main.c kern_exec.c uipc_usrreq.c vfs_aio.c vfs_bio.c sys/miscfs/devfs README devfs_tree.c devfs_vfsops.c sys/miscfs/nullfs null_vnops.c sys/miscfs/procfs procfs_mem.c sys/miscfs/union union_vfsops.c sys/net if_tun.c if_tun.h route.c sys/netatalk at_control.c sys/netinet ip_mroute.c tcp_input.c sys/pc98/pc98 fd.c if_ed.c pc98.c sys/pci if_fxp.c ncr.c sys/scsi cd.c od.c scsi_base.c scsiconf.h sd.c st.c sys/sys snoop.h sys/ufs/ufs ufs_vnops.c Log: Seventy-odd "its" / "it's" typos in comments fixed as per kern/6108. Revision Changes Path 1.4 +2 -2 src/sys/dev/dpt/dpt_control.c 1.2 +1 -1 src/sys/gnu/ext2fs/COPYRIGHT.INFO 1.19 +1 -1 src/sys/gnu/ext2fs/ext2_alloc.c 1.37 +1 -1 src/sys/gnu/ext2fs/ext2_vnops.c 1.62 +3 -3 src/sys/i386/eisa/aha1742.c 1.43 +2 -2 src/sys/i386/eisa/aic7770.c 1.5 +2 -2 src/sys/i386/i386/busdma_machdep.c 1.51 +2 -2 src/sys/i386/i386/exception.s 1.6 +2 -2 src/sys/i386/i386/i386-gdbstub.c 1.76 +2 -2 src/sys/i386/isa/aha1542.c 1.108 +2 -2 src/sys/i386/isa/fd.c 1.37 +2 -2 src/sys/i386/isa/ft.c 1.18 +2 -2 src/sys/i386/isa/if_ar.c 1.140 +2 -2 src/sys/i386/isa/if_ed.c 1.23 +2 -2 src/sys/i386/isa/if_epreg.h 1.12 +3 -3 src/sys/i386/isa/if_sr.c 1.112 +3 -3 src/sys/i386/isa/isa.c 1.3 +2 -2 src/sys/i386/isa/ppc.c 1.2 +1 -1 src/sys/i386/isa/rpreg.h 1.59 +2 -2 src/sys/i386/isa/ultra14f.c 1.6 +1 -1 src/sys/i386/isa/pcvt/pcvt_conf.h 1.8 +1 -1 src/sys/i386/isa/snd/ad1848.c 1.7 +1 -1 src/sys/i386/isa/sound/CHANGELOG 1.4 +1 -1 src/sys/i386/isa/sound/Readme.v30 1.22 +1 -1 src/sys/i386/isa/sound/ad1848.c 1.32 +1 -1 src/sys/i386/isa/sound/dmabuf.c 1.18 +4 -4 src/sys/i386/isa/sound/mpu401.c 1.90 +2 -2 src/sys/kern/init_main.c 1.82 +2 -2 src/sys/kern/kern_exec.c 1.33 +2 -2 src/sys/kern/uipc_usrreq.c 1.28 +4 -4 src/sys/kern/vfs_aio.c 1.162 +2 -2 src/sys/kern/vfs_bio.c 1.6 +1 -1 src/sys/miscfs/devfs/README 1.51 +4 -4 src/sys/miscfs/devfs/devfs_tree.c 1.28 +2 -2 src/sys/miscfs/devfs/devfs_vfsops.c 1.27 +3 -3 src/sys/miscfs/nullfs/null_vnops.c 1.31 +2 -2 src/sys/miscfs/procfs/procfs_mem.c 1.28 +2 -2 src/sys/miscfs/union/union_vfsops.c 1.46 +1 -1 src/sys/net/if_tun.c 1.13 +2 -2 src/sys/net/if_tun.h 1.50 +3 -3 src/sys/net/route.c 1.23 +1 -1 src/sys/netatalk/at_control.c 1.46 +2 -2 src/sys/netinet/ip_mroute.c 1.73 +2 -2 src/sys/netinet/tcp_input.c 1.28 +2 -2 src/sys/pc98/pc98/fd.c 1.47 +2 -2 src/sys/pc98/pc98/if_ed.c 1.50 +3 -3 src/sys/pc98/pc98/pc98.c 1.52 +3 -3 src/sys/pci/if_fxp.c 1.117 +4 -4 src/sys/pci/ncr.c 1.91 +2 -2 src/sys/scsi/cd.c 1.37 +2 -2 src/sys/scsi/od.c 1.56 +4 -4 src/sys/scsi/scsi_base.c 1.59 +2 -2 src/sys/scsi/scsiconf.h 1.123 +2 -2 src/sys/scsi/sd.c 1.87 +2 -2 src/sys/scsi/st.c 1.13 +1 -1 src/sys/sys/snoop.h 1.83 +2 -2 src/sys/ufs/ufs/ufs_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 15:54:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA25783 for cvs-all-outgoing; Fri, 17 Apr 1998 15:54:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA25769; Fri, 17 Apr 1998 22:54:16 GMT (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA12652; Fri, 17 Apr 1998 15:54:01 -0700 (PDT) Date: Fri, 17 Apr 1998 15:54:01 -0700 (PDT) Message-Id: <199804172254.PAA12652@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc/periodic/daily 440.status-mailq Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/04/17 15:54:00 PDT Modified files: etc/periodic/daily 440.status-mailq Log: Changed /usr/sbin/mailq to /usr/bin/mailq Revision Changes Path 1.3 +2 -2 src/etc/periodic/daily/440.status-mailq To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 16:11:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA01676 for cvs-all-outgoing; Fri, 17 Apr 1998 16:11:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from opus.cts.cwu.edu (skynyrd@opus.cts.cwu.edu [198.104.92.71]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA01638 for ; Fri, 17 Apr 1998 23:11:24 GMT (envelope-from skynyrd@opus.cts.cwu.edu) Received: from localhost (skynyrd@localhost) by opus.cts.cwu.edu (8.8.8/8.8.8) with ESMTP id QAA23172; Fri, 17 Apr 1998 16:11:16 -0700 (PDT) (envelope-from skynyrd@opus.cts.cwu.edu) Date: Fri, 17 Apr 1998 16:11:16 -0700 (PDT) From: Chris Timmons To: Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= cc: committers@FreeBSD.ORG Subject: Re: Come on guys, close a PR or two, will ya ? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Content-Transfer-Encoding: 8BIT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk http://www.cuug.ab.ca:8001/~macdonal/tkgnats.html http://www.cyclic.com/cyclic-pages/gnats.html One small caveat is that the customizable states patches to our gnats port slightly change the behavior of gnats so that tkgnats appears to display some PR states incorrectly - if you run in to that let me know and I'll send you a patch. I downloaded the latest tkgnats from its home page and got it running against my cvsup'ed copy of the FreeBSD gnats database very easily. The search interface makes it easy to browse for pr's in any state, assigned to you, etc, etc. Performance is pretty impressive, too. I should probably make a port but I don't think I'll have time in the near future. -Chris On 17 Apr 1998, Dag-Erling Coidan [iso-8859-1] Smørgrav wrote: > Chris Timmons writes: > > And for those of you who aren't real keen about gnats, give tkgnats a try > > - it made it much easier for me to sift through the pile! > > Pointers? > > -- > Nobody else has a .sig like this one. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 16:26:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA06148 for cvs-all-outgoing; Fri, 17 Apr 1998 16:26:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA06128; Fri, 17 Apr 1998 23:26:48 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA12910; Fri, 17 Apr 1998 16:26:32 -0700 (PDT) Date: Fri, 17 Apr 1998 16:26:32 -0700 (PDT) Message-Id: <199804172326.QAA12910@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/p5-ReadLine-Gnu Makefile ports/games/angband Makefile ports/games/xfrisk Makefile ports/games/xpat2 Makefile ports/net/dnswalk Makefile ports/net/ircii-epic Makefile ports/print/c2ps Makefile ports/x11/xprompt Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/17 16:26:31 PDT Modified files: devel/p5-ReadLine-Gnu Makefile games/angband Makefile games/xfrisk Makefile games/xpat2 Makefile net/dnswalk Makefile net/ircii-epic Makefile print/c2ps Makefile x11/xprompt Makefile Log: "mph@pobox.com" --> "mph@freebsd.org" in ports that I maintain. Revision Changes Path 1.2 +2 -2 ports/devel/p5-ReadLine-Gnu/Makefile 1.6 +2 -2 ports/games/angband/Makefile 1.6 +2 -2 ports/games/xfrisk/Makefile 1.4 +2 -2 ports/games/xpat2/Makefile 1.2 +2 -2 ports/net/dnswalk/Makefile 1.3 +2 -2 ports/net/ircii-epic/Makefile 1.5 +2 -2 ports/print/c2ps/Makefile 1.3 +2 -2 ports/x11/xprompt/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 16:59:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA15359 for cvs-all-outgoing; Fri, 17 Apr 1998 16:59:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from rhiannon.clari.net.au (rhiannon.clari.net.au [203.27.85.9]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA15353 for ; Fri, 17 Apr 1998 23:59:15 GMT (envelope-from peter@clari.net.au) Received: from dana.clari.net.au (dana.clari.net.au [203.27.85.21]) by rhiannon.clari.net.au (8.8.8/8.8.5) with SMTP id JAA01595; Sat, 18 Apr 1998 09:54:25 +1000 (EST) Date: Sat, 18 Apr 1998 09:54:25 +1000 (EST) From: Peter Hawkins To: "Jordan K. Hubbard" cc: Mark Murray , Poul-Henning Kamp , Eivind Eklund , Peter Hawkins , cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail In-Reply-To: <11986.892829599@time.cdrom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >> >> The chap I want to meet can whistle modem tones and do mental arithmetic >> well enough to log onto his local ISP and send PGP-encrypted MIME email >> using an ordinary telephone handset. >> > >For similar degree of silliness, try telneting to localhost at port >6000 if you're running an X server and see if you can dialog with the >server *just* by typing characters at the keyboard (usage of meta or >compose key is allowed). I once fooled around with this back in the >early days of X, using a copy of the X11 protocol spec and a >calculator for specifying the integer constants in the right byte >order, and managed to create a window, allocate a GC and draw a line >before I returned to my senses and wondered why I was wasting my time >with such silly pursuits. :-) I know a guy who, some years ago went out to a school to bootstrap their old mainframe from the console switch panel. It failed and it turned out they needed some hardware driver or other and was about to leave for his car to get the manual when some pimply teen grabbed the seat and started throwing switches. "now try". It worked first time. He wrote the driver in his head and keyed it in from the switch panel without resorting to paper. Remember *that* next time you've got hor chin in your hands and are staring through glazed eyes at a session of vi /usr/src/sys/pci/... Clarinet Internet Peter Hawkins 51 Barnard Grv, Manager Kew, Vic, Australia 3101 Ph: +61-3-9421 2006 Fax: +61-3-9421 2007 http://www.clari.net.au Peter@clari.net.au To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 17:09:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA18158 for cvs-all-outgoing; Fri, 17 Apr 1998 17:09:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA18122; Sat, 18 Apr 1998 00:09:00 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA13010; Fri, 17 Apr 1998 17:08:43 -0700 (PDT) Date: Fri, 17 Apr 1998 17:08:43 -0700 (PDT) Message-Id: <199804180008.RAA13010@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/math/xgfe Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/17 17:08:43 PDT Modified files: math/xgfe Makefile Log: "mph@pobox.com" --> "mph@freebsd.org" Revision Changes Path 1.3 +2 -2 ports/math/xgfe/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 18:01:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA26579 for cvs-all-outgoing; Fri, 17 Apr 1998 18:01:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from coleridge.kublai.com (coleridge.kublai.com [207.96.1.116]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA26490 for ; Sat, 18 Apr 1998 01:01:00 GMT (envelope-from shmit@natasya.kublai.com) Received: from natasya.kublai.com (natasya.kublai.com [207.172.25.236]) by coleridge.kublai.com (8.8.8/8.8.8) with ESMTP id UAA18578; Fri, 17 Apr 1998 20:58:48 -0400 (EDT) (envelope-from shmit@natasya.kublai.com) Received: (from shmit@localhost) by natasya.kublai.com (8.8.8/8.8.8) id UAA12773; Fri, 17 Apr 1998 20:58:43 -0400 (EDT) Message-ID: <19980417205843.06920@kublai.com> Date: Fri, 17 Apr 1998 20:58:43 -0400 From: Brian Cully To: Tim Vanderhoek , Julian Elischer Cc: Poul-Henning Kamp , Mark Murray , Eivind Eklund , Peter Hawkins , cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail Reply-To: shmit@kublai.com References: <3536FB28.15FB7483@whistle.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89i In-Reply-To: ; from Tim Vanderhoek on Fri, Apr 17, 1998 at 05:27:55PM -0400 X-Sender: If your mailer pays attention to this, it's broken. X-PGP-Info: finger shmit@kublai.com for my public key. Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Fri, Apr 17, 1998 at 05:27:55PM -0400, Tim Vanderhoek wrote: > > > Vs lbh qb nal jbex gung vf pelcgb-eryngrq - cyrnfr fraq zr > [...] > > hmmm... > > at a guess...... > > tr abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ \ > > nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM > And we wonder why some people want to get rid of /usr/games/! ;-) You don't need that, you just need to know how to make a screw look like a nail: --- SNIP --- #!/bin/sh hexdump -e '1024/1 "%03d\n" "%_Ax [32-l2x32+aP2Q]s4[52-26 37ax65+]s2[d91>2aP2Q]s5[d96<4d64<5aP1Q]s6[[d123>6aP]x0z1->1]s1szzsc[[z :r]x0z1->0]s0l0x[[lcd1-sc;r]xlcdsc0<0]s0l0xl1x\n"' | dc --- SNIP --- -- Brian Cully ``And when one of our comrades was taken prisoner, blindfolded, hung upside-down, shot, and burned, we thought to ourselves, `These are the best experiences of our lives''' -Pathology (Joe Frank, Somewhere Out There) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 18:02:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA26939 for cvs-all-outgoing; Fri, 17 Apr 1998 18:02:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA26787; Sat, 18 Apr 1998 01:01:49 GMT (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA13230; Fri, 17 Apr 1998 18:01:32 -0700 (PDT) Date: Fri, 17 Apr 1998 18:01:32 -0700 (PDT) Message-Id: <199804180101.SAA13230@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp chat.c command.c datalink.c datalink.h filter.h hdlc.c link.h loadalias.c lqr.c mp.c prompt.c server.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/04/17 18:01:31 PDT Modified files: (Branch: MP) usr.sbin/ppp chat.c command.c datalink.c datalink.h filter.h hdlc.c link.h loadalias.c lqr.c mp.c prompt.c server.c Log: Cosmetic: Clean up warnings. Revision Changes Path 1.44.2.23 +11 -10 src/usr.sbin/ppp/chat.c 1.131.2.64 +4 -4 src/usr.sbin/ppp/command.c 1.1.2.40 +2 -2 src/usr.sbin/ppp/Attic/datalink.c 1.1.2.18 +2 -2 src/usr.sbin/ppp/Attic/datalink.h 1.11.2.6 +2 -2 src/usr.sbin/ppp/filter.h 1.28.2.26 +3 -2 src/usr.sbin/ppp/hdlc.c 1.1.2.9 +2 -2 src/usr.sbin/ppp/Attic/link.h 1.14.2.3 +3 -3 src/usr.sbin/ppp/loadalias.c 1.22.2.24 +2 -2 src/usr.sbin/ppp/lqr.c 1.1.2.5 +2 -3 src/usr.sbin/ppp/Attic/mp.c 1.1.2.27 +4 -4 src/usr.sbin/ppp/Attic/prompt.c 1.16.2.16 +6 -6 src/usr.sbin/ppp/server.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 19:03:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA07167 for cvs-all-outgoing; Fri, 17 Apr 1998 19:03:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA07147; Sat, 18 Apr 1998 02:03:40 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA13428; Fri, 17 Apr 1998 19:03:24 -0700 (PDT) Date: Fri, 17 Apr 1998 19:03:24 -0700 (PDT) Message-Id: <199804180203.TAA13428@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/17 19:03:23 PDT Modified files: . modules Log: bitchx --> ports/net/bitchx Revision Changes Path 1.1916 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 19:05:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA07512 for cvs-all-outgoing; Fri, 17 Apr 1998 19:05:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA07493; Sat, 18 Apr 1998 02:05:02 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA13445; Fri, 17 Apr 1998 19:04:45 -0700 (PDT) Date: Fri, 17 Apr 1998 19:04:45 -0700 (PDT) Message-Id: <199804180204.TAA13445@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/bitchx - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/17 19:04:45 PDT ports/net/bitchx - Imported sources Update of /home/ncvs/ports/net/bitchx In directory freefall.freebsd.org:/d/users/mph/BitchX Log Message: Imported BitchX, yet another ircII-derived client. PR: 5605 Submitted by: griffin@blackhole.iceworld.org Status: Vendor Tag: GRIFFIN Release Tags: griffin_74p2 N ports/net/bitchx/Makefile I ports/net/bitchx/CVS N ports/net/bitchx/files/md5 N ports/net/bitchx/pkg/COMMENT N ports/net/bitchx/pkg/DESCR N ports/net/bitchx/pkg/PLIST N ports/net/bitchx/patches/patch-aa N ports/net/bitchx/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 Fri Apr 17 19:15:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA09005 for cvs-all-outgoing; Fri, 17 Apr 1998 19:15:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA08988; Sat, 18 Apr 1998 02:15:00 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA13628; Fri, 17 Apr 1998 19:14:43 -0700 (PDT) Date: Fri, 17 Apr 1998 19:14:43 -0700 (PDT) Message-Id: <199804180214.TAA13628@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-doc@FreeBSD.ORG Subject: cvs commit: doc/handbook submitters.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/17 19:14:43 PDT Modified files: handbook submitters.sgml Log: Added Jimbo Bahooli for his port of BitchX. Revision Changes Path 1.169 +3 -1 doc/handbook/submitters.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 20:45:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA21247 for cvs-all-outgoing; Fri, 17 Apr 1998 20:45:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA21239 for ; Sat, 18 Apr 1998 03:45:47 GMT (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id NAA04614; Sat, 18 Apr 1998 13:41:38 +1000 Date: Sat, 18 Apr 1998 13:41:38 +1000 From: Bruce Evans Message-Id: <199804180341.NAA04614@godzilla.zeta.org.au> To: dag-erli@ifi.uio.no, phk@critter.freebsd.dk Subject: Re: Useless PRs Cc: cvs-committers@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >What about kern/4968? Looks to me like the problem was more or less >identified as pilot error. Bruce? The pilot didn't confirm the error, so it is hard to tell. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 21:27:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA23936 for cvs-all-outgoing; Fri, 17 Apr 1998 21:27:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au ([202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA22797; Sat, 18 Apr 1998 04:12:11 GMT (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.8.8/8.8.8/Spinner) with ESMTP id MAA16043; Sat, 18 Apr 1998 12:11:21 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199804180411.MAA16043@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: "Dag-Erling C. Sm\xf8rgrav" cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/dpt dpt_control.c src/sys/gnu/ext2fs... In-reply-to: Your message of "Fri, 17 Apr 1998 15:37:21 MST." <199804172237.PAA12467@freefall.freebsd.org> Date: Sat, 18 Apr 1998 12:11:20 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Dag-Erling C. Sm\xf8rgrav" wrote: > des 1998/04/17 15:37:20 PDT > > Modified files: > sys/dev/dpt dpt_control.c > sys/gnu/ext2fs COPYRIGHT.INFO ext2_alloc.c ext2_vnops.c [..] > sys/ufs/ufs ufs_vnops.c > Log: > Seventy-odd "its" / "it's" typos in comments fixed as per kern/6108. What the hell??? I don't call this "fixing typos", as far as I can tell, most of these changes have broken the correct usage. eg: here, we are talking about the device's softc: +++ dpt_control.c 1998/03/23 10:49:01 @@ -175,7 +175,7 @@ /** * Given a minor device number, - * return the pointer to it's softc structure + * return the pointer to its softc structure */ static INLINE dpt_softc_t * eg: here we are talking about the card's EEROM. +++ if_ed.c 1998/03/23 11:05:46 @@ -676,7 +676,7 @@ #endif DELAY(100); outb(sc->asic_addr + ED_WD_MSR, inb(sc->asic_addr + ED_WD_MSR) & ~ED_WD_ MSR_RST); - /* wait in the case this card is reading it's EEROM */ + /* wait in the case this card is reading its EEROM */ DELAY(5000); sc->vendor = ED_VENDOR_WD_SMC; And so on... Just because a PR is submitted, it doesn't mean it's right. If they were always right, there would be an automatic patch application process on PR submission. -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 21:35:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA26136 for cvs-all-outgoing; Fri, 17 Apr 1998 21:35:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from conductor.synapse.net (conductor.synapse.net [199.84.54.18]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id EAA26128 for ; Sat, 18 Apr 1998 04:35:28 GMT (envelope-from evanc@synapse.net) Received: (qmail 12391 invoked from network); 18 Apr 1998 04:35:26 -0000 Received: from cpu1970.adsl.bellglobal.com (HELO cello) (206.47.37.201) by conductor.synapse.net with SMTP; 18 Apr 1998 04:35:26 -0000 Message-ID: <010401bd6a83$68bb3040$c9252fce@cello.synapse.net> From: "Evan Champion" To: "Dag-Erling C. Smxf8rgrav" , "Peter Wemm" Cc: , , Subject: Re: cvs commit: src/sys/dev/dpt dpt_control.c src/sys/gnu/ext2fs... Date: Sat, 18 Apr 1998 00:35:26 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.2106.4 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >What the hell??? I don't call this "fixing typos", as far as I can tell, >most of these changes have broken the correct usage. The grammar in the patch is correct. > /** > * Given a minor device number, >- * return the pointer to it's softc structure >+ * return the pointer to its softc structure > */ Let's expand: - * return the pointer to it is softc structure + * return the pointer to its softc structure Remember, "its" is a posessive, "it's" is a contraction for it is. Evan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 21:35:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA26148 for cvs-all-outgoing; Fri, 17 Apr 1998 21:35:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from conductor.synapse.net (conductor.synapse.net [199.84.54.18]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id EAA26130 for ; Sat, 18 Apr 1998 04:35:29 GMT (envelope-from evanc@synapse.net) Received: (qmail 12391 invoked from network); 18 Apr 1998 04:35:26 -0000 Received: from cpu1970.adsl.bellglobal.com (HELO cello) (206.47.37.201) by conductor.synapse.net with SMTP; 18 Apr 1998 04:35:26 -0000 Message-ID: <010401bd6a83$68bb3040$c9252fce@cello.synapse.net> From: "Evan Champion" To: "Dag-Erling C. Smxf8rgrav" , "Peter Wemm" Cc: , , Subject: Re: cvs commit: src/sys/dev/dpt dpt_control.c src/sys/gnu/ext2fs... Date: Sat, 18 Apr 1998 00:35:26 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.2106.4 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >What the hell??? I don't call this "fixing typos", as far as I can tell, >most of these changes have broken the correct usage. The grammar in the patch is correct. > /** > * Given a minor device number, >- * return the pointer to it's softc structure >+ * return the pointer to its softc structure > */ Let's expand: - * return the pointer to it is softc structure + * return the pointer to its softc structure Remember, "its" is a posessive, "it's" is a contraction for it is. Evan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 21:55:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA29795 for cvs-all-outgoing; Fri, 17 Apr 1998 21:55:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ns2.cetlink.net (root@ns2.cetlink.net [209.54.54.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA29699; Sat, 18 Apr 1998 04:55:03 GMT (envelope-from jak@cetlink.net) Received: from EXIT10 (i485-gw.cetlink.net [209.198.15.97]) by ns2.cetlink.net (8.8.5/8.8.5) with SMTP id AAA19927; Sat, 18 Apr 1998 00:54:29 -0400 (EDT) From: jak@cetlink.net (John Kelly) To: Peter Wemm Cc: "Dag-Erling C. Sm\xf8rgrav" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: Correct English style Date: Sat, 18 Apr 1998 04:56:28 GMT Message-ID: <35382ed1.10137219@mail.cetlink.net> References: <199804180411.MAA16043@spinner.netplex.com.au> In-Reply-To: <199804180411.MAA16043@spinner.netplex.com.au> X-Mailer: Forte Agent 1.5/32.451 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by hub.freebsd.org id EAB29702 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sat, 18 Apr 1998 12:11:20 +0800, Peter Wemm wrote: >I don't call this "fixing typos", as far as I can tell, >most of these changes have broken the correct usage. The changes are correct. >eg: here, we are talking about the device's softc: >- * return the pointer to it's softc structure >+ * return the pointer to its softc structure An apostrophe is used to indicate the possessive case (as in Peter's computer) except in the special case of the word "its." In this special case, it's (with the apostrophe) is a contraction of "it is" while its (without the apostrophe) is the possessive adjective. The committer is correct. Consult a dictionary or manual of style. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 21:58:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA00530 for cvs-all-outgoing; Fri, 17 Apr 1998 21:58:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA00525; Sat, 18 Apr 1998 04:58:54 GMT (envelope-from ahasty@FreeBSD.org) From: Amancio Hasty Received: (from ahasty@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA14509; Fri, 17 Apr 1998 21:58:37 -0700 (PDT) Date: Fri, 17 Apr 1998 21:58:37 -0700 (PDT) Message-Id: <199804180458.VAA14509@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/conf LINT options.i386 src/sys/pci brooktree848.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ahasty 1998/04/17 21:58:36 PDT Modified files: sys/i386/conf LINT options.i386 sys/pci brooktree848.c Log: Reviewed by: Amancio Submitted by: Roger Hardiman Roger Hardiman : Revised autodetection code to correctly handle both old and new VideoLogic Captivator PCI cards. Added tsleep of 2 seconds to initialistion code for PAL users. Corrected clock selection code on format change. --- Amancio Revision Changes Path 1.425 +5 -2 src/sys/i386/conf/LINT 1.77 +4 -1 src/sys/i386/conf/options.i386 1.35 +97 -21 src/sys/pci/brooktree848.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 22:01:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA00822 for cvs-all-outgoing; Fri, 17 Apr 1998 22:01:48 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA00806; Sat, 18 Apr 1998 05:01:43 GMT (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA14554; Fri, 17 Apr 1998 22:01:25 -0700 (PDT) Date: Fri, 17 Apr 1998 22:01:25 -0700 (PDT) Message-Id: <199804180501.WAA14554@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa/bs bs.c bsvar.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/04/17 22:01:25 PDT Modified files: sys/i386/isa/bs bs.c bsvar.h Log: Support compiling with `gcc -ansi'. Revision Changes Path 1.5 +2 -2 src/sys/i386/isa/bs/bs.c 1.5 +4 -0 src/sys/i386/isa/bs/bsvar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 22:08:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA01371 for cvs-all-outgoing; Fri, 17 Apr 1998 22:08:03 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA01364; Sat, 18 Apr 1998 05:08:01 GMT (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA14603; Fri, 17 Apr 1998 22:07:44 -0700 (PDT) Date: Fri, 17 Apr 1998 22:07:44 -0700 (PDT) Message-Id: <199804180507.WAA14603@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf Makefile.pc98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/04/17 22:07:43 PDT Modified files: sys/pc98/conf Makefile.pc98 Log: Sync with sys/i386/conf/Makefile.i386 revision 1.109. Revision Changes Path 1.28 +2 -2 src/sys/pc98/conf/Makefile.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 22:08:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA01435 for cvs-all-outgoing; Fri, 17 Apr 1998 22:08:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA01416; Sat, 18 Apr 1998 05:08:12 GMT (envelope-from julian@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id WAA01918; Fri, 17 Apr 1998 22:05:54 -0700 (PDT) Received: from current1.whistle.com(207.76.205.22) via SMTP by alpo.whistle.com, id smtpd001916; Sat Apr 18 05:05:47 1998 Message-ID: <3538336F.41C67EA6@whistle.com> Date: Fri, 17 Apr 1998 22:00:31 -0700 From: Julian Elischer Organization: Whistle Communications X-Mailer: Mozilla 3.0Gold (X11; I; FreeBSD 2.2.5-RELEASE i386) MIME-Version: 1.0 To: Peter Wemm CC: "Dag-Erling C. Smxf8rgrav" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/dpt dpt_control.c src/sys/gnu/ext2fs... References: <199804180411.MAA16043@spinner.netplex.com.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Peter Wemm wrote: > > "Dag-Erling C. Sm\xf8rgrav" wrote: > > des 1998/04/17 15:37:20 PDT > > > > Modified files: > > sys/dev/dpt dpt_control.c > > sys/gnu/ext2fs COPYRIGHT.INFO ext2_alloc.c ext2_vnops.c > [..] > > sys/ufs/ufs ufs_vnops.c > > Log: > > Seventy-odd "its" / "it's" typos in comments fixed as per kern/6108. > > What the hell??? I don't call this "fixing typos", as far as I can tell, > most of these changes have broken the correct usage. > > eg: here, we are talking about the device's softc: > +++ dpt_control.c 1998/03/23 10:49:01 > @@ -175,7 +175,7 @@ > > /** > * Given a minor device number, > - * return the pointer to it's softc structure > + * return the pointer to its softc structure sorry to contradict you Peter but this is the trick.. "its" is a single word, the same as: "his" and "her" as in: his cat, her cat, its cat the other version, e.g. "Joh's crow" or "John's VM code", shouldn't be confused with this.. why schools never explain it in this way I'll never understand. it took me years till someone explained this to me so clearly.. Until then I'd assumed.. "Sue's cakes", "John's cat", "it's softc" but that's wrong. "it's" is soley for the contraction "it is". julian > */ > > static INLINE dpt_softc_t * > > eg: here we are talking about the card's EEROM. > +++ if_ed.c 1998/03/23 11:05:46 > @@ -676,7 +676,7 @@ > #endif > DELAY(100); > outb(sc->asic_addr + ED_WD_MSR, inb(sc->asic_addr + ED_WD_MSR) & ~ED_WD_ > MSR_RST); > - /* wait in the case this card is reading it's EEROM */ > + /* wait in the case this card is reading its EEROM */ > DELAY(5000); > > sc->vendor = ED_VENDOR_WD_SMC; > > And so on... > > Just because a PR is submitted, it doesn't mean it's right. If they were > always right, there would be an automatic patch application process on PR > submission. > > -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 22:09:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA01501 for cvs-all-outgoing; Fri, 17 Apr 1998 22:09:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA01496; Sat, 18 Apr 1998 05:09:26 GMT (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA14650; Fri, 17 Apr 1998 22:09:08 -0700 (PDT) Date: Fri, 17 Apr 1998 22:09:08 -0700 (PDT) Message-Id: <199804180509.WAA14650@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 syscons.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/04/17 22:09:08 PDT Modified files: sys/pc98/pc98 syscons.c Log: Sync with sys/i386/isa/syscons.c revision 1.260. Revision Changes Path 1.84 +7 -1 src/sys/pc98/pc98/syscons.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 22:10:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA01794 for cvs-all-outgoing; Fri, 17 Apr 1998 22:10:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA01783; Sat, 18 Apr 1998 05:10:08 GMT (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA14682; Fri, 17 Apr 1998 22:09:51 -0700 (PDT) Date: Fri, 17 Apr 1998 22:09:51 -0700 (PDT) Message-Id: <199804180509.WAA14682@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf majors.pc98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/04/17 22:09:50 PDT Modified files: sys/pc98/conf majors.pc98 Log: Sync with sys/i386/conf/majors.i386 revision 1.37. Revision Changes Path 1.29 +3 -1 src/sys/pc98/conf/majors.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 22:32:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA05401 for cvs-all-outgoing; Fri, 17 Apr 1998 22:32:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA05176; Sat, 18 Apr 1998 05:30:10 GMT (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id PAA08431; Sat, 18 Apr 1998 15:27:39 +1000 Date: Sat, 18 Apr 1998 15:27:39 +1000 From: Bruce Evans Message-Id: <199804180527.PAA08431@godzilla.zeta.org.au> To: des@FreeBSD.ORG, peter@netplex.com.au Subject: Re: cvs commit: src/sys/dev/dpt dpt_control.c src/sys/gnu/ext2fs... Cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >"Dag-Erling C. Sm\xf8rgrav" wrote: >> des 1998/04/17 15:37:20 PDT >> >> Modified files: >> sys/dev/dpt dpt_control.c >> sys/gnu/ext2fs COPYRIGHT.INFO ext2_alloc.c ext2_vnops.c >[..] >> sys/ufs/ufs ufs_vnops.c >> Log: >> Seventy-odd "its" / "it's" typos in comments fixed as per kern/6108. > >What the hell??? I don't call this "fixing typos", as far as I can tell, >most of these changes have broken the correct usage. I didn't notice any incorrect ones. >eg: here, we are talking about the device's softc: >+++ dpt_control.c 1998/03/23 10:49:01 >@@ -175,7 +175,7 @@ > > /** > * Given a minor device number, >- * return the pointer to it's softc structure >+ * return the pointer to its softc structure > */ > > static INLINE dpt_softc_t * The change is correct. You get this wrong so often that I am tempted to reply with a spelling flame :-). >eg: here we are talking about the card's EEROM. >+++ if_ed.c 1998/03/23 11:05:46 >@@ -676,7 +676,7 @@ > #endif > DELAY(100); > outb(sc->asic_addr + ED_WD_MSR, inb(sc->asic_addr + ED_WD_MSR) & ~ED_WD_ >MSR_RST); >- /* wait in the case this card is reading it's EEROM */ >+ /* wait in the case this card is reading its EEROM */ > DELAY(5000); > > sc->vendor = ED_VENDOR_WD_SMC; > >And so on... This change is correct too. >Just because a PR is submitted, it doesn't mean it's right. If they were >always right, there would be an automatic patch application process on PR >submission. Most submissions in PRs (and elsehwere) have style and spelling bugs on almost every line, but this one seems to be an exception :-). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 22:32:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA05467 for cvs-all-outgoing; Fri, 17 Apr 1998 22:32:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA05431; Sat, 18 Apr 1998 05:32:33 GMT (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id WAA16357; Fri, 17 Apr 1998 22:31:43 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Peter Wemm cc: "Dag-Erling C. Sm\xf8rgrav" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/dpt dpt_control.c src/sys/gnu/ext2fs... In-reply-to: Your message of "Sat, 18 Apr 1998 12:11:20 +0800." <199804180411.MAA16043@spinner.netplex.com.au> Date: Fri, 17 Apr 1998 22:31:43 -0700 Message-ID: <16353.892877503@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > What the hell??? I don't call this "fixing typos", as far as I can tell, > most of these changes have broken the correct usage. How so? The two examples you cite seem to be arguments for rather than against this change. :) Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 22:43:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA06796 for cvs-all-outgoing; Fri, 17 Apr 1998 22:43:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au (spinner.netplex.com.au [202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA06733; Sat, 18 Apr 1998 05:42:40 GMT (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.8.8/8.8.8/Spinner) with ESMTP id NAA17129; Sat, 18 Apr 1998 13:42:16 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199804180542.NAA17129@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: Julian Elischer cc: "Dag-Erling C. Smxf8rgrav" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/dpt dpt_control.c src/sys/gnu/ext2fs... In-reply-to: Your message of "Fri, 17 Apr 1998 22:00:31 MST." <3538336F.41C67EA6@whistle.com> Date: Sat, 18 Apr 1998 13:42:15 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Julian Elischer wrote: > Peter Wemm wrote: > > > > "Dag-Erling C. Sm\xf8rgrav" wrote: > > > des 1998/04/17 15:37:20 PDT > > > > > > Modified files: > > > sys/dev/dpt dpt_control.c > > > sys/gnu/ext2fs COPYRIGHT.INFO ext2_alloc.c ext2_vnops.c > > [..] > > > sys/ufs/ufs ufs_vnops.c > > > Log: > > > Seventy-odd "its" / "it's" typos in comments fixed as per kern/6108. > > > > What the hell??? I don't call this "fixing typos", as far as I can tell, > > most of these changes have broken the correct usage. > > > > eg: here, we are talking about the device's softc: > > +++ dpt_control.c 1998/03/23 10:49:01 > > @@ -175,7 +175,7 @@ > > > > /** > > * Given a minor device number, > > - * return the pointer to it's softc structure > > + * return the pointer to its softc structure > > > sorry to contradict you Peter but this is the trick.. > > "its" is a single word, the same as: > "his" and "her" > > as in: > > his cat, her cat, its cat > > > the other version, e.g. > "Joh's crow" or "John's VM code", > shouldn't be confused with this.. > > why schools never explain it in this way I'll never understand. > it took me years till someone explained this to me so clearly.. > > Until then I'd assumed.. > "Sue's cakes", "John's cat", "it's softc" > > but that's wrong. > "it's" is soley for the contraction "it is". > > julian Yes, I see that now. But I had to look at a dictionary first before I believed it... :-) Cheers, -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 22:47:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA07166 for cvs-all-outgoing; Fri, 17 Apr 1998 22:47:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from cimlogic.com.au (cimlogic.com.au [203.36.2.25]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA07150 for ; Sat, 18 Apr 1998 05:47:10 GMT (envelope-from jb@cimlogic.com.au) Received: (from jb@localhost) by cimlogic.com.au (8.8.5/8.8.7) id PAA11874 for cvs-committers@freebsd.org; Sat, 18 Apr 1998 15:46:28 +1000 (EST) (envelope-from jb) From: John Birrell Message-Id: <199804180546.PAA11874@cimlogic.com.au> Subject: Re: cvs commit: src/sys/dev/dpt dpt_control.c src/sys/gnu/ext2fs... In-Reply-To: <199804180527.PAA08431@godzilla.zeta.org.au> from Bruce Evans at "Apr 18, 98 03:27:39 pm" To: cvs-committers@FreeBSD.ORG Date: Sat, 18 Apr 1998 15:46:28 +1000 (EST) X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Bruce Evans wrote: > Most submissions in PRs (and elsehwere) have style and spelling bugs on > almost every line, but this one seems to be an exception :-). "High praise!" Do we have a medal to award? 8-) -- John Birrell - jb@cimlogic.com.au; jb@freebsd.org http://www.cimlogic.com.au/ CIMlogic Pty Ltd, GPO Box 117A, Melbourne Vic 3001, Australia +61 418 353 137 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 22:47:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA07290 for cvs-all-outgoing; Fri, 17 Apr 1998 22:47:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au (spinner.netplex.com.au [202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA07258; Sat, 18 Apr 1998 05:47:48 GMT (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.8.8/8.8.8/Spinner) with ESMTP id NAA17191; Sat, 18 Apr 1998 13:47:30 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199804180547.NAA17191@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: "Jordan K. Hubbard" cc: "Dag-Erling C. Sm\xf8rgrav" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/dpt dpt_control.c src/sys/gnu/ext2fs... In-reply-to: Your message of "Fri, 17 Apr 1998 22:31:43 MST." <16353.892877503@time.cdrom.com> Date: Sat, 18 Apr 1998 13:47:30 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Jordan K. Hubbard" wrote: > > What the hell??? I don't call this "fixing typos", as far as I can tell, > > most of these changes have broken the correct usage. > > How so? The two examples you cite seem to be arguments for rather > than against this change. :) Yes.. Oh well, it's^H^H has not been a good start to the day. I think I'll either go back to bed or go and find somewhere that there are no computers for the rest of the day... > Jordan > Cheers, -Peter -- Peter Wemm Netplex Consulting To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 17 23:26:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA11250 for cvs-all-outgoing; Fri, 17 Apr 1998 23:26:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA11245; Sat, 18 Apr 1998 06:26:35 GMT (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA14791; Fri, 17 Apr 1998 23:26:17 -0700 (PDT) Date: Fri, 17 Apr 1998 23:26:17 -0700 (PDT) Message-Id: <199804180626.XAA14791@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern vfs_subr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/04/17 23:26:17 PDT Modified files: sys/kern vfs_subr.c Log: In vfs_msync(), test to see if the vnode being examined is "interesting" (ie: it has a vm_object attached and is marked as OBJ_MIGHTBEDIRTY) before attempting to lock it. This should reduce the cpu hit that is incurred when doing a sync(2) and when the syncer process is doing the 30-second writeback of dirty mmap() data to disk. Skip this speedup if we are doing an unmount() to be sure to get everything - we can afford to occasionally miss a msync while the system is running, but not at unmount. I'm not sure about the VXLOCK and MNT_WAIT case, it seems a bit odd to skip doing a page_clean at unmount time just because a vnode is VXLOCKed, but that's what was being done before... Revision Changes Path 1.151 +10 -3 src/sys/kern/vfs_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 00:14:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA16064 for cvs-all-outgoing; Sat, 18 Apr 1998 00:14:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA16051; Sat, 18 Apr 1998 07:14:32 GMT (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id JAA09106; Sat, 18 Apr 1998 09:13:10 +0200 (CEST) To: jak@cetlink.net (John Kelly) cc: Peter Wemm , "Dag-Erling C. Sm\xf8rgrav" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: Re: Correct English style In-reply-to: Your message of "Sat, 18 Apr 1998 04:56:28 GMT." <35382ed1.10137219@mail.cetlink.net> Date: Sat, 18 Apr 1998 09:13:10 +0200 Message-ID: <9104.892883590@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In message <35382ed1.10137219@mail.cetlink.net>, John Kelly writes: >On Sat, 18 Apr 1998 12:11:20 +0800, Peter Wemm >wrote: > >>I don't call this "fixing typos", as far as I can tell, >>most of these changes have broken the correct usage. > >The changes are correct. > >>eg: here, we are talking about the device's softc: > >>- * return the pointer to it's softc structure >>+ * return the pointer to its softc structure > >An apostrophe is used to indicate the possessive case (as in Peter's >computer) except in the special case of the word "its." In this >special case, it's (with the apostrophe) is a contraction of "it is" >while its (without the apostrophe) is the possessive adjective. The >committer is correct. Consult a dictionary or manual of style. Search /usr/src/games/fortune/datfiles/fortunes for Tips for Writer's for some good introductory material to current usage :-) -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "Drink MONO-tonic, it goes down but it will NEVER come back up!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 00:42:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA19102 for cvs-all-outgoing; Sat, 18 Apr 1998 00:42:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from panda.hilink.com.au (panda.hilink.com.au [203.8.15.25]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA19066; Sat, 18 Apr 1998 07:42:32 GMT (envelope-from danny@panda.hilink.com.au) Received: (from danny@localhost) by panda.hilink.com.au (8.8.5/8.8.5) id RAA18418; Sat, 18 Apr 1998 17:43:42 +1000 (EST) Date: Sat, 18 Apr 1998 17:43:42 +1000 (EST) From: "Daniel O'Callaghan" To: John Kelly cc: Peter Wemm , "Dag-Erling C. Smxf8rgrav" , cvs-committers@FreeBSD.ORG Subject: Re: Correct English style In-Reply-To: <35382ed1.10137219@mail.cetlink.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk When someone who learnt English as a second language corrects English grammar and style, it is generally because they *have* read a manual. Native English speakers generally don't care that much to pay attention in class at school, and these days (last three decades?) teachers haven't bothered to insist. /* Daniel O'Callaghan */ /* HiLink Internet danny@hilink.com.au */ /* FreeBSD - works hard, plays hard... danny@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 Apr 18 01:05:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA21136 for cvs-all-outgoing; Sat, 18 Apr 1998 01:05:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from news1.gtn.com (news1.gtn.com [194.77.0.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA21069 for ; Sat, 18 Apr 1998 08:04:53 GMT (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by news1.gtn.com (8.8.6/8.8.6) with UUCP id JAA19571; Sat, 18 Apr 1998 09:45:11 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.8.8/8.8.8) id JAA15434; Sat, 18 Apr 1998 09:37:21 +0200 (CEST) (envelope-from andreas) Message-ID: <19980418093721.42108@klemm.gtn.com> Date: Sat, 18 Apr 1998 09:37:21 +0200 From: Andreas Klemm To: Eivind Eklund Cc: cvs-committers@FreeBSD.ORG Subject: ssh setup References: <199804171557.IAA05893@freefall.freebsd.org> <19980417183902.45662@follo.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <19980417183902.45662@follo.net>; from Eivind Eklund on Fri, Apr 17, 1998 at 06:39:02PM +0200 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk After adding this to my .login file eval `ssh-agent -c` I get messages like this Cannot make temporary authentication socket directory /tmp/ssh-andreas-15419 When I log myself in on freefall with ssh ... Strange. And fcvs still wants to see a password. -- 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 powered by ,,symmetric multiprocessor FreeBSD'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 01:57:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA26512 for cvs-all-outgoing; Sat, 18 Apr 1998 01:57:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA26505; Sat, 18 Apr 1998 08:57:16 GMT (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA15302; Sat, 18 Apr 1998 01:56:57 -0700 (PDT) Date: Sat, 18 Apr 1998 01:56:57 -0700 (PDT) Message-Id: <199804180856.BAA15302@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/04/18 01:56:57 PDT Modified files: . modules Log: tkgnats --> ports/databases/tkgnats Revision Changes Path 1.1917 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 01:58:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA26576 for cvs-all-outgoing; Sat, 18 Apr 1998 01:58:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA26570; Sat, 18 Apr 1998 08:58:04 GMT (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 BAA15484; Sat, 18 Apr 1998 01:57:45 -0700 (PDT) Date: Sat, 18 Apr 1998 01:57:45 -0700 (PDT) Message-Id: <199804180857.BAA15484@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/security/fwtk Makefile ports/security/fwtk/files md5 ports/security/fwtk/patches patch-ak patch-al patch-aa patch-ab patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-aj ports/security/fwtk/pkg COMMENT PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/04/18 01:57:44 PDT Modified files: security/fwtk Makefile security/fwtk/files md5 security/fwtk/patches patch-aa patch-ab patch-ad security/fwtk/pkg COMMENT PLIST Added files: security/fwtk/patches patch-ak patch-al Removed files: security/fwtk/patches patch-ae patch-af patch-ag patch-ah patch-ai patch-aj Log: Upgrade to version 2.1. Mixing of my stuff + two good submissions. Submitted by: "Scott A. Kenney" & "Eric J. Chet" Revision Changes Path 1.11 +21 -15 ports/security/fwtk/Makefile 1.3 +1 -1 ports/security/fwtk/files/md5 1.3 +45 -26 ports/security/fwtk/patches/patch-aa 1.2 +6 -7 ports/security/fwtk/patches/patch-ab 1.2 +18 -10 ports/security/fwtk/patches/patch-ad 1.2 +1 -1 ports/security/fwtk/pkg/COMMENT 1.2 +9 -7 ports/security/fwtk/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 Apr 18 01:58:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA26616 for cvs-all-outgoing; Sat, 18 Apr 1998 01:58:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA26610; Sat, 18 Apr 1998 08:58:21 GMT (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA15495; Sat, 18 Apr 1998 01:58:02 -0700 (PDT) Date: Sat, 18 Apr 1998 01:58:02 -0700 (PDT) Message-Id: <199804180858.BAA15495@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/databases/tkgnats - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/04/18 01:58:02 PDT ports/databases/tkgnats - Imported sources Update of /home/ncvs/ports/databases/tkgnats In directory freefall.freebsd.org:/d/users/andreas/newports/tkgnats Log Message: New port tkgnats 3.0.3 a tk frontend for the GNATS bug database Status: Vendor Tag: RICK Release Tags: v_303 I ports/databases/tkgnats/CVS N ports/databases/tkgnats/Makefile N ports/databases/tkgnats/patches/patch-aa N ports/databases/tkgnats/pkg/COMMENT N ports/databases/tkgnats/pkg/DESCR N ports/databases/tkgnats/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 01:59:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA27050 for cvs-all-outgoing; Sat, 18 Apr 1998 01:59:48 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA27034; Sat, 18 Apr 1998 08:59:43 GMT (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA15550; Sat, 18 Apr 1998 01:59:24 -0700 (PDT) Date: Sat, 18 Apr 1998 01:59:24 -0700 (PDT) Message-Id: <199804180859.BAA15550@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/databases Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/04/18 01:59:24 PDT Modified files: databases Makefile Log: activate tkgnats Revision Changes Path 1.27 +2 -1 ports/databases/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 02:04:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA27686 for cvs-all-outgoing; Sat, 18 Apr 1998 02:04:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA27680; Sat, 18 Apr 1998 09:04:05 GMT (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA15675; Sat, 18 Apr 1998 02:03:46 -0700 (PDT) Date: Sat, 18 Apr 1998 02:03:46 -0700 (PDT) Message-Id: <199804180903.CAA15675@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/databases/tkgnats Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/04/18 02:03:46 PDT Modified files: databases/tkgnats Makefile Log: build depends on gnats config files Revision Changes Path 1.2 +3 -2 ports/databases/tkgnats/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 02:23:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA00349 for cvs-all-outgoing; Sat, 18 Apr 1998 02:23:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from news1.gtn.com (news1.gtn.com [192.109.159.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA00344 for ; Sat, 18 Apr 1998 09:23:15 GMT (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by news1.gtn.com (8.8.6/8.8.6) with UUCP id LAA29519; Sat, 18 Apr 1998 11:15:06 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.8.8/8.8.8) id KAA19989; Sat, 18 Apr 1998 10:10:49 +0200 (CEST) (envelope-from andreas) Message-ID: <19980418101049.07532@klemm.gtn.com> Date: Sat, 18 Apr 1998 10:10:49 +0200 From: Andreas Klemm To: Chris Timmons , =?iso-8859-1?Q?Dag-Erling_Coidan_Sm=F8rgrav?= Cc: committers@FreeBSD.ORG Subject: Re: Come on guys, close a PR or two, will ya ? References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: ; from Chris Timmons on Fri, Apr 17, 1998 at 04:11:16PM -0700 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Fri, Apr 17, 1998 at 04:11:16PM -0700, Chris Timmons wrote: > One small caveat is that the customizable states patches to our gnats port > slightly change the behavior of gnats so that tkgnats appears to display > some PR states incorrectly - if you run in to that let me know and I'll > send you a patch. Please send me the patch. > I should probably make a port but I don't think I'll have time in the near > future. Will try to make a port. -- 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 powered by ,,symmetric multiprocessor FreeBSD'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 02:34:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA01303 for cvs-all-outgoing; Sat, 18 Apr 1998 02:34:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA01296; Sat, 18 Apr 1998 09:34:25 GMT (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 CAA15833; Sat, 18 Apr 1998 02:34:06 -0700 (PDT) Date: Sat, 18 Apr 1998 02:34:06 -0700 (PDT) Message-Id: <199804180934.CAA15833@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/04/18 02:34:06 PDT Modified files: (Branch: RELENG_2_2) lib Makefile Log: Make bulding libc_r the default. This is useful for ports like mysql. Revision Changes Path 1.47.2.13 +1 -1 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 Apr 18 02:47:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA02018 for cvs-all-outgoing; Sat, 18 Apr 1998 02:47:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA02013; Sat, 18 Apr 1998 09:47:35 GMT (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA15913; Sat, 18 Apr 1998 02:47:16 -0700 (PDT) Date: Sat, 18 Apr 1998 02:47:16 -0700 (PDT) Message-Id: <199804180947.CAA15913@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/www/http-analyze/patches patch-aa patch-ab ports/www/http-analyze/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1998/04/18 02:47:15 PDT Modified files: www/http-analyze/patches patch-aa patch-ab www/http-analyze/pkg PLIST Log: some problem detected by knarf and fixes by him and me: - http-analyze installed into the wrong path, one path component has been duplicated, fixed that in Makefile and sanitized the PLIST this changed patch-aa - had to add a post.install script to teach config.h our $(PREFIX) path - changed config.h, so that post.configure script has it easier to patch, this changed patch-ab - added @dirrm lines in PLIST, to deinstall more thoroughly - tested packaging Submitted by: Frank Bartels Revision Changes Path 1.3 +3 -3 ports/www/http-analyze/patches/patch-aa 1.3 +4 -4 ports/www/http-analyze/patches/patch-ab 1.3 +46 -43 ports/www/http-analyze/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 Apr 18 03:06:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA03758 for cvs-all-outgoing; Sat, 18 Apr 1998 03:06:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA03753; Sat, 18 Apr 1998 10:05:58 GMT (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA16064; Sat, 18 Apr 1998 03:05:39 -0700 (PDT) Date: Sat, 18 Apr 1998 03:05:39 -0700 (PDT) Message-Id: <199804181005.DAA16064@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/natd natd.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/04/18 03:05:39 PDT Modified files: usr.sbin/natd natd.8 Log: Fix incorrect flag spec PR: 6339 (part of) Submitted by: Chris Dillon Revision Changes Path 1.12 +1 -1 src/usr.sbin/natd/natd.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 03:19:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA04917 for cvs-all-outgoing; Sat, 18 Apr 1998 03:19:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from isbalham.ist.co.uk (isbalham.ist.co.uk [192.31.26.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA04911; Sat, 18 Apr 1998 10:19:39 GMT (envelope-from rb@gid.co.uk) Received: from gid.co.uk (uucp@localhost) by isbalham.ist.co.uk (8.8.7/8.8.4) with UUCP id LAA13455; Sat, 18 Apr 1998 11:18:30 +0100 (BST) Received: from [194.32.164.2] by seagoon.gid.co.uk; Sat, 18 Apr 1998 11:12:32 +0100 (BST) X-Sender: rb@194.32.164.1 Message-Id: In-Reply-To: <3538336F.41C67EA6@whistle.com> References: <199804180411.MAA16043@spinner.netplex.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Date: Sat, 18 Apr 1998 11:15:38 +0100 To: Peter Wemm From: Bob Bishop Subject: Re: cvs commit: src/sys/dev/dpt dpt_control.c src/sys/gnu/ext2fs... Cc: "Julian Elischer ,Dag-Erling C. Smxf8rgrav" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk At 6:00 am +0100 18/4/98, Julian Elischer wrote: >[...] >sorry to contradict you Peter but this is the trick.. > >"its" is a single word, the same as: >"his" and "her" > >as in: > >his cat, her cat, its cat > > >the other version, e.g. >"Joh's crow" or "John's VM code", >shouldn't be confused with this.. FWIW, the the trick with the apostrophe is that it indicates something has been left out. This is obvious in the case of can't <=> cannot. For "John's cat" you'd have to go back maybe 500 years to hear someone say "John his cat", but I believe that's more or less how the "'s" possessive originated. -- Bob Bishop (0118) 977 4017 international code +44 118 rb@gid.co.uk fax (0118) 989 4254 between 0800 and 1800 UK To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 03:27:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA05767 for cvs-all-outgoing; Sat, 18 Apr 1998 03:27:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA05761; Sat, 18 Apr 1998 10:27:41 GMT (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA16276; Sat, 18 Apr 1998 03:27:22 -0700 (PDT) Date: Sat, 18 Apr 1998 03:27:22 -0700 (PDT) Message-Id: <199804181027.DAA16276@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src/etc rc.conf rc.firewall rc.network services src/share/man/man5 rc.conf.5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/04/18 03:27:21 PDT Modified files: etc rc.conf rc.firewall rc.network services share/man/man5 rc.conf.5 Log: Add natd support. PR: 6339 Submitted by: cdillon@wolves.k12.mo.us Revision Changes Path 1.45 +4 -1 src/etc/rc.conf 1.18 +10 -1 src/etc/rc.firewall 1.22 +9 -1 src/etc/rc.network 1.46 +2 -1 src/etc/services 1.17 +23 -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 Sat Apr 18 03:57:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA10659 for cvs-all-outgoing; Sat, 18 Apr 1998 03:57:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA10653; Sat, 18 Apr 1998 10:57:10 GMT (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 DAA16514; Sat, 18 Apr 1998 03:56:51 -0700 (PDT) Date: Sat, 18 Apr 1998 03:56:51 -0700 (PDT) Message-Id: <199804181056.DAA16514@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin Makefile src/usr.bin/mktemp Makefile mktemp.1 mktemp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/04/18 03:56:50 PDT Modified files: (Branch: RELENG_2_2) usr.bin Makefile Added files: (Branch: RELENG_2_2) usr.bin/mktemp Makefile mktemp.1 mktemp.c Log: Add mktemp(1) from current. Revision Changes Path 1.73.2.14 +2 -2 src/usr.bin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 04:01:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA11632 for cvs-all-outgoing; Sat, 18 Apr 1998 04:01:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA11612; Sat, 18 Apr 1998 11:01:18 GMT (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA16577; Sat, 18 Apr 1998 04:00:58 -0700 (PDT) Date: Sat, 18 Apr 1998 04:00:58 -0700 (PDT) Message-Id: <199804181100.EAA16577@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-www@FreeBSD.ORG Subject: cvs commit: www/data docs.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/04/18 04:00:57 PDT Modified files: data docs.sgml Log: Move 'FreeBSD in the Press' to the top of the documentation page. Pointed out by: "David Shanes" Revision Changes Path 1.40 +6 -5 www/data/docs.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 04:02:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA11993 for cvs-all-outgoing; Sat, 18 Apr 1998 04:02:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from hda.hda.com (hda-bicnet.bicnet.net [208.220.66.37]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA11963 for ; Sat, 18 Apr 1998 11:02:40 GMT (envelope-from dufault@hda.hda.com) Received: (from dufault@localhost) by hda.hda.com (8.8.5/8.8.5) id GAA07402; Sat, 18 Apr 1998 06:56:28 -0400 (EDT) From: Peter Dufault Message-Id: <199804181056.GAA07402@hda.hda.com> Subject: Re: cvs commit: src/sys/dev/dpt dpt_control.c src/sys/gnu/ext2fs... In-Reply-To: <199804180411.MAA16043@spinner.netplex.com.au> from Peter Wemm at "Apr 18, 98 12:11:20 pm" To: peter@netplex.com.au (Peter Wemm) Date: Sat, 18 Apr 1998 06:56:28 -0400 (EDT) Cc: cvs-committers@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL25 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "The Elements of Style", William Strunk and E.B. White, about US$5.95, ISBN 0-02-418200-1 Kernighan and Plauger's "The Elements of Programming Style" is named after this small and valuable book. Peter -- Peter Dufault (dufault@hda.com) Realtime development, Machine control, HD Associates, Inc. Safety critical systems, Agency approval To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 04:11:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA13601 for cvs-all-outgoing; Sat, 18 Apr 1998 04:11:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA13590; Sat, 18 Apr 1998 11:11:51 GMT (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 EAA16712; Sat, 18 Apr 1998 04:11:31 -0700 (PDT) Date: Sat, 18 Apr 1998 04:11:31 -0700 (PDT) Message-Id: <199804181111.EAA16712@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/mail/mutt Makefile ports/mail/mutt/files md5 ports/mail/mutt/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/04/18 04:11:31 PDT Modified files: mail/mutt Makefile mail/mutt/files md5 mail/mutt/pkg PLIST Log: Upgrade to version 0.91.1 Revision Changes Path 1.43 +4 -4 ports/mail/mutt/Makefile 1.34 +1 -2 ports/mail/mutt/files/md5 1.12 +2 -0 ports/mail/mutt/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 Apr 18 04:12:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA13830 for cvs-all-outgoing; Sat, 18 Apr 1998 04:12:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from techunix.technion.ac.il (mellon@techunix.technion.ac.il [132.68.1.28]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA13813 for ; Sat, 18 Apr 1998 11:12:46 GMT (envelope-from mellon@techunix.technion.ac.il) Received: (from mellon@localhost) by techunix.technion.ac.il (8.8.7/8.8.5) id OAA09943; Sat, 18 Apr 1998 14:12:25 +0300 (IDT) Message-ID: <19980418141225.31425@techunix.technion.ac.il> Date: Sat, 18 Apr 1998 14:12:25 +0300 From: Anatoly Vorobey To: Peter Dufault Cc: cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/dpt dpt_control.c src/sys/gnu/ext2fs... References: <199804180411.MAA16043@spinner.netplex.com.au> <199804181056.GAA07402@hda.hda.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.88 In-Reply-To: <199804181056.GAA07402@hda.hda.com>; from Peter Dufault on Sat, Apr 18, 1998 at 06:56:28AM -0400 X-Disclaimer: I was young, I needed the money! Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk You, Peter Dufault, were spotted writing this on Sat, Apr 18, 1998 at 06:56:28AM -0400: > "The Elements of Style", William Strunk and E.B. White, > > about US$5.95, ISBN 0-02-418200-1 Incidentally, this excellent book is also online, at http://www.columbia.edu/acis/bartleby/strunk/ . -- Anatoly Vorobey, mellon@pobox.com http://pobox.com/~mellon/ "Angels can fly because they take themselves lightly" - G.K.Chesterton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 04:13:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA13895 for cvs-all-outgoing; Sat, 18 Apr 1998 04:13:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA13888; Sat, 18 Apr 1998 11:13:05 GMT (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 EAA16772; Sat, 18 Apr 1998 04:12:45 -0700 (PDT) Date: Sat, 18 Apr 1998 04:12:45 -0700 (PDT) Message-Id: <199804181112.EAA16772@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/mail/mutt/patches patch-06 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/04/18 04:12:45 PDT Removed files: mail/mutt/patches patch-06 Log: forgot the ``cvs rm''. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 04:49:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA21222 for cvs-all-outgoing; Sat, 18 Apr 1998 04:49:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA21201 for ; Sat, 18 Apr 1998 11:49:21 GMT (envelope-from dag-erli@ifi.uio.no) Received: from bilskirnir.ifi.uio.no (2602@bilskirnir.ifi.uio.no [129.240.64.135]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with ESMTP id NAA19294; Sat, 18 Apr 1998 13:49:18 +0200 (MET DST) Received: (from dag-erli@localhost) by bilskirnir.ifi.uio.no ; Sat, 18 Apr 1998 13:49:18 +0200 (MET DST) Mime-Version: 1.0 To: Andreas Klemm Cc: Eivind Eklund , cvs-committers@FreeBSD.ORG Subject: Re: ssh setup References: <199804171557.IAA05893@freefall.freebsd.org> <19980417183902.45662@follo.net> <19980418093721.42108@klemm.gtn.com> Organization: Gutteklubben Terrasse / KRST / PUMS / YASMW X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-Stop-Spam: http://www.cauce.org From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 18 Apr 1998 13:49:17 +0200 In-Reply-To: Andreas Klemm's message of "Sat, 18 Apr 1998 09:37:21 +0200" Message-ID: Lines: 19 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Andreas Klemm writes: > After adding this to my .login file > > eval `ssh-agent -c` > > I get messages like this > Cannot make temporary authentication socket directory /tmp/ssh-andreas-15419 Do you have write permission to /tmp? # chmod a+rwxt /tmp or even better, # chmod a+rwxt /usr/tmp # echo 'TMPDIR=/usr/tmp; export TMPDIR' >> /etc/profile -- Nobody else has a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 05:32:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA27007 for cvs-all-outgoing; Sat, 18 Apr 1998 05:32:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA26998; Sat, 18 Apr 1998 12:32:52 GMT (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA19067; Sat, 18 Apr 1998 05:32:32 -0700 (PDT) Date: Sat, 18 Apr 1998 05:32:32 -0700 (PDT) Message-Id: <199804181232.FAA19067@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/news/diablo Makefile ports/news/diablo/files md5 ports/news/diablo/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/04/18 05:32:31 PDT Modified files: news/diablo Makefile news/diablo/files md5 news/diablo/pkg PLIST Log: original distribution updated (1.15-release) PR: 6304 Revision Changes Path 1.4 +8 -5 ports/news/diablo/Makefile 1.3 +1 -1 ports/news/diablo/files/md5 1.3 +34 -11 ports/news/diablo/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 Apr 18 05:38:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA28056 for cvs-all-outgoing; Sat, 18 Apr 1998 05:38:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA28041; Sat, 18 Apr 1998 12:38:52 GMT (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA19250; Sat, 18 Apr 1998 05:38:31 -0700 (PDT) Date: Sat, 18 Apr 1998 05:38:31 -0700 (PDT) Message-Id: <199804181238.FAA19250@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/netpipes Makefile ports/net/netpipes/files md5 ports/net/netpipes/patches patch-aa ports/net/netpipes/pkg DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/04/18 05:38:31 PDT Modified files: net/netpipes Makefile net/netpipes/files md5 net/netpipes/patches patch-aa net/netpipes/pkg DESCR PLIST Log: original distribution updated (-> 4.0) PR: 6302 Revision Changes Path 1.4 +8 -7 ports/net/netpipes/Makefile 1.2 +1 -1 ports/net/netpipes/files/md5 1.3 +22 -18 ports/net/netpipes/patches/patch-aa 1.2 +1 -1 ports/net/netpipes/pkg/DESCR 1.2 +4 -0 ports/net/netpipes/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 Apr 18 05:40:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA28441 for cvs-all-outgoing; Sat, 18 Apr 1998 05:40:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA28417; Sat, 18 Apr 1998 12:40:25 GMT (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA19363; Sat, 18 Apr 1998 05:40:04 -0700 (PDT) Date: Sat, 18 Apr 1998 05:40:04 -0700 (PDT) Message-Id: <199804181240.FAA19363@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/wide-dhcp Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/04/18 05:40:04 PDT Modified files: net/wide-dhcp Makefile Log: typo fixed. PR: 6286 Revision Changes Path 1.11 +2 -2 ports/net/wide-dhcp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 05:45:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA29643 for cvs-all-outgoing; Sat, 18 Apr 1998 05:45:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA29635; Sat, 18 Apr 1998 12:45:35 GMT (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA19636; Sat, 18 Apr 1998 05:45:15 -0700 (PDT) Date: Sat, 18 Apr 1998 05:45:15 -0700 (PDT) Message-Id: <199804181245.FAA19636@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/games/xsokoban Makefile ports/games/xsokoban/files md5 ports/games/xsokoban/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/04/18 05:45:14 PDT Modified files: games/xsokoban Makefile games/xsokoban/files md5 games/xsokoban/pkg PLIST Log: update to use latest version (3.3c) PR: 6222 Revision Changes Path 1.3 +3 -3 ports/games/xsokoban/Makefile 1.2 +1 -1 ports/games/xsokoban/files/md5 1.2 +6 -0 ports/games/xsokoban/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 Apr 18 05:54:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA02112 for cvs-all-outgoing; Sat, 18 Apr 1998 05:54:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA02104; Sat, 18 Apr 1998 12:54:43 GMT (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA19824; Sat, 18 Apr 1998 05:54:23 -0700 (PDT) Date: Sat, 18 Apr 1998 05:54:23 -0700 (PDT) Message-Id: <199804181254.FAA19824@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/print/gp Makefile ports/print/gp/patches patch-aa ports/print/gp/scripts post-build configure Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/04/18 05:54:23 PDT Modified files: print/gp Makefile print/gp/patches patch-aa print/gp/scripts configure Added files: print/gp/scripts post-build Log: port update, to let it build correctly. PR: 6110 Revision Changes Path 1.5 +17 -13 ports/print/gp/Makefile 1.2 +8 -6 ports/print/gp/patches/patch-aa 1.2 +0 -28 ports/print/gp/scripts/configure To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 06:26:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA24613 for cvs-all-outgoing; Sat, 18 Apr 1998 06:26:16 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA24437; Sat, 18 Apr 1998 13:26:12 GMT (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 GAA20107; Sat, 18 Apr 1998 06:25:51 -0700 (PDT) Date: Sat, 18 Apr 1998 06:25:51 -0700 (PDT) Message-Id: <199804181325.GAA20107@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa wd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/04/18 06:25:51 PDT Modified files: sys/i386/isa wd.c Log: MFC (reduce diff w/-CUR, with hopes of getting DMA support into -STABLE) 1.128 (FUNCTIONAL: better sleep handling) 1.131 (STYLE: labels w/o stmt) 1.132 (STYLE: remove unused #includes) 1.141 (FUNCTIONAL: devfs bug, 2nd controler not showing) 1.144 (STYLE: dont shadow other vars) 1.150 (FUNCTIONAL: fix search bug) Revision Changes Path 1.157 +98 -318 src/sys/i386/isa/wd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 06:35:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA06774 for cvs-all-outgoing; Sat, 18 Apr 1998 06:35:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from news1.gtn.com (news1.gtn.com [192.109.159.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA06769 for ; Sat, 18 Apr 1998 13:35:47 GMT (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by news1.gtn.com (8.8.6/8.8.6) with UUCP id PAA26408; Sat, 18 Apr 1998 15:15:06 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.8.8/8.8.8) id OAA02969; Sat, 18 Apr 1998 14:12:23 +0200 (CEST) (envelope-from andreas) Message-ID: <19980418141223.32577@klemm.gtn.com> Date: Sat, 18 Apr 1998 14:12:23 +0200 From: Andreas Klemm To: =?iso-8859-1?Q?Dag-Erling_Coidan_Sm=F8rgrav?= Cc: Eivind Eklund , cvs-committers@FreeBSD.ORG Subject: Re: ssh setup References: <199804171557.IAA05893@freefall.freebsd.org> <19980417183902.45662@follo.net> <19980418093721.42108@klemm.gtn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Mutt 0.89.1i In-Reply-To: =?iso-8859-1?Q?=3Cxzp3efbic3m=2Efsf=40bilskirnir=2Eifi=2Euio=2Eno=3E=3B_?= =?iso-8859-1?Q?from_Dag-Erling_Coidan_Sm=F8rgrav__on_Sat=2C_Apr_18=2C_19?= =?iso-8859-1?Q?98_at_01=3A49=3A17PM_+0200?= X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sat, Apr 18, 1998 at 01:49:17PM +0200, Dag-Erling Coidan Smørgrav wrote: > Andreas Klemm writes: > > After adding this to my .login file > > > > eval `ssh-agent -c` > > > > I get messages like this > > Cannot make temporary authentication socket directory /tmp/ssh-andreas-15419 > > Do you have write permission to /tmp? drwx------ 2 andreas wheel 1024 18 Apr 14:11 ssh-andreas /tmp/ssh-andreas: total 0 srwx------ 1 andreas wheel 0 18 Apr 13:36 agent-socket-1962 srwx------ 1 andreas wheel 0 18 Apr 13:36 agent-socket-1964 srwx------ 1 andreas wheel 0 18 Apr 14:11 agent-socket-2962 srwx------ 1 andreas wheel 0 18 Apr 14:11 agent-socket-2964 srwx------ 1 andreas wheel 0 18 Apr 12:54 agent-socket-316 srwx------ 1 andreas wheel 0 18 Apr 12:54 agent-socket-318 srwx------ 1 andreas wheel 0 18 Apr 12:55 agent-socket-363 srwx------ 1 andreas wheel 0 18 Apr 12:55 agent-socket-364 srwx------ 1 andreas wheel 0 18 Apr 12:55 agent-socket-365 srwx------ 1 andreas wheel 0 18 Apr 12:55 agent-socket-368 srwx------ 1 andreas wheel 0 18 Apr 12:55 agent-socket-369 srwx------ 1 andreas wheel 0 18 Apr 12:55 agent-socket-371 srwx------ 1 andreas wheel 0 18 Apr 12:55 agent-socket-385 srwx------ 1 andreas wheel 0 18 Apr 12:55 agent-socket-387 srwx------ 1 andreas wheel 0 18 Apr 12:55 agent-socket-391 srwx------ 1 andreas wheel 0 18 Apr 12:55 agent-socket-392 srwx------ 1 andreas wheel 0 18 Apr 12:55 agent-socket-395 srwx------ 1 andreas wheel 0 18 Apr 12:55 agent-socket-396 -- 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 powered by ,,symmetric multiprocessor FreeBSD'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 06:37:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA09840 for cvs-all-outgoing; Sat, 18 Apr 1998 06:37:49 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA09705; Sat, 18 Apr 1998 13:37:45 GMT (envelope-from stark@FreeBSD.org) From: Gene Stark Received: (from stark@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA10514; Sat, 18 Apr 1998 06:37:25 -0700 (PDT) Date: Sat, 18 Apr 1998 06:37:25 -0700 (PDT) Message-Id: <199804181337.GAA10514@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-libexec@FreeBSD.ORG Subject: cvs commit: src/libexec/xtend user.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk stark 1998/04/18 06:37:24 PDT Modified files: libexec/xtend user.c Log: PR: misc/4679 Submitted by: Glen Foster (gfoster@gfoster.com) Fix missing "/" in dump file pathname. Revision Changes Path 1.8 +2 -1 src/libexec/xtend/user.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 06:43:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA10639 for cvs-all-outgoing; Sat, 18 Apr 1998 06:43:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA10631; Sat, 18 Apr 1998 13:43:33 GMT (envelope-from stark@FreeBSD.org) From: Gene Stark Received: (from stark@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA13936; Sat, 18 Apr 1998 06:43:12 -0700 (PDT) Date: Sat, 18 Apr 1998 06:43:12 -0700 (PDT) Message-Id: <199804181343.GAA13936@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-libexec@FreeBSD.ORG Subject: cvs commit: src/libexec/xtend user.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk stark 1998/04/18 06:43:12 PDT Modified files: (Branch: RELENG_2_2) libexec/xtend user.c Log: PR: misc/4679 Submitted by: Glen Foster (gfoster@gfoster.com) Merge from -current. Revision Changes Path 1.3.2.3 +2 -1 src/libexec/xtend/user.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 06:52:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA12166 for cvs-all-outgoing; Sat, 18 Apr 1998 06:52:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from shadow.worldbank.org (shadow.worldbank.org [138.220.104.78]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA12160; Sat, 18 Apr 1998 13:52:16 GMT (envelope-from adhir@worldbank.org) Received: from localhost (adhir@localhost) by shadow.worldbank.org (8.8.8/8.8.8) with SMTP id JAA08143; Sat, 18 Apr 1998 09:48:30 -0400 (EDT) (envelope-from adhir@worldbank.org) X-Authentication-Warning: shadow.worldbank.org: adhir owned process doing -bs Date: Sat, 18 Apr 1998 09:48:30 -0400 (EDT) From: "Alok K. Dhir" To: danny@panda.hilink.com.au cc: jak@cetlink.net, peter@netplex.com.au, des@FreeBSD.ORG, cvs-committers@FreeBSD.ORG Subject: Re: Correct English style 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 Sat, 18 Apr 1998 danny@panda.hilink.com.au wrote: > When someone who learnt English as a second language corrects English ^^^^^^ That's "learned". :-) Al To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 07:01:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA13518 for cvs-all-outgoing; Sat, 18 Apr 1998 07:01:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA13513; Sat, 18 Apr 1998 14:01:25 GMT (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA14117; Sat, 18 Apr 1998 07:01:05 -0700 (PDT) Date: Sat, 18 Apr 1998 07:01:05 -0700 (PDT) Message-Id: <199804181401.HAA14117@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/lang Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/04/18 07:01:05 PDT Modified files: lang Makefile Log: Activate TenDRA (apparently not done when port was committed). Revision Changes Path 1.98 +2 -1 ports/lang/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 07:06:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA14197 for cvs-all-outgoing; Sat, 18 Apr 1998 07:06:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA14148; Sat, 18 Apr 1998 14:05:59 GMT (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id AAA25276; Sun, 19 Apr 1998 00:05:20 +1000 Date: Sun, 19 Apr 1998 00:05:20 +1000 From: Bruce Evans Message-Id: <199804181405.AAA25276@godzilla.zeta.org.au> To: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-sys@FreeBSD.ORG, obrien@FreeBSD.ORG Subject: Re: cvs commit: src/sys/i386/isa wd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >obrien 1998/04/18 06:25:51 PDT > > Modified files: > sys/i386/isa wd.c > Log: > MFC (reduce diff w/-CUR, with hopes of getting DMA support into -STABLE) ^^^ > 1.128 (FUNCTIONAL: better sleep handling) > 1.131 (STYLE: labels w/o stmt) > 1.132 (STYLE: remove unused #includes) > 1.141 (FUNCTIONAL: devfs bug, 2nd controler not showing) > 1.144 (STYLE: dont shadow other vars) > 1.150 (FUNCTIONAL: fix search bug) > > Revision Changes Path > 1.157 +98 -318 src/sys/i386/isa/wd.c ^^^^^oops ^^^^^^^^there aren't quite that many unused includes here :-) Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 08:36:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA26680 for cvs-all-outgoing; Sat, 18 Apr 1998 08:36:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au (spinner.netplex.com.au [202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA26627; Sat, 18 Apr 1998 15:35:56 GMT (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.8.8/8.8.8/Spinner) with ESMTP id XAA00836; Sat, 18 Apr 1998 23:35:45 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199804181535.XAA00836@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: Bruce Evans cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-sys@FreeBSD.ORG, obrien@FreeBSD.ORG Subject: Re: cvs commit: src/sys/i386/isa wd.c In-reply-to: Your message of "Sun, 19 Apr 1998 00:05:20 +1000." <199804181405.AAA25276@godzilla.zeta.org.au> Date: Sat, 18 Apr 1998 23:35:44 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Bruce Evans wrote: > >obrien 1998/04/18 06:25:51 PDT > > > > Modified files: > > sys/i386/isa wd.c > > Log: > > MFC (reduce diff w/-CUR, with hopes of getting DMA support into -STABLE) > ^^^ > > 1.128 (FUNCTIONAL: better sleep handling) > > 1.131 (STYLE: labels w/o stmt) > > 1.132 (STYLE: remove unused #includes) > > 1.141 (FUNCTIONAL: devfs bug, 2nd controler not showing) > > 1.144 (STYLE: dont shadow other vars) > > 1.150 (FUNCTIONAL: fix search bug) > > > > Revision Changes Path > > 1.157 +98 -318 src/sys/i386/isa/wd.c > ^^^^^oops ^^^^^^^^there aren't quite that many unused includes here :-) This looks horribly like the 2.2 version just got spammed over the -current version, doesn't it? :-/ > Bruce > Cheers, -Peter -- Peter Wemm Netplex Consulting To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 08:45:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA27794 for cvs-all-outgoing; Sat, 18 Apr 1998 08:45:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA27788; Sat, 18 Apr 1998 15:45:51 GMT (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA14379; Sat, 18 Apr 1998 08:45:30 -0700 (PDT) Date: Sat, 18 Apr 1998 08:45:30 -0700 (PDT) Message-Id: <199804181545.IAA14379@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/i386 userconfig.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/04/18 08:45:30 PDT Modified files: (Branch: RELENG_2_2) sys/pc98/i386 userconfig.c Log: Sync with sys/i386/i386/userconfig.c revision 1.48. Submitted by: NOKUBI Hirotaka Revision Changes Path 1.10.2.19 +3 -3 src/sys/pc98/i386/userconfig.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 08:46:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA28019 for cvs-all-outgoing; Sat, 18 Apr 1998 08:46:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA28011; Sat, 18 Apr 1998 15:46:50 GMT (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA14411; Sat, 18 Apr 1998 08:46:29 -0700 (PDT) Date: Sat, 18 Apr 1998 08:46:29 -0700 (PDT) Message-Id: <199804181546.IAA14411@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 syscons.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/04/18 08:46:29 PDT Modified files: (Branch: RELENG_2_2) sys/pc98/pc98 syscons.c Log: Sync with sys/i386/isa/syscons.c revision 1.182.2.32. Submitted by: NOKUBI Hirotaka Revision Changes Path 1.13.2.29 +8 -8 src/sys/pc98/pc98/syscons.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 08:50:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA29415 for cvs-all-outgoing; Sat, 18 Apr 1998 08:50:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA29391; Sat, 18 Apr 1998 15:50:42 GMT (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA14543; Sat, 18 Apr 1998 08:50:21 -0700 (PDT) Date: Sat, 18 Apr 1998 08:50:21 -0700 (PDT) Message-Id: <199804181550.IAA14543@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/japanese/skkinput Makefile ports/japanese/skkinput/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/04/18 08:50:20 PDT Modified files: japanese/skkinput Makefile japanese/skkinput/files md5 Log: Original distribution was updated. (2.00-SNAP980123 --> 2.00) PR: 6126 Revision Changes Path 1.4 +4 -4 ports/japanese/skkinput/Makefile 1.2 +1 -1 ports/japanese/skkinput/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 Apr 18 12:25:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA15165 for cvs-all-outgoing; Sat, 18 Apr 1998 12:25:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA15160; Sat, 18 Apr 1998 19:25:07 GMT (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA15002; Sat, 18 Apr 1998 12:24:45 -0700 (PDT) Date: Sat, 18 Apr 1998 12:24:45 -0700 (PDT) Message-Id: <199804181924.MAA15002@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/lib/libc/sys lseek.2 src/sys/kern vfs_syscalls.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/04/18 12:24:45 PDT Modified files: lib/libc/sys lseek.2 Log: Return EINVAL and do not changefile pointer if resulting offset is negative. PR: kern/6184 Revision Changes Path 1.7 +2 -2 src/lib/libc/sys/lseek.2 Modified files: sys/kern vfs_syscalls.c Log: Return EINVAL and do not change file pointer if resulting offset is negative. PR: kern/6184 Revision Changes Path 1.98 +7 -5 src/sys/kern/vfs_syscalls.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 13:18:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA21129 for cvs-all-outgoing; Sat, 18 Apr 1998 13:18:03 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA21122; Sat, 18 Apr 1998 20:18:00 GMT (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA15248; Sat, 18 Apr 1998 13:17:38 -0700 (PDT) Date: Sat, 18 Apr 1998 13:17:38 -0700 (PDT) Message-Id: <199804182017.NAA15248@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/comms/conserver/files Makefile ports/comms/conserver/patches patch-ah patch-ai patch-ae ports/comms/conserver/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/04/18 13:17:37 PDT Modified files: comms/conserver/files Makefile comms/conserver/patches patch-ae comms/conserver/pkg PLIST Added files: comms/conserver/patches patch-ah patch-ai Log: Tweak autologin to get it to the point where it appears to work.. Move 'console' to /usr/local/bin rather than /usr/local/sbin since there's nothing about it that requires superuser access in any way. Revision Changes Path 1.2 +1 -1 ports/comms/conserver/files/Makefile 1.4 +1 -1 ports/comms/conserver/patches/patch-ae 1.3 +2 -1 ports/comms/conserver/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 Apr 18 13:50:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA27521 for cvs-all-outgoing; Sat, 18 Apr 1998 13:50:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA27516; Sat, 18 Apr 1998 20:50:24 GMT (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA15362; Sat, 18 Apr 1998 13:49:59 -0700 (PDT) Date: Sat, 18 Apr 1998 13:49:59 -0700 (PDT) Message-Id: <199804182049.NAA15362@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/comms/conserver/patches patch-ah Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/04/18 13:49:59 PDT Modified files: comms/conserver/patches patch-ah Log: Argh; have I mentioned that I hate ttyslot() keyed utmp files yet? :-] Revision Changes Path 1.2 +5 -4 ports/comms/conserver/patches/patch-ah To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 15:27:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA15695 for cvs-all-outgoing; Sat, 18 Apr 1998 15:27:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA15680; Sat, 18 Apr 1998 22:27:47 GMT (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA15598; Sat, 18 Apr 1998 15:27:23 -0700 (PDT) Date: Sat, 18 Apr 1998 15:27:23 -0700 (PDT) Message-Id: <199804182227.PAA15598@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-other@FreeBSD.ORG Subject: cvs commit: /home/kuriyama/.MYCVS/./.ssh known_hosts Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/04/18 15:27:23 PDT Added files: home/kuriyama/.MYCVS/./.ssh known_hosts Log: OK To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 15:57:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA19729 for cvs-all-outgoing; Sat, 18 Apr 1998 15:57:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from burka.rdy.com (dima@burka.rdy.com [205.149.163.30]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA19715; Sat, 18 Apr 1998 22:57:49 GMT (envelope-from dima@burka.rdy.com) Received: by burka.rdy.com id PAA10569; (8.8.8/RDY) Sat, 18 Apr 1998 15:57:49 -0700 (PDT) Message-Id: <199804182257.PAA10569@burka.rdy.com> Subject: Re: cvs commit: /home/kuriyama/.MYCVS/./.ssh known_hosts In-Reply-To: <199804182227.PAA15598@freefall.freebsd.org> from Jun Kuriyama at "Apr 18, 98 03:27:23 pm" To: kuriyama@FreeBSD.ORG (Jun Kuriyama) Date: Sat, 18 Apr 1998 15:57:49 -0700 (PDT) Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-other@FreeBSD.ORG X-Class: Fast Organization: HackerDome Reply-To: dima@best.net From: dima@best.net (Dima Ruban) X-Mailer: ELM [version 2.4ME+ PL38 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk What is it? :-) Jun Kuriyama writes: > kuriyama 1998/04/18 15:27:23 PDT > > Added files: > home/kuriyama/.MYCVS/./.ssh known_hosts > Log: > OK > -- dima To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 16:17:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA23666 for cvs-all-outgoing; Sat, 18 Apr 1998 16:17:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA23626; Sat, 18 Apr 1998 23:17:53 GMT (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA16030; Sat, 18 Apr 1998 16:17:28 -0700 (PDT) Date: Sat, 18 Apr 1998 16:17:28 -0700 (PDT) Message-Id: <199804182317.QAA16030@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c chat.c datalink.c timer.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/04/18 16:17:27 PDT Modified files: (Branch: MP) usr.sbin/ppp bundle.c chat.c datalink.c timer.c Log: Destroy struct chat when it's finished in struct datalink. Initialise chat timers correctly as they're malloc()ed as part of struct datalink, and initially contain garbage. Revision Changes Path 1.1.2.53 +2 -2 src/usr.sbin/ppp/Attic/bundle.c 1.44.2.24 +6 -6 src/usr.sbin/ppp/chat.c 1.1.2.41 +12 -3 src/usr.sbin/ppp/Attic/datalink.c 1.27.2.6 +2 -2 src/usr.sbin/ppp/timer.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 16:24:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA24876 for cvs-all-outgoing; Sat, 18 Apr 1998 16:24:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mail.kt.rim.or.jp (root@mail.kt.rim.or.jp [202.247.130.53]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA24859; Sat, 18 Apr 1998 23:24:04 GMT (envelope-from kuriyama@opt.phys.waseda.ac.jp) Received: from moon.opt.phys.waseda.ac.jp (ppp387.kt.rim.or.jp [202.247.140.87]) by mail.kt.rim.or.jp (8.8.5/3.4W3-rim1.1) with ESMTP id IAA26617; Sun, 19 Apr 1998 08:23:56 +0900 (JST) Received: from opt.phys.waseda.ac.jp (earth [192.168.1.2]) by moon.opt.phys.waseda.ac.jp (8.8.7/3.5Wpl4/moon-0.9) with ESMTP id IAA02421; Sun, 19 Apr 1998 08:22:24 +0900 (JST) Message-ID: <3539357E.129B8BEF@opt.phys.waseda.ac.jp> Date: Sun, 19 Apr 1998 08:21:34 +0900 From: Jun Kuriyama X-Mailer: Mozilla 4.04 [ja] (Win95; I) MIME-Version: 1.0 To: dima@best.net, peter@FreeBSD.ORG CC: Jun Kuriyama , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-other@FreeBSD.ORG Subject: Re: cvs commit: /home/kuriyama/.MYCVS/./.ssh known_hosts References: <199804182257.PAA10569@burka.rdy.com> Content-Type: text/plain; charset=iso-2022-jp Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Dima Ruban wrote: > What is it? :-) > > > kuriyama 1998/04/18 15:27:23 PDT > > > > Added files: > > home/kuriyama/.MYCVS/./.ssh known_hosts > > Log: > > OK Sigh... It's my mistake. peter CVS-meister, Can you remove it from CVS-repository? Jun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 16:25:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA25216 for cvs-all-outgoing; Sat, 18 Apr 1998 16:25:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA25211; Sat, 18 Apr 1998 23:25:42 GMT (envelope-from nate@FreeBSD.org) From: Nate Williams Received: (from nate@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA16239; Sat, 18 Apr 1998 16:25:18 -0700 (PDT) Date: Sat, 18 Apr 1998 16:25:18 -0700 (PDT) Message-Id: <199804182325.QAA16239@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pccard cardinfo.h pccard.c pcic.c skel.c card.h src/sys/i386/isa aic6360.c if_ed.c if_ep.c if_fe.c sio.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nate 1998/04/18 16:25:18 PDT Modified files: (Branch: RELENG_2_2) sys/pccard pccard.c pcic.c skel.c sys/i386/isa aic6360.c if_ed.c if_ep.c if_fe.c sio.c Added files: (Branch: RELENG_2_2) sys/pccard cardinfo.h Removed files: (Branch: RELENG_2_2) sys/pccard card.h Log: MFC: pccard/card.h -> pccard/cardinfo.h Revision Changes Path 1.27.2.7 +1 -1 src/sys/pccard/pccard.c 1.23.2.6 +1 -1 src/sys/pccard/pcic.c 1.1.6.3 +1 -1 src/sys/pccard/skel.c 1.24.2.3 +2 -2 src/sys/i386/isa/aic6360.c 1.107.2.7 +2 -2 src/sys/i386/isa/if_ed.c 1.53.2.5 +2 -2 src/sys/i386/isa/if_ep.c 1.20.2.5 +2 -2 src/sys/i386/isa/if_fe.c 1.147.2.14 +2 -2 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 Sat Apr 18 16:27:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA25554 for cvs-all-outgoing; Sat, 18 Apr 1998 16:27:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA25547; Sat, 18 Apr 1998 23:27:32 GMT (envelope-from nate@FreeBSD.org) From: Nate Williams Received: (from nate@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA16302; Sat, 18 Apr 1998 16:27:08 -0700 (PDT) Date: Sat, 18 Apr 1998 16:27:08 -0700 (PDT) Message-Id: <199804182327.QAA16302@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 if_ed.c if_fe.c sio.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nate 1998/04/18 16:27:08 PDT Modified files: (Branch: RELENG_2_2) sys/pc98/pc98 if_ed.c if_fe.c sio.c Log: [ Whoops, forgot about non-x86 stuff] MFC: pccard/card.h -> pccard/cardinfo.h Revision Changes Path 1.11.2.14 +2 -2 src/sys/pc98/pc98/if_ed.c 1.10.2.8 +2 -2 src/sys/pc98/pc98/if_fe.c 1.8.2.17 +2 -2 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 Sat Apr 18 16:29:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA25883 for cvs-all-outgoing; Sat, 18 Apr 1998 16:29:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA25871; Sat, 18 Apr 1998 23:29:17 GMT (envelope-from nate@FreeBSD.org) From: Nate Williams Received: (from nate@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA16451; Sat, 18 Apr 1998 16:28:53 -0700 (PDT) Date: Sat, 18 Apr 1998 16:28:53 -0700 (PDT) Message-Id: <199804182328.QAA16451@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pccard/pccardc rdattr.c dumpcis.c enabler.c pccardc.c pccardmem.c printcis.c rdmap.c rdreg.c wrattr.c wrreg.c src/usr.sbin/pccard/pccardd pccardd.c Makefile cardd.c cardd.h file.c pccardd.8 readcis.c util.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nate 1998/04/18 16:28:53 PDT Modified files: (Branch: RELENG_2_2) usr.sbin/pccard/pccardc dumpcis.c enabler.c pccardc.c pccardmem.c printcis.c rdmap.c rdreg.c wrattr.c wrreg.c usr.sbin/pccard/pccardd Makefile cardd.c cardd.h file.c pccardd.8 readcis.c util.c Added files: (Branch: RELENG_2_2) usr.sbin/pccard/pccardc rdattr.c usr.sbin/pccard/pccardd pccardd.c Log: MFC: - pccard/card.h -> pccard/cardinfo.h - Addition of rdattr to pccardc - cleanups - Breakout cardd.c into pccardd.c and cardd.c Revision Changes Path 1.5.2.2 +2 -2 src/usr.sbin/pccard/pccardc/dumpcis.c 1.5.2.4 +2 -2 src/usr.sbin/pccard/pccardc/enabler.c 1.3.2.2 +3 -1 src/usr.sbin/pccard/pccardc/pccardc.c 1.5.2.2 +2 -2 src/usr.sbin/pccard/pccardc/pccardmem.c 1.5.2.2 +2 -2 src/usr.sbin/pccard/pccardc/printcis.c 1.5.2.2 +2 -2 src/usr.sbin/pccard/pccardc/rdmap.c 1.5.2.2 +2 -2 src/usr.sbin/pccard/pccardc/rdreg.c 1.6.2.2 +2 -2 src/usr.sbin/pccard/pccardc/wrattr.c 1.5.2.2 +2 -2 src/usr.sbin/pccard/pccardc/wrreg.c 1.3.2.1 +1 -1 src/usr.sbin/pccard/pccardd/Makefile 1.13.2.9 +18 -120 src/usr.sbin/pccard/pccardd/cardd.c 1.5.2.3 +17 -16 src/usr.sbin/pccard/pccardd/cardd.h 1.8.2.4 +2 -3 src/usr.sbin/pccard/pccardd/file.c 1.4.2.4 +2 -2 src/usr.sbin/pccard/pccardd/pccardd.8 1.6.2.3 +7 -2 src/usr.sbin/pccard/pccardd/readcis.c 1.6.2.4 +10 -10 src/usr.sbin/pccard/pccardd/util.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 16:35:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA27492 for cvs-all-outgoing; Sat, 18 Apr 1998 16:35:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA27471; Sat, 18 Apr 1998 23:35:57 GMT (envelope-from nate@FreeBSD.org) From: Nate Williams Received: (from nate@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA16494; Sat, 18 Apr 1998 16:35:34 -0700 (PDT) Date: Sat, 18 Apr 1998 16:35:34 -0700 (PDT) Message-Id: <199804182335.QAA16494@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pccard/pccardc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nate 1998/04/18 16:35:33 PDT Modified files: (Branch: RELENG_2_2) usr.sbin/pccard/pccardc Makefile Log: MFC: rdattr function added. Revision Changes Path 1.3.2.2 +2 -2 src/usr.sbin/pccard/pccardc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 17:34:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA09762 for cvs-all-outgoing; Sat, 18 Apr 1998 17:34:20 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA09757; Sun, 19 Apr 1998 00:34:18 GMT (envelope-from jmacd@FreeBSD.org) From: Joshua Peck Macdonald Received: (from jmacd@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA18923; Sat, 18 Apr 1998 17:33:54 -0700 (PDT) Date: Sat, 18 Apr 1998 17:33:54 -0700 (PDT) Message-Id: <199804190033.RAA18923@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/prcs Makefile ports/devel/prcs/files md5 ports/devel/prcs/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jmacd 1998/04/18 17:33:54 PDT Modified files: devel/prcs Makefile devel/prcs/files md5 Log: Upgrade PRCS version to 1.2.4. Revision Changes Path 1.11 +3 -3 ports/devel/prcs/Makefile 1.7 +1 -1 ports/devel/prcs/files/md5 Modified files: devel/prcs/pkg PLIST Log: Upgrade PRCS version to 1.2.4, add new elisp files. Revision Changes Path 1.3 +4 -0 ports/devel/prcs/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 Apr 18 18:18:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA16622 for cvs-all-outgoing; Sat, 18 Apr 1998 18:18:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA16607; Sun, 19 Apr 1998 01:18:35 GMT (envelope-from jmacd@FreeBSD.org) From: Joshua Peck Macdonald Received: (from jmacd@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA19668; Sat, 18 Apr 1998 18:18:11 -0700 (PDT) Date: Sat, 18 Apr 1998 18:18:11 -0700 (PDT) Message-Id: <199804190118.SAA19668@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/misc/xdelta Makefile ports/misc/xdelta/files md5 ports/misc/xdelta/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jmacd 1998/04/18 18:18:10 PDT Modified files: misc/xdelta Makefile misc/xdelta/files md5 misc/xdelta/pkg PLIST Log: Upgrade version, add MAN1 variable, make myself maintainer. Revision Changes Path 1.5 +6 -5 ports/misc/xdelta/Makefile 1.2 +1 -1 ports/misc/xdelta/files/md5 1.2 +2 -1 ports/misc/xdelta/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 Apr 18 18:19:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA16771 for cvs-all-outgoing; Sat, 18 Apr 1998 18:19:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA16766; Sun, 19 Apr 1998 01:19:18 GMT (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA19723; Sat, 18 Apr 1998 18:18:53 -0700 (PDT) Date: Sat, 18 Apr 1998 18:18:53 -0700 (PDT) Message-Id: <199804190118.SAA19723@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp async.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/04/18 18:18:52 PDT Modified files: (Branch: MP) usr.sbin/ppp async.c Log: Initialise our async escape map (oops, that hurt !). Revision Changes Path 1.15.2.12 +3 -1 src/usr.sbin/ppp/async.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 19:23:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA27126 for cvs-all-outgoing; Sat, 18 Apr 1998 19:23:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA27121; Sun, 19 Apr 1998 02:23:49 GMT (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA19850; Sat, 18 Apr 1998 19:23:25 -0700 (PDT) Date: Sat, 18 Apr 1998 19:23:25 -0700 (PDT) Message-Id: <199804190223.TAA19850@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp ccp.c command.c ppp.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/04/18 19:23:25 PDT Modified files: (Branch: MP) usr.sbin/ppp ccp.c command.c ppp.8 Log: Add the ``open'' command and expand ``close''. It's now possible to ``close ccp'', change your compression algorithm, then ``open ccp'' while the link is up without losing data. Revision Changes Path 1.30.2.35 +4 -1 src/usr.sbin/ppp/ccp.c 1.131.2.65 +40 -6 src/usr.sbin/ppp/command.c 1.97.2.19 +22 -3 src/usr.sbin/ppp/ppp.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 20:06:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA01003 for cvs-all-outgoing; Sat, 18 Apr 1998 20:06:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA00956; Sun, 19 Apr 1998 03:05:34 GMT (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id NAA15945; Sun, 19 Apr 1998 13:00:06 +1000 Date: Sun, 19 Apr 1998 13:00:06 +1000 From: Bruce Evans Message-Id: <199804190300.NAA15945@godzilla.zeta.org.au> To: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-lib@FreeBSD.ORG, cvs-sys@FreeBSD.ORG, des@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libc/sys lseek.2 src/sys/kern vfs_syscalls.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >des 1998/04/18 12:24:45 PDT > > Modified files: > lib/libc/sys lseek.2 > Log: > Return EINVAL and do not changefile pointer if resulting offset is negative. > PR: kern/6184 > > Revision Changes Path > 1.7 +2 -2 src/lib/libc/sys/lseek.2 > > Modified files: > sys/kern vfs_syscalls.c > Log: > Return EINVAL and do not change file pointer if resulting offset is negative. > PR: kern/6184 This is wrong. Please back it out. It breaks at least the ability to seek to high addresses in /dev/[k]mem on 64 bit systems. Not long ago when off_t was 32 bits, it was normal to seek to "negative" addresses in /dev/kmem, so portable programs should be able to handle such addresses at least if they actually request them. libkvm/kvm_proc.c:kvm_uread() shows how to handle them: errno = 0; if (lseek(fd, (off_t)uva, 0) == -1 && errno != 0) { /* Error. */ ... } /* No error. */ ... This allows seeking to (off_t)-1 provided the system supports it. I replied to the PR, but for some reason the followup didn't get attached to the PR. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 20:26:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA02490 for cvs-all-outgoing; Sat, 18 Apr 1998 20:26:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA02484; Sun, 19 Apr 1998 03:26:31 GMT (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA20024; Sat, 18 Apr 1998 20:26:07 -0700 (PDT) Date: Sat, 18 Apr 1998 20:26:07 -0700 (PDT) Message-Id: <199804190326.UAA20024@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa wd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/04/18 20:26:06 PDT Modified files: sys/i386/isa wd.c Log: Back out previous commit, obrien doesn't seem to be watching. The problem is that the previous commit spammed a hacked 2.2-stable onto -current, deleting the DMA support etc. (I guess that's one way of minimizing diffs between -current and -stable.. :-] ) Revision Changes Path 1.158 +318 -98 src/sys/i386/isa/wd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 20:37:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA03601 for cvs-all-outgoing; Sat, 18 Apr 1998 20:37:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA03587; Sun, 19 Apr 1998 03:37:21 GMT (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA20120; Sat, 18 Apr 1998 20:36:56 -0700 (PDT) Date: Sat, 18 Apr 1998 20:36:56 -0700 (PDT) Message-Id: <199804190336.UAA20120@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/sendfile Makefile ports/net/sendfile/files md5 ports/net/sendfile/patches patch-ab Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/04/18 20:36:56 PDT Modified files: net/sendfile Makefile net/sendfile/files md5 net/sendfile/patches patch-ab Log: original distribution updated. PR: 6210 Revision Changes Path 1.3 +2 -2 ports/net/sendfile/Makefile 1.3 +1 -1 ports/net/sendfile/files/md5 1.3 +38 -19 ports/net/sendfile/patches/patch-ab To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 20:39:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA04110 for cvs-all-outgoing; Sat, 18 Apr 1998 20:39:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA04091; Sun, 19 Apr 1998 03:39:35 GMT (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA20336; Sat, 18 Apr 1998 20:39:10 -0700 (PDT) Date: Sat, 18 Apr 1998 20:39:10 -0700 (PDT) Message-Id: <199804190339.UAA20336@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/print/a2ps Makefile ports/print/a2ps/files md5 ports/print/a2ps/patches patch-aa patch-ab patch-ac ports/print/a2ps/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/04/18 20:39:09 PDT Modified files: print/a2ps Makefile print/a2ps/files md5 print/a2ps/patches patch-aa patch-ab patch-ac print/a2ps/pkg PLIST Log: original distribution updated. PR: 6131 Revision Changes Path 1.15 +3 -3 ports/print/a2ps/Makefile 1.6 +1 -1 ports/print/a2ps/files/md5 1.7 +6 -7 ports/print/a2ps/patches/patch-aa 1.5 +6 -6 ports/print/a2ps/patches/patch-ab 1.4 +0 -13 ports/print/a2ps/patches/patch-ac 1.7 +15 -9 ports/print/a2ps/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 Apr 18 20:41:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA04676 for cvs-all-outgoing; Sat, 18 Apr 1998 20:41:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA04653; Sun, 19 Apr 1998 03:41:28 GMT (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA20422; Sat, 18 Apr 1998 20:41:03 -0700 (PDT) Date: Sat, 18 Apr 1998 20:41:03 -0700 (PDT) Message-Id: <199804190341.UAA20422@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp ccp.c command.c ipcp.c route.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/04/18 20:41:03 PDT Modified files: (Branch: MP) usr.sbin/ppp ccp.c command.c ipcp.c route.c Log: o Allocate new CCP protocol options if they've been enabled since we first REQ'd. o Delete the allocated options when CCP is down (TLF). o Clean the IPCP interface on the way down when we're *not* in auto mode (rather than when we are) - typo. o Don't produce two similar IpcpLayerUp messages. Revision Changes Path 1.30.2.36 +16 -10 src/usr.sbin/ppp/ccp.c 1.131.2.66 +3 -3 src/usr.sbin/ppp/command.c 1.50.2.39 +3 -7 src/usr.sbin/ppp/ipcp.c 1.42.2.18 +3 -2 src/usr.sbin/ppp/route.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 20:42:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA05017 for cvs-all-outgoing; Sat, 18 Apr 1998 20:42:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA04967; Sun, 19 Apr 1998 03:42:19 GMT (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA20477; Sat, 18 Apr 1998 20:41:53 -0700 (PDT) Date: Sat, 18 Apr 1998 20:41:53 -0700 (PDT) Message-Id: <199804190341.UAA20477@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/nslint Makefile ports/net/nslint/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk itojun 1998/04/18 20:41:53 PDT Modified files: net/nslint Makefile net/nslint/files md5 Log: original distribution updated (-> 2.0a5) Revision Changes Path 1.4 +3 -3 ports/net/nslint/Makefile 1.4 +1 -1 ports/net/nslint/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 Apr 18 22:13:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA14152 for cvs-all-outgoing; Sat, 18 Apr 1998 22:13:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA14147; Sun, 19 Apr 1998 05:13:14 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA20684; Sat, 18 Apr 1998 22:12:37 -0700 (PDT) Date: Sat, 18 Apr 1998 22:12:37 -0700 (PDT) Message-Id: <199804190512.WAA20684@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/18 22:12:37 PDT Modified files: . modules Log: cooledit --> ports/editors/cooledit Revision Changes Path 1.1918 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 22:17:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA14310 for cvs-all-outgoing; Sat, 18 Apr 1998 22:17:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org ([204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA14264; Sun, 19 Apr 1998 05:15:53 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA20709; Sat, 18 Apr 1998 22:14:27 -0700 (PDT) Date: Sat, 18 Apr 1998 22:14:27 -0700 (PDT) Message-Id: <199804190514.WAA20709@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/editors/cooledit - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/18 22:14:17 PDT ports/editors/cooledit - Imported sources Update of /home/ncvs/ports/editors/cooledit In directory freefall.freebsd.org:/d/users/mph/cooledit Log Message: Import of cooledit, a graphical application suite including an editor. PR: 5111 Submitted by: Brett Taylor Status: Vendor Tag: BRETT_TAYLOR Release Tags: v3_6_0 N ports/editors/cooledit/Makefile I ports/editors/cooledit/CVS N ports/editors/cooledit/pkg/PLIST N ports/editors/cooledit/pkg/COMMENT N ports/editors/cooledit/pkg/DESCR N ports/editors/cooledit/files/md5 N ports/editors/cooledit/patches/patch-aa N ports/editors/cooledit/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 Sat Apr 18 22:17:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA14485 for cvs-all-outgoing; Sat, 18 Apr 1998 22:17:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA14440; Sun, 19 Apr 1998 05:17:27 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA20755; Sat, 18 Apr 1998 22:17:01 -0700 (PDT) Date: Sat, 18 Apr 1998 22:17:01 -0700 (PDT) Message-Id: <199804190517.WAA20755@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/editors Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/18 22:17:01 PDT Modified files: editors Makefile Log: Activate cooledit. Revision Changes Path 1.51 +2 -1 ports/editors/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 22:17:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA14495 for cvs-all-outgoing; Sat, 18 Apr 1998 22:17:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA14288; Sun, 19 Apr 1998 05:17:13 GMT (envelope-from julian@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id WAA23995; Sat, 18 Apr 1998 22:08:31 -0700 (PDT) Received: from current1.whistle.com(207.76.205.22) via SMTP by alpo.whistle.com, id smtpd023993; Sun Apr 19 05:08:30 1998 Date: Sat, 18 Apr 1998 22:03:14 -0700 (PDT) From: Julian Elischer To: Bruce Evans cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-lib@FreeBSD.ORG, cvs-sys@FreeBSD.ORG, des@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libc/sys lseek.2 src/sys/kern vfs_syscalls.c In-Reply-To: <199804190300.NAA15945@godzilla.zeta.org.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk If this is truely 'common' then that's unfortunate. what do POSIX and friends have to say about it? On Sun, 19 Apr 1998, Bruce Evans wrote: > >des 1998/04/18 12:24:45 PDT > > > > Modified files: > > lib/libc/sys lseek.2 > > Log: > > Return EINVAL and do not changefile pointer if resulting offset is negative. > > PR: kern/6184 > > > > Revision Changes Path > > 1.7 +2 -2 src/lib/libc/sys/lseek.2 > > > > Modified files: > > sys/kern vfs_syscalls.c > > Log: > > Return EINVAL and do not change file pointer if resulting offset is negative. > > PR: kern/6184 > > This is wrong. Please back it out. It breaks at least the ability to > seek to high addresses in /dev/[k]mem on 64 bit systems. Not long ago > when off_t was 32 bits, it was normal to seek to "negative" addresses in > /dev/kmem, so portable programs should be able to handle such addresses > at least if they actually request them. libkvm/kvm_proc.c:kvm_uread() > shows how to handle them: > > errno = 0; > if (lseek(fd, (off_t)uva, 0) == -1 && errno != 0) { > /* Error. */ > ... > } > /* No error. */ > ... > > This allows seeking to (off_t)-1 provided the system supports it. > > I replied to the PR, but for some reason the followup didn't get attached > to the PR. > > Bruce > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 22:36:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA16237 for cvs-all-outgoing; Sat, 18 Apr 1998 22:36:01 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA16189; Sun, 19 Apr 1998 05:35:58 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA20946; Sat, 18 Apr 1998 22:35:33 -0700 (PDT) Date: Sat, 18 Apr 1998 22:35:33 -0700 (PDT) Message-Id: <199804190535.WAA20946@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/net/bitchx Makefile ports/net/bitchx/files md5 ports/net/bitchx/patches patch-ab Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/18 22:35:32 PDT Modified files: net/bitchx Makefile net/bitchx/files md5 Removed files: net/bitchx/patches patch-ab Log: Upgrade to 74p4. Requested by: Brad Smith Revision Changes Path 1.2 +4 -4 ports/net/bitchx/Makefile 1.2 +1 -1 ports/net/bitchx/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 Apr 18 22:40:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA17102 for cvs-all-outgoing; Sat, 18 Apr 1998 22:40:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA17097; Sun, 19 Apr 1998 05:40:53 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA20988; Sat, 18 Apr 1998 22:40:27 -0700 (PDT) Date: Sat, 18 Apr 1998 22:40:27 -0700 (PDT) Message-Id: <199804190540.WAA20988@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/p5-ReadLine-Gnu/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/18 22:40:27 PDT Modified files: devel/p5-ReadLine-Gnu/pkg DESCR Log: Add a more illuminating description (I hope). Requested by: asami Revision Changes Path 1.2 +8 -3 ports/devel/p5-ReadLine-Gnu/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 22:43:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA17727 for cvs-all-outgoing; Sat, 18 Apr 1998 22:43:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA17718; Sun, 19 Apr 1998 05:43:39 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA21027; Sat, 18 Apr 1998 22:43:14 -0700 (PDT) Date: Sat, 18 Apr 1998 22:43:14 -0700 (PDT) Message-Id: <199804190543.WAA21027@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/devel/p5-ReadLine-Perl/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/18 22:43:14 PDT Modified files: devel/p5-ReadLine-Perl/pkg DESCR Log: Add a more descriptive description, like the p5-ReadLine-Gnu version. Revision Changes Path 1.2 +8 -2 ports/devel/p5-ReadLine-Perl/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 23:01:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA19930 for cvs-all-outgoing; Sat, 18 Apr 1998 23:01:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA19924; Sun, 19 Apr 1998 06:01:43 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA21121; Sat, 18 Apr 1998 23:01:17 -0700 (PDT) Date: Sat, 18 Apr 1998 23:01:17 -0700 (PDT) Message-Id: <199804190601.XAA21121@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/18 23:01:17 PDT Modified files: . modules Log: xmove --> ports/x11/xmove Revision Changes Path 1.1919 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 23:02:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA20104 for cvs-all-outgoing; Sat, 18 Apr 1998 23:02:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA20098; Sun, 19 Apr 1998 06:02:52 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA21136; Sat, 18 Apr 1998 23:02:26 -0700 (PDT) Date: Sat, 18 Apr 1998 23:02:26 -0700 (PDT) Message-Id: <199804190602.XAA21136@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11/xmove - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/18 23:02:26 PDT ports/x11/xmove - Imported sources Update of /home/ncvs/ports/x11/xmove In directory freefall.freebsd.org:/d/users/mph/xmove Log Message: Import of xmove, an X11 proxy (like lbx) that allows suspending, resuming, and moving clients (presumably like screen(1)). PR: 5503 Submitted by: Stefan `Sec` Zehl Status: Vendor Tag: SEC Release Tags: v2_0_b2 N ports/x11/xmove/Makefile I ports/x11/xmove/CVS N ports/x11/xmove/files/md5 N ports/x11/xmove/files/Makefile N ports/x11/xmove/pkg/COMMENT N ports/x11/xmove/pkg/DESCR N ports/x11/xmove/pkg/PLIST N ports/x11/xmove/patches/patch-aa N ports/x11/xmove/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 Sat Apr 18 23:04:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA20291 for cvs-all-outgoing; Sat, 18 Apr 1998 23:04:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA20286; Sun, 19 Apr 1998 06:04:08 GMT (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA21214; Sat, 18 Apr 1998 23:03:42 -0700 (PDT) Date: Sat, 18 Apr 1998 23:03:42 -0700 (PDT) Message-Id: <199804190603.XAA21214@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/x11 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mph 1998/04/18 23:03:42 PDT Modified files: x11 Makefile Log: Activate xmove. Revision Changes Path 1.194 +2 -1 ports/x11/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 23:05:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA20666 for cvs-all-outgoing; Sat, 18 Apr 1998 23:05:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA20546; Sun, 19 Apr 1998 06:05:20 GMT (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id QAA21960; Sun, 19 Apr 1998 16:03:28 +1000 Date: Sun, 19 Apr 1998 16:03:28 +1000 From: Bruce Evans Message-Id: <199804190603.QAA21960@godzilla.zeta.org.au> To: bde@zeta.org.au, julian@whistle.com Subject: Re: cvs commit: src/lib/libc/sys lseek.2 src/sys/kern vfs_syscalls.c Cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-lib@FreeBSD.ORG, cvs-sys@FreeBSD.ORG, des@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >If this is truely 'common' then that's unfortunate. >what do POSIX and friends have to say about it? Same as usual. On successful completion, the appropriate value is returned. Otherwise, -1 is returned and errno is set to indicate the error. For lseek() the appropriate value is the "offset location as measured in bytes from the beginning of the file". The implementation gets to decided what an error is. The rationale clarifies this in detail for lseek(): "An invalid file offset that would cause EINVAL to be returned may be both implementation defined and device dependent (for example, memory may have few invalid values). A negative file offset may be valid for some devices in some implementations". FreeBSD uses a simple implementation with all negative file offsets valid for all file types. OTOH, for fcntl(), the behaviour is completely undefined if the length of the locked region is negative, and FreeBSD rejects "negative" start and end offsets and negative lengths. This is reasonable because locking is not supported for special files. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 18 23:47:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA25614 for cvs-all-outgoing; Sat, 18 Apr 1998 23:47:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA25608; Sun, 19 Apr 1998 06:47:54 GMT (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA21493; Sat, 18 Apr 1998 23:47:28 -0700 (PDT) Date: Sat, 18 Apr 1998 23:47:28 -0700 (PDT) Message-Id: <199804190647.XAA21493@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-include@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/include time.h src/lib/libc/stdtime asctime.c localtime.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1998/04/18 23:47:28 PDT Modified files: include time.h lib/libc/stdtime asctime.c localtime.c Log: ctime_r and asctime_r are not implemented. prototypes in time.h do not match POSIX. PR: 6345 Reviewed by: phk Submitted by: Dmitry Khrustalev Revision Changes Path 1.12 +2 -2 src/include/time.h 1.5 +12 -3 src/lib/libc/stdtime/asctime.c 1.18 +9 -0 src/lib/libc/stdtime/localtime.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message