From owner-cvs-CVSROOT Sun Sep 7 13:37:46 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id NAA09921 for cvs-CVSROOT-outgoing; Sun, 7 Sep 1997 13:37:46 -0700 (PDT) Received: from Ilsa.StevesCafe.com (Ilsa.StevesCafe.com [205.168.119.129]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id NAA09907; Sun, 7 Sep 1997 13:37:42 -0700 (PDT) Received: from Ilsa.StevesCafe.com (localhost [127.0.0.1]) by Ilsa.StevesCafe.com (8.8.7/8.8.5) with ESMTP id OAA27121; Sun, 7 Sep 1997 14:37:40 -0600 (MDT) Message-Id: <199709072037.OAA27121@Ilsa.StevesCafe.com> X-Mailer: exmh version 2.0gamma 1/27/96 From: Steve Passe To: smp@freebsd.org cc: cvs-committers@freebsd.org, cvs-all@freebsd.org, cvs-CVSROOT@freebsd.org Subject: machine/up.h Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 07 Sep 1997 14:37:40 -0600 Sender: owner-cvs-cvsroot@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi, I propose that we create an alternate file to smp.h named up.h. code could then look like: #ifdef SMP #include #else #include #endif I could then move stuff like: #ifndef SMP #define THIS_LOCK /* nop this out for UP */ #define THAT_FEATURE /* nop this out for UP */ #endif from individual files and gather them all up into up.h This should cause less disturbance to the source tree than the current methods. Any objections? -- Steve Passe | powered by smp@csn.net | Symmetric MultiProcessor FreeBSD From owner-cvs-CVSROOT Sun Sep 7 15:36:15 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id PAA15005 for cvs-CVSROOT-outgoing; Sun, 7 Sep 1997 15:36:15 -0700 (PDT) Received: from usr04.primenet.com (tlambert@usr04.primenet.com [206.165.6.204]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id PAA14992; Sun, 7 Sep 1997 15:36:09 -0700 (PDT) Received: (from tlambert@localhost) by usr04.primenet.com (8.8.5/8.8.5) id PAA22637; Sun, 7 Sep 1997 15:36:08 -0700 (MST) From: Terry Lambert Message-Id: <199709072236.PAA22637@usr04.primenet.com> Subject: Re: machine/up.h To: smp@csn.net (Steve Passe) Date: Sun, 7 Sep 1997 22:36:07 +0000 (GMT) Cc: smp@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG In-Reply-To: <199709072037.OAA27121@Ilsa.StevesCafe.com> from "Steve Passe" at Sep 7, 97 02:37:40 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-cvs-cvsroot@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > I propose that we create an alternate file to smp.h named up.h. > > code could then look like: > > #ifdef SMP > #include > #else > #include > #endif > > I could then move stuff like: > > #ifndef SMP > #define THIS_LOCK /* nop this out for UP */ > #define THAT_FEATURE /* nop this out for UP */ > #endif > > from individual files and gather them all up into up.h This should cause less > disturbance to the source tree than the current methods. > > Any objections? Or you could include smp.h always, and do this in smp.h: #ifdef SMP #define THIS_LOCK smp_thislock /* or whatever*/ ... #else /* !SMP*/ #define THIS_LOCK /* NOP this out for non-SMP* #endif And have even less impact. Or you could make the standard headers do the work for you, and not include smp.h at all. 8-). Terry Lambert terry@lambert.org --- Any opinions in this posting are my own and not those of my present or previous employers. From owner-cvs-CVSROOT Sun Sep 7 16:30:14 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA17520 for cvs-CVSROOT-outgoing; Sun, 7 Sep 1997 16:30:14 -0700 (PDT) Received: (from jmb@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA17328; Sun, 7 Sep 1997 16:27:59 -0700 (PDT) From: "Jonathan M. Bresler" Message-Id: <199709072327.QAA17328@hub.freebsd.org> Subject: Re: machine/up.h To: smp@csn.net (Steve Passe) Date: Sun, 7 Sep 1997 16:27:58 -0700 (PDT) Cc: smp@freebsd.org, cvs-committers@freebsd.org, cvs-all@freebsd.org, cvs-CVSROOT@freebsd.org In-Reply-To: <199709072037.OAA27121@Ilsa.StevesCafe.com> from "Steve Passe" at Sep 7, 97 02:37:40 pm X-Mailer: ELM [version 2.4 PL24] Content-Type: text Sender: owner-cvs-cvsroot@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Steve Passe wrote: > > Hi, > > I propose that we create an alternate file to smp.h named up.h. > > code could then look like: > > #ifdef SMP > #include > #else > #include > #endif > > I could then move stuff like: > > #ifndef SMP > #define THIS_LOCK /* nop this out for UP */ > #define THAT_FEATURE /* nop this out for UP */ > #endif > > from individual files and gather them all up into up.h This should cause less > disturbance to the source tree than the current methods. > alternative: replace smp.h and up.h with xxx.h all files include xxx.h in place of smp.h or up.h in xxx.h have a single conditional #ifndef SMP #define "up stuff" #else #define "smp stuff" #endif SMP is defined or not by /usr/sbin/config this concentrates all the conditionals into a single place. the source files only have one include file to deal with. just my two cents. jmb ps replace xxx.h with something reasonable.... From owner-cvs-CVSROOT Sun Sep 7 22:36:09 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA08089 for cvs-CVSROOT-outgoing; Sun, 7 Sep 1997 22:36:09 -0700 (PDT) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.19]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id WAA08081; Sun, 7 Sep 1997 22:36:05 -0700 (PDT) Received: from critter.freebsd.dk (localhost.cybercity.dk [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.7) with ESMTP id HAA11171; Mon, 8 Sep 1997 07:34:21 +0200 (CEST) To: Steve Passe cc: smp@freebsd.org, cvs-committers@freebsd.org, cvs-all@freebsd.org, cvs-CVSROOT@freebsd.org Subject: Re: machine/up.h In-reply-to: Your message of "Sun, 07 Sep 1997 14:37:40 MDT." <199709072037.OAA27121@Ilsa.StevesCafe.com> Date: Mon, 08 Sep 1997 07:34:19 +0200 Message-ID: <11169.873696859@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-cvs-cvsroot@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Why not simply have the code do a #include and in that file have #ifdef SMP #define THIS_STUFF (lkjsdfgskdj) #define THAT_STUFF (lkjsdfgskdj) #else /* !SMP */ #define THIS_STUFF /* Nothing */ #define THAT_STUFF /* Nothing */ #endif In message <199709072037.OAA27121@Ilsa.StevesCafe.com>, Steve Passe writes: >Hi, > >I propose that we create an alternate file to smp.h named up.h. > >code could then look like: > >#ifdef SMP >#include >#else >#include >#endif > >I could then move stuff like: > >#ifndef SMP >#define THIS_LOCK /* nop this out for UP */ >#define THAT_FEATURE /* nop this out for UP */ >#endif > >from individual files and gather them all up into up.h This should cause less >disturbance to the source tree than the current methods. > >Any objections? > > >-- >Steve Passe | powered by >smp@csn.net | Symmetric MultiProcessor FreeBSD > > -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." From owner-cvs-CVSROOT Tue Sep 9 01:15:45 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA29351 for cvs-CVSROOT-outgoing; Tue, 9 Sep 1997 01:15:45 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA28415; Tue, 9 Sep 1997 01:11:21 -0700 (PDT) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id BAA05570; Tue, 9 Sep 1997 01:08:42 -0700 (PDT) Date: Tue, 9 Sep 1997 01:08:42 -0700 (PDT) Message-Id: <199709090808.BAA05570@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-cvsroot@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk tg 1997/09/09 01:08:42 PDT Modified files: . modules Log: explorer -> ports/x11/explorer Revision Changes Path 1.1535 +2 -1 CVSROOT/modules From owner-cvs-CVSROOT Tue Sep 9 01:35:54 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA03878 for cvs-CVSROOT-outgoing; Tue, 9 Sep 1997 01:35:54 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA02826; Tue, 9 Sep 1997 01:31:04 -0700 (PDT) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id BAA05908; Tue, 9 Sep 1997 01:28:26 -0700 (PDT) Date: Tue, 9 Sep 1997 01:28:26 -0700 (PDT) Message-Id: <199709090828.BAA05908@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-cvsroot@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk tg 1997/09/09 01:28:25 PDT Modified files: . modules Log: mouseclock -> ports/x11/mouseclock Revision Changes Path 1.1536 +2 -1 CVSROOT/modules From owner-cvs-CVSROOT Tue Sep 9 12:46:51 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA00638 for cvs-CVSROOT-outgoing; Tue, 9 Sep 1997 12:46:51 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id MAA00530; Tue, 9 Sep 1997 12:45:03 -0700 (PDT) From: "Ralf S. Engelschall" Received: (from rse@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id MAA23775; Tue, 9 Sep 1997 12:42:13 -0700 (PDT) Date: Tue, 9 Sep 1997 12:42:13 -0700 (PDT) Message-Id: <199709091942.MAA23775@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-cvsroot@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk rse 1997/09/09 12:42:13 PDT Modified files: . modules Log: gfont --> ports/graphics/gfont Revision Changes Path 1.1537 +2 -1 CVSROOT/modules From owner-cvs-CVSROOT Wed Sep 10 01:01:12 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA15299 for cvs-CVSROOT-outgoing; Wed, 10 Sep 1997 01:01:12 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id AAA15090; Wed, 10 Sep 1997 00:59:15 -0700 (PDT) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id AAA01909; Wed, 10 Sep 1997 00:56:29 -0700 (PDT) Date: Wed, 10 Sep 1997 00:56:29 -0700 (PDT) Message-Id: <199709100756.AAA01909@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-cvsroot@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk asami 1997/09/10 00:56:29 PDT Modified files: . modules Log: jp-Wnn6 -> ports/japanese/Wnn6 jp-Wnn6-lib -> ports/japanese/Wnn6-lib Revision Changes Path 1.1538 +3 -1 CVSROOT/modules From owner-cvs-CVSROOT Wed Sep 10 01:59:59 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA17927 for cvs-CVSROOT-outgoing; Wed, 10 Sep 1997 01:59:59 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA17808; Wed, 10 Sep 1997 01:58:15 -0700 (PDT) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id BAA04497; Wed, 10 Sep 1997 01:55:28 -0700 (PDT) Date: Wed, 10 Sep 1997 01:55:28 -0700 (PDT) Message-Id: <199709100855.BAA04497@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-cvsroot@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk asami 1997/09/10 01:55:28 PDT Modified files: . modules Log: cn-mule-wnn4 -> ports/chinese/mule-wnn4 jp-mule-canna+sj3 -> ports/japanese/mule-canna+sj3 jp-mule-canna+sj3+wnn4 -> ports/japanese/mule-canna+sj3+wnn4 jp-mule-canna+sj3+wnn6 -> ports/japanese/mule-canna+sj3+wnn6 jp-mule-canna+wnn4 -> ports/japanese/mule-canna+wnn4 jp-mule-canna+wnn6 -> ports/japanese/mule-canna+wnn6 jp-mule-sj3+wnn4 -> ports/japanese/mule-sj3+wnn4 jp-mule-sj3+wnn6 -> ports/japanese/mule-sj3+wnn6 jp-mule-wnn4 -> ports/japanese/mule-wnn4 jp-mule-wnn6 -> ports/japanese/mule-wnn6 kr-mule-wnn4 -> ports/korean/mule-wnn4 Also, remove japanese/mule-wnn (repository copied to japanese/mule-wnn[46]). Revision Changes Path 1.1539 +12 -2 CVSROOT/modules From owner-cvs-CVSROOT Wed Sep 10 05:47:18 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id FAA28622 for cvs-CVSROOT-outgoing; Wed, 10 Sep 1997 05:47:18 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id FAA28455; Wed, 10 Sep 1997 05:45:28 -0700 (PDT) From: Joerg Wunsch Received: (from joerg@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id FAA06773; Wed, 10 Sep 1997 05:42:40 -0700 (PDT) Date: Wed, 10 Sep 1997 05:42:40 -0700 (PDT) Message-Id: <199709101242.FAA06773@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT rcstemplate Sender: owner-cvs-cvsroot@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk joerg 1997/09/10 05:42:39 PDT Modified files: . rcstemplate Log: Tighten the RCS template, so you can see more of what files you're going to commit, as opposed to see the same boring non-information only all the time. Also mention the purpose of the `PR' line. Revision Changes Path 1.8 +4 -11 CVSROOT/rcstemplate From owner-cvs-CVSROOT Thu Sep 11 02:54:09 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA11044 for cvs-CVSROOT-outgoing; Thu, 11 Sep 1997 02:54:09 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id CAA10944; Thu, 11 Sep 1997 02:52:23 -0700 (PDT) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id CAA26393; Thu, 11 Sep 1997 02:49:28 -0700 (PDT) Date: Thu, 11 Sep 1997 02:49:28 -0700 (PDT) Message-Id: <199709110949.CAA26393@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-cvsroot@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk tg 1997/09/11 02:49:27 PDT Modified files: . modules Log: ruby -> ports/lang/ruby Revision Changes Path 1.1540 +2 -1 CVSROOT/modules From owner-cvs-CVSROOT Fri Sep 12 01:16:52 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA15853 for cvs-CVSROOT-outgoing; Fri, 12 Sep 1997 01:16:52 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA15803; Fri, 12 Sep 1997 01:16:31 -0700 (PDT) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id BAA19049; Fri, 12 Sep 1997 01:13:28 -0700 (PDT) Date: Fri, 12 Sep 1997 01:13:28 -0700 (PDT) Message-Id: <199709120813.BAA19049@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-cvsroot@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk tg 1997/09/12 01:13:28 PDT Modified files: . modules Log: bibview --> ports/print/bibview Revision Changes Path 1.1541 +2 -1 CVSROOT/modules From owner-cvs-CVSROOT Fri Sep 12 10:33:00 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA21429 for cvs-CVSROOT-outgoing; Fri, 12 Sep 1997 10:33:00 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id KAA21344; Fri, 12 Sep 1997 10:32:34 -0700 (PDT) From: Paul Traina Received: (from pst@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id KAA09677; Fri, 12 Sep 1997 10:29:28 -0700 (PDT) Date: Fri, 12 Sep 1997 10:29:28 -0700 (PDT) Message-Id: <199709121729.KAA09677@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-cvsroot@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk pst 1997/09/12 10:29:28 PDT Modified files: . modules Log: Remove port_tcl tcl74 tclX tclX74 tk tk4, dead pointers. Revision Changes Path 1.1542 +1 -7 CVSROOT/modules From owner-cvs-CVSROOT Fri Sep 12 11:30:55 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA26599 for cvs-CVSROOT-outgoing; Fri, 12 Sep 1997 11:30:55 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id LAA26542; Fri, 12 Sep 1997 11:30:29 -0700 (PDT) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id LAA09945; Fri, 12 Sep 1997 11:27:23 -0700 (PDT) Date: Fri, 12 Sep 1997 11:27:23 -0700 (PDT) Message-Id: <199709121827.LAA09945@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-cvsroot@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk itojun 1997/09/12 11:27:23 PDT Modified files: . modules Log: newsfetch --> ports/news/newsfetch Revision Changes Path 1.1543 +2 -1 CVSROOT/modules From owner-cvs-CVSROOT Sat Sep 13 07:09:21 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA05708 for cvs-CVSROOT-outgoing; Sat, 13 Sep 1997 07:09:21 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id HAA05682; Sat, 13 Sep 1997 07:09:10 -0700 (PDT) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id HAA17190; Sat, 13 Sep 1997 07:05:58 -0700 (PDT) Date: Sat, 13 Sep 1997 07:05:58 -0700 (PDT) Message-Id: <199709131405.HAA17190@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-cvsroot@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk ache 1997/09/13 07:05:58 PDT Modified files: . modules Log: adcomplain -> ports/mail/adcomplain Revision Changes Path 1.1544 +2 -1 CVSROOT/modules From owner-cvs-CVSROOT Sat Sep 13 10:48:17 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA15939 for cvs-CVSROOT-outgoing; Sat, 13 Sep 1997 10:48:17 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id KAA15836; Sat, 13 Sep 1997 10:46:32 -0700 (PDT) From: James FitzGibbon Received: (from jfitz@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id KAA04974; Sat, 13 Sep 1997 10:43:18 -0700 (PDT) Date: Sat, 13 Sep 1997 10:43:18 -0700 (PDT) Message-Id: <199709131743.KAA04974@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-cvsroot@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jfitz 1997/09/13 10:43:18 PDT Modified files: . modules Log: p5-FreezeThaw --> ports/devel/p5-FreezeThaw Revision Changes Path 1.1545 +2 -1 CVSROOT/modules From owner-cvs-CVSROOT Sat Sep 13 10:51:11 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA16126 for cvs-CVSROOT-outgoing; Sat, 13 Sep 1997 10:51:11 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id KAA16004; Sat, 13 Sep 1997 10:49:28 -0700 (PDT) From: James FitzGibbon Received: (from jfitz@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id KAA05166; Sat, 13 Sep 1997 10:46:14 -0700 (PDT) Date: Sat, 13 Sep 1997 10:46:14 -0700 (PDT) Message-Id: <199709131746.KAA05166@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-cvsroot@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jfitz 1997/09/13 10:46:14 PDT Modified files: . modules Log: p5-Data-ShowTable --> ports/devel/p5-Data-ShowTable Revision Changes Path 1.1546 +2 -1 CVSROOT/modules From owner-cvs-CVSROOT Sat Sep 13 10:53:08 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA16304 for cvs-CVSROOT-outgoing; Sat, 13 Sep 1997 10:53:08 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id KAA16132; Sat, 13 Sep 1997 10:51:13 -0700 (PDT) From: James FitzGibbon Received: (from jfitz@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id KAA05226; Sat, 13 Sep 1997 10:47:58 -0700 (PDT) Date: Sat, 13 Sep 1997 10:47:58 -0700 (PDT) Message-Id: <199709131747.KAA05226@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-cvsroot@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jfitz 1997/09/13 10:47:58 PDT Modified files: . modules Log: p5-Authen-Radius --> ports/security/p5-Authen-Radius Revision Changes Path 1.1547 +2 -1 CVSROOT/modules From owner-cvs-CVSROOT Sat Sep 13 13:17:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id NAA24936 for cvs-CVSROOT-outgoing; Sat, 13 Sep 1997 13:17:05 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id NAA24873; Sat, 13 Sep 1997 13:16:45 -0700 (PDT) From: Chuck Robey Received: (from chuckr@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id NAA08193; Sat, 13 Sep 1997 13:13:30 -0700 (PDT) Date: Sat, 13 Sep 1997 13:13:30 -0700 (PDT) Message-Id: <199709132013.NAA08193@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-cvsroot@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk chuckr 1997/09/13 13:13:30 PDT Modified files: . modules Log: thoteditor --> ports/editors/thoteditor Revision Changes Path 1.1548 +2 -1 CVSROOT/modules From owner-cvs-CVSROOT Sat Sep 13 16:28:02 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA05704 for cvs-CVSROOT-outgoing; Sat, 13 Sep 1997 16:28:02 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id QAA05623; Sat, 13 Sep 1997 16:27:29 -0700 (PDT) From: James FitzGibbon Received: (from jfitz@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id QAA13739; Sat, 13 Sep 1997 16:24:13 -0700 (PDT) Date: Sat, 13 Sep 1997 16:24:13 -0700 (PDT) Message-Id: <199709132324.QAA13739@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-cvsroot@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jfitz 1997/09/13 16:24:13 PDT Modified files: . modules Log: swig --> ports/devel/swig Revision Changes Path 1.1549 +2 -1 CVSROOT/modules From owner-cvs-CVSROOT Sat Sep 13 16:33:36 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA06020 for cvs-CVSROOT-outgoing; Sat, 13 Sep 1997 16:33:36 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id QAA05990; Sat, 13 Sep 1997 16:33:10 -0700 (PDT) From: James FitzGibbon Received: (from jfitz@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id QAA13802; Sat, 13 Sep 1997 16:29:54 -0700 (PDT) Date: Sat, 13 Sep 1997 16:29:54 -0700 (PDT) Message-Id: <199709132329.QAA13802@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-CVSROOT@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-cvsroot@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jfitz 1997/09/13 16:29:53 PDT Modified files: . modules Log: The CAPSLOCK key is not my friend. SWIG is already in the collection, but as ports/devel/SWIG. Revision Changes Path 1.1550 +1 -2 CVSROOT/modules