From owner-cvs-all Sun Dec 26 1:36: 8 1999 Delivered-To: cvs-all@freebsd.org Received: from overcee.netplex.com.au (overcee.netplex.com.au [202.12.86.7]) by hub.freebsd.org (Postfix) with ESMTP id E904E14F87; Sun, 26 Dec 1999 01:34:41 -0800 (PST) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 875B91CC6; Sun, 26 Dec 1999 17:34:21 +0800 (WST) (envelope-from peter@netplex.com.au) X-Mailer: exmh version 2.1.1 10/15/1999 To: "Daniel C. Sobral" Cc: Marcel Moolenaar , Bruce Evans , Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src Makefile.inc1 In-Reply-To: Message from "Daniel C. Sobral" of "Sun, 26 Dec 1999 15:52:33 +0900." <3865BB31.880BDA2D@newsguy.com> Date: Sun, 26 Dec 1999 17:34:21 +0800 From: Peter Wemm Message-Id: <19991226093421.875B91CC6@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Daniel C. Sobral" wrote: > Peter Wemm wrote: > > > > -C is silly. It adds a flag to the header of the generated files to say > > "this data *might* have a comment". fortune looks to see if there "might" > > be a comment and skips the double delimiters if so. The double delimiter > > is otherwise illegal. If an old fortune binary sees a new file, it won't > > know about the double delimiter. If a new fortune sees the double > > delimiter it will ignore it. This is exactly the same behavior that would > > happen if -C was unconditional. > > That is not true. Just try making a file without -C containing a > "comment" and then fortune'ing it. No problem, RELENG_2_2's strfile and fortune, *with* the ignore-comments patch but without -C: ... 96162 fortune NAMI "/usr/share/games/fortune/fortunes2" 96162 fortune RET open 3 ... 96162 fortune CALL open(0x8051000,0,0x1) 96162 fortune NAMI "/usr/share/games/fortune/fortunes2.dat" 96162 fortune RET open 4 ... 96162 fortune CALL write(0x1,0x8054000,0x27) 96162 fortune GIO fd 1 wrote 39 bytes "Others will look to you for stability, " 96162 fortune RET write 39/0x27 96162 fortune CALL write(0x1,0x8054000,0x22) 96162 fortune GIO fd 1 wrote 34 bytes "so hide when you bite your nails. " 96162 fortune RET write 34/0x22 pwroot@overcee[5:18pm]~src/games/fortune/datfiles-269# strfile No input file name strfile [-iorsx] [-c char] sourcefile [datafile] pwroot@overcee[5:19pm]~src/games/fortune/datfiles-270# more /usr/share/games/fortune/fortunes2 %% $FreeBSD: src/games/fortune/datfiles/fortunes2,v 1.17 1999/11/27 07:18:33 wes Exp $ ======================================================================= || || || The FORTUNE-COOKIE program is soon to be a Major Motion Picture! || ... -C is just a build inconvenience to make %% parsing optional. We have enough options already without adding them for things that don't make sense to be an option. And.. with an *unpatched* RELENG_2_2 fortune and strfile: pwroot@overcee[5:21pm]~src/games/fortune/fortune-274# fortune /usr/share/games/fortune/fortunes2 The more the merrier. -- John Heywood ie: it still works. Even if it didn't, we don't need -C at 'make world' time because strfile does nothing special with the %% lines, and a new fortune(1) is installed at exactly the same time as the new datfiles. strfile from as far back as RELEASE_2_0 works with the -current datfiles and -current fortune(1). (However, an x86 strfile won't generate a .dat file that will work on an Alpha because there are 'unsigned long's in the header. IMHO, we should make thie u_int32_t before 4.0-R. strfile would need to be a x86->alpha cross build tool). A patch to remove the bogus -C (but keep comment skip code), and to fix a couple of style bugs (long/int32 stuff left out, but I have that too): Index: datfiles/Makefile =================================================================== RCS file: /home/ncvs/src/games/fortune/datfiles/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- datfiles/Makefile 1999/12/23 19:09:59 1.24 +++ datfiles/Makefile 1999/12/26 09:00:48 @@ -34,12 +34,12 @@ .for f in fortunes fortunes2 fortunes2-o limerick startrek zippy $f.dat: $f PATH=$$PATH:/usr/games:${.OBJDIR}/../strfile \ - strfile -Crs ${.ALLSRC} ${.TARGET} + strfile -rs ${.ALLSRC} ${.TARGET} .endfor fortunes-o.dat: fortunes-o PATH=$$PATH:/usr/games:${.OBJDIR}/../strfile \ - strfile -Crsx ${.ALLSRC} ${.TARGET} + strfile -rsx ${.ALLSRC} ${.TARGET} fortunes-o: fortunes-o.${TYPE} tr a-zA-Z n-za-mN-ZA-M < ${.ALLSRC} > ${.TARGET} Index: fortune/fortune.c =================================================================== RCS file: /home/ncvs/src/games/fortune/fortune/fortune.c,v retrieving revision 1.18 diff -u -r1.18 fortune.c --- fortune/fortune.c 1999/11/30 03:48:52 1.18 +++ fortune/fortune.c 1999/12/26 09:00:48 @@ -262,9 +262,8 @@ *p = 'a' + (ch - 'a' + 13) % 26; } } - if (fp->tbl.str_flags & STR_COMMENTS - && line[0] == fp->tbl.str_delim - && line[1] == fp->tbl.str_delim) + if (line[0] == fp->tbl.str_delim && + line[1] == fp->tbl.str_delim) continue; fputs(line, stdout); } @@ -1359,9 +1358,8 @@ sp = Fortbuf; in_file = FALSE; while (fgets(sp, Fort_len, fp->inf) != NULL) - if (fp->tbl.str_flags & STR_COMMENTS - && sp[0] == fp->tbl.str_delim - && sp[1] == fp->tbl.str_delim) + if (sp[0] == fp->tbl.str_delim && + sp[1] == fp->tbl.str_delim) continue; else if (!STR_ENDSTRING(sp, fp->tbl)) sp += strlen(sp); Index: strfile/strfile.8 =================================================================== RCS file: /home/ncvs/src/games/fortune/strfile/strfile.8,v retrieving revision 1.5 diff -u -r1.5 strfile.8 --- strfile/strfile.8 1999/10/27 18:34:04 1.5 +++ strfile/strfile.8 1999/12/26 09:00:48 @@ -65,15 +65,6 @@ .Pp The options are as follows: .Bl -tag -width "-c char" -.It Fl C -Flag the file as containing comments. This option cases the -.Dv STR_COMMENTS -bit in the header -.Ar str_flags -field to be set. -Comments are designated by two delimiter characters at the -beginning of the line, though strfile does not give any special -treatment to comment lines. .It Fl c Ar char Change the delimiting character from the percent sign to .Ar char . @@ -108,6 +99,9 @@ .Ar str_flags field to be set. .El +.Pp +Comments are designated by two delimiter characters at the +beginning of the line. .Pp The format of the header is: .Bd -literal Index: strfile/strfile.c =================================================================== RCS file: /home/ncvs/src/games/fortune/strfile/strfile.c,v retrieving revision 1.15 diff -u -r1.15 strfile.c --- strfile/strfile.c 1999/11/16 02:57:00 1.15 +++ strfile/strfile.c 1999/12/26 09:00:48 @@ -115,7 +115,6 @@ Outfile[MAXPATHLEN] = "", /* output file name */ Delimch = '%'; /* delimiting character */ -int Cflag = FALSE; /* embedded comments */ int Sflag = FALSE; /* silent run flag */ int Oflag = FALSE; /* ordering flag */ int Iflag = FALSE; /* ignore case flag */ @@ -218,9 +217,6 @@ (void) fclose(inf); Tbl.str_numstr = Num_pts - 1; - if (Cflag) - Tbl.str_flags |= STR_COMMENTS; - if (Oflag) do_order(); else if (Rflag) @@ -268,11 +264,8 @@ extern int optind; int ch; - while ((ch = getopt(argc, argv, "Cc:iorsx")) != EOF) + while ((ch = getopt(argc, argv, "c:iorsx")) != EOF) switch(ch) { - case 'C': /* embedded comments */ - Cflag++; - break; case 'c': /* new delimiting char */ Delimch = *optarg; if (!isascii(Delimch)) { @@ -319,7 +312,7 @@ void usage() { (void) fprintf(stderr, - "strfile [-Ciorsx] [-c char] sourcefile [datafile]\n"); + "strfile [-iorsx] [-c char] sourcefile [datafile]\n"); exit(1); } Index: strfile/strfile.h =================================================================== RCS file: /home/ncvs/src/games/fortune/strfile/strfile.h,v retrieving revision 1.3 diff -u -r1.3 strfile.h --- strfile/strfile.h 1999/10/02 12:33:37 1.3 +++ strfile/strfile.h 1999/12/26 09:00:49 @@ -49,7 +49,6 @@ #define STR_RANDOM 0x1 /* randomized pointers */ #define STR_ORDERED 0x2 /* ordered pointers */ #define STR_ROTATED 0x4 /* rot-13'd text */ -#define STR_COMMENTS 0x8 /* embedded comments */ unsigned long str_flags; /* bit field for flags */ unsigned char stuff[4]; /* long aligned space */ #define str_delim stuff[0] /* delimiting character */ Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 1:43:54 1999 Delivered-To: cvs-all@freebsd.org Received: from overcee.netplex.com.au (overcee.netplex.com.au [202.12.86.7]) by hub.freebsd.org (Postfix) with ESMTP id 249F3150D1; Sun, 26 Dec 1999 01:43:16 -0800 (PST) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id E4A721CCE; Sun, 26 Dec 1999 17:43:04 +0800 (WST) (envelope-from peter@netplex.com.au) X-Mailer: exmh version 2.1.1 10/15/1999 To: "Daniel C. Sobral" Cc: Bruce Evans , Marcel Moolenaar , Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src Makefile.inc1 In-Reply-To: Message from "Daniel C. Sobral" of "Sun, 26 Dec 1999 15:43:55 +0900." <3865B92B.B960215F@newsguy.com> Date: Sun, 26 Dec 1999 17:43:04 +0800 From: Peter Wemm Message-Id: <19991226094304.E4A721CCE@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Daniel C. Sobral" wrote: > Peter Wemm wrote: > > > > Looking over the -C stuff, I'm not sure why the switch was added. The > > comment marker (two delimter chars at the beginning of a file) wouldn't > > have been legal anyway. strfile doesn't do anything special and the lines > > go in just as normal. IMHO, -C should be removed and the comment check made > > unconditional. > > A flag is setted, just like for rot13'ed things. > > If you have any doubts about it actually working, just test it. I'm not saying that it doesn't work, just that detection of comments should always be "on" and not a switch. rot13 can't be "detected", comments can. Cheers, -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 2:31:36 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5EDFF14D62; Sun, 26 Dec 1999 02:31:33 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA81738; Sun, 26 Dec 1999 02:31:33 -0800 (PST) (envelope-from bde@FreeBSD.org) Message-Id: <199912261031.CAA81738@freefall.freebsd.org> From: Bruce Evans Date: Sun, 26 Dec 1999 02:31:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/dict Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1999/12/26 02:31:31 PST Modified files: share/dict Makefile Log: Removed ex script left over from incomplete backout in previous commit. Use SYMLINKS instead of an ad hoc rule for installing words -> web2. Don't override the install target; doing so just breaks things like SYMLINKS. Don't override the correct defaults for the all, clean, depend, lint and tags targets. Don't add a null rule to the cleandepend target. Revision Changes Path 1.9 +3 -6 src/share/dict/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 2:51:51 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3BD5615033; Sun, 26 Dec 1999 02:51:49 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA82737; Sun, 26 Dec 1999 02:51:49 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912261051.CAA82737@freefall.freebsd.org> From: Peter Wemm Date: Sun, 26 Dec 1999 02:51:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/isa sbc.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/26 02:51:48 PST Modified files: sys/dev/sound/isa sbc.c Log: Fix a mistake in the PNP EISA-encoding of the Avance ALS120 id. Submitted by: Bryan Liesner Revision Changes Path 1.15 +2 -2 src/sys/dev/sound/isa/sbc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 3:44:50 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E3BE14BE3; Sun, 26 Dec 1999 03:44:47 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA84969; Sun, 26 Dec 1999 03:44:47 -0800 (PST) (envelope-from bde@FreeBSD.org) Message-Id: <199912261144.DAA84969@freefall.freebsd.org> From: Bruce Evans Date: Sun, 26 Dec 1999 03:44:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 mem.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1999/12/26 03:44:46 PST Modified files: sys/i386/i386 mem.c Log: Fixed breakage of read-only opening of /dev/*mem at securelevel > 0 in previous pair of commits. Spell the "securelevel > 0" check consistently. Use the proc arg instead of curproc in mmopen() and mmclose(). Revision Changes Path 1.79 +5 -4 src/sys/i386/i386/mem.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 3:50:52 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 70EB914ED7; Sun, 26 Dec 1999 03:50:49 -0800 (PST) (envelope-from wosch@FreeBSD.org) Received: (from wosch@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA85694; Sun, 26 Dec 1999 03:50:49 -0800 (PST) (envelope-from wosch@FreeBSD.org) Message-Id: <199912261150.DAA85694@freefall.freebsd.org> From: Wolfram Schneider Date: Sun, 26 Dec 1999 03:50:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en robots.txt Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1999/12/26 03:50:49 PST Modified files: en robots.txt Log: Cleanup. Revision Changes Path 1.9 +2 -8 www/en/robots.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 4:11:41 1999 Delivered-To: cvs-all@freebsd.org Received: from peach.ocn.ne.jp (peach.ocn.ne.jp [210.145.254.87]) by hub.freebsd.org (Postfix) with ESMTP id 0B4BB14E19; Sun, 26 Dec 1999 04:11:35 -0800 (PST) (envelope-from dcs@newsguy.com) Received: from newsguy.com (p20-dn02kiryunisiki.gunma.ocn.ne.jp [210.163.200.117]) by peach.ocn.ne.jp (8.9.1a/OCN) with ESMTP id VAA09200; Sun, 26 Dec 1999 21:11:09 +0900 (JST) Message-ID: <38660523.74C8B37@newsguy.com> Date: Sun, 26 Dec 1999 21:08:03 +0900 From: "Daniel C. Sobral" X-Mailer: Mozilla 4.7 [en] (Win98; I) X-Accept-Language: en,pt-BR,ja MIME-Version: 1.0 To: Peter Wemm Cc: Marcel Moolenaar , Bruce Evans , Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src Makefile.inc1 References: <19991226093421.875B91CC6@overcee.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: > > > That is not true. Just try making a file without -C containing a > > "comment" and then fortune'ing it. > > No problem, RELENG_2_2's strfile and fortune, *with* the ignore-comments patch > but without -C: [example failing to show the difference in a fortune *containing* a comment skipped] > -C is just a build inconvenience to make %% parsing optional. We have > enough options already without adding them for things that don't make sense > to be an option. -C is an option setting a flag in the dat file telling fortune to ignore a specific type of line. Having it unconditional will make us incompatible with other fortunes out there. > ie: it still works. Even if it didn't, we don't need -C at 'make world' > time because strfile does nothing special with the %% lines, and a new > fortune(1) is installed at exactly the same time as the new datfiles. -C makes something special with the files created by strfile. Setting a flag. Well, whatever. I think making it unconditional is an error, but I won't make a bike shed out of it. -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org "Nice try, Lao Che." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 4:28:31 1999 Delivered-To: cvs-all@freebsd.org Received: from overcee.netplex.com.au (overcee.netplex.com.au [202.12.86.7]) by hub.freebsd.org (Postfix) with ESMTP id A8BFF14C08; Sun, 26 Dec 1999 04:28:16 -0800 (PST) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 26BD01CA0; Sun, 26 Dec 1999 20:28:09 +0800 (WST) (envelope-from peter@netplex.com.au) X-Mailer: exmh version 2.1.1 10/15/1999 To: "Daniel C. Sobral" Cc: Marcel Moolenaar , Bruce Evans , Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src Makefile.inc1 In-Reply-To: Message from "Daniel C. Sobral" of "Sun, 26 Dec 1999 21:08:03 +0900." <38660523.74C8B37@newsguy.com> Date: Sun, 26 Dec 1999 20:28:09 +0800 From: Peter Wemm Message-Id: <19991226122809.26BD01CA0@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Daniel C. Sobral" wrote: > Peter Wemm wrote: > > > > > That is not true. Just try making a file without -C containing a > > > "comment" and then fortune'ing it. > > > > No problem, RELENG_2_2's strfile and fortune, *with* the ignore-comments pa tch > > but without -C: > > [example failing to show the difference in a fortune *containing* a > comment skipped] > > > -C is just a build inconvenience to make %% parsing optional. We have > > enough options already without adding them for things that don't make sense > > to be an option. > > -C is an option setting a flag in the dat file telling fortune to ignore > a specific type of line. Having it unconditional will make us > incompatible with other fortunes out there. But this is *our* internal utility for making a fortune.dat for *our* fortune(1). %% is nonsense to other fortunes.. Requiring -C makes us more incompatable than recognizing the comment unconditionally - it means we don't recognize our own files by default with standard options. > > ie: it still works. Even if it didn't, we don't need -C at 'make world' > > time because strfile does nothing special with the %% lines, and a new > > fortune(1) is installed at exactly the same time as the new datfiles. > > -C makes something special with the files created by strfile. Setting a > flag. > > Well, whatever. I think making it unconditional is an error, but I won't > make a bike shed out of it. I disagree. It is an error to make something difficult for no reason. Cheers, -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 4:44: 3 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CF8CC14C24; Sun, 26 Dec 1999 04:43:48 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA90177; Sun, 26 Dec 1999 04:43:48 -0800 (PST) (envelope-from bde@FreeBSD.org) Message-Id: <199912261243.EAA90177@freefall.freebsd.org> From: Bruce Evans Date: Sun, 26 Dec 1999 04:43:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa intr_machdep.c icu.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1999/12/26 04:43:48 PST Modified files: sys/i386/isa intr_machdep.c icu.h Log: Replaced the INTRMASK and INTRUNMASK macros by "|" and "&~" operations. Some interface botches went away, leaving the macros unused outside of the implementation of interrupt masking, and it was silly for the implementation to use the macros in only one place each. Revision Changes Path 1.28 +4 -4 src/sys/i386/isa/intr_machdep.c 1.18 +1 -5 src/sys/i386/isa/icu.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 5: 4:55 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 83B2114C0A; Sun, 26 Dec 1999 05:04:53 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA90808; Sun, 26 Dec 1999 05:04:53 -0800 (PST) (envelope-from bde@FreeBSD.org) Message-Id: <199912261304.FAA90808@freefall.freebsd.org> From: Bruce Evans Date: Sun, 26 Dec 1999 05:04:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern sys_pipe.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1999/12/26 05:04:53 PST Modified files: sys/kern sys_pipe.c Log: Use vfs_timestamp() instead of getnanotime() to set timestamps. This fixee incoherency of pipe timestamps relative to file timestamps in the usual case where getnanotime() is not used for the latter. (File and pipe timestamps are still incoherent relative to real time unless the vfs_timestamp_precision sysctl is set to 2 or 3). Revision Changes Path 1.60 +5 -4 src/sys/kern/sys_pipe.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 5:52:13 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E509714CA4; Sun, 26 Dec 1999 05:52:08 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA93228; Sun, 26 Dec 1999 05:52:03 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912261352.FAA93228@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Sun, 26 Dec 1999 05:52:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/gtkgraph Makefile ports/graphics/gtkgraph/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/26 05:52:03 PST Modified files: graphics/gtkgraph Makefile graphics/gtkgraph/files md5 Log: Update port to 0.5.3 Revision Changes Path 1.4 +3 -3 ports/graphics/gtkgraph/Makefile 1.4 +1 -1 ports/graphics/gtkgraph/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 Dec 26 6: 7:48 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 36F5914BE3; Sun, 26 Dec 1999 06:07:45 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA93692; Sun, 26 Dec 1999 06:07:44 -0800 (PST) (envelope-from bde@FreeBSD.org) Message-Id: <199912261407.GAA93692@freefall.freebsd.org> From: Bruce Evans Date: Sun, 26 Dec 1999 06:07:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_descrip.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1999/12/26 06:07:44 PST Modified files: sys/kern kern_descrip.c Log: Removed unused includes. Rumoved unused compatibility cruft for dup(). Using it today would just break dup() on fd's >= 64. Fixed some style bugs. Revision Changes Path 1.77 +13 -27 src/sys/kern/kern_descrip.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 6:16: 6 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B467814E89; Sun, 26 Dec 1999 06:16:01 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA94122; Sun, 26 Dec 1999 06:16:01 -0800 (PST) (envelope-from bde@FreeBSD.org) Message-Id: <199912261416.GAA94122@freefall.freebsd.org> From: Bruce Evans Date: Sun, 26 Dec 1999 06:16:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys pipe.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1999/12/26 06:16:01 PST Modified files: sys/sys pipe.h Log: Updated a comment to match code. Revision Changes Path 1.15 +2 -2 src/sys/sys/pipe.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 6:20:52 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1C2AC150D1; Sun, 26 Dec 1999 06:20:50 -0800 (PST) (envelope-from andreas@FreeBSD.org) Received: (from andreas@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA94428; Sun, 26 Dec 1999 06:20:49 -0800 (PST) (envelope-from andreas@FreeBSD.org) Message-Id: <199912261420.GAA94428@freefall.freebsd.org> From: Andreas Klemm Date: Sun, 26 Dec 1999 06:20:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/inn-stable Makefile ports/news/inn-stable/files md5 ports/news/inn-stable/pkg DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1999/12/26 06:20:49 PST Modified files: news/inn-stable Makefile news/inn-stable/files md5 news/inn-stable/pkg DESCR PLIST Log: Update to newest STABLE version Update PLIST - more dirrm's - added some entries - make packaging more complete Revision Changes Path 1.46 +8 -3 ports/news/inn-stable/Makefile 1.13 +1 -1 ports/news/inn-stable/files/md5 1.6 +0 -1 ports/news/inn-stable/pkg/DESCR 1.11 +9 -1 ports/news/inn-stable/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 6:23:33 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3169B14D3D; Sun, 26 Dec 1999 06:23:31 -0800 (PST) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA94592; Sun, 26 Dec 1999 06:23:25 -0800 (PST) (envelope-from sada@FreeBSD.org) Message-Id: <199912261423.GAA94592@freefall.freebsd.org> From: SADA Kenji Date: Sun, 26 Dec 1999 06:23:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/amaya Makefile ports/www/amaya/files md5 ports/www/amaya/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1999/12/26 06:23:25 PST Modified files: www/amaya Makefile www/amaya/files md5 www/amaya/pkg PLIST Log: Upgrade to 2.4. PR: 15576 Submitted by: maintainer Revision Changes Path 1.8 +27 -23 ports/www/amaya/Makefile 1.7 +8 -3 ports/www/amaya/files/md5 1.7 +12 -7 ports/www/amaya/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 6:58:51 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 625CE14D94; Sun, 26 Dec 1999 06:58:49 -0800 (PST) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA50307; Sun, 26 Dec 1999 06:58:49 -0800 (PST) (envelope-from sada@FreeBSD.org) Message-Id: <199912261458.GAA50307@freefall.freebsd.org> From: SADA Kenji Date: Sun, 26 Dec 1999 06:58:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/mnews Makefile ports/japanese/mnews/files md5 ports/japanese/mnews-gnspool Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1999/12/26 06:58:49 PST Modified files: japanese/mnews Makefile japanese/mnews/files md5 japanese/mnews-gnspool Makefile Log: Upgrade to 1.22. Submitted by: maintainer, at ports-jp ML [8452] Reviewed by: takehiro@coral.ocn.ne.jp (Takehiro Suzuki) Revision Changes Path 1.17 +6 -6 ports/japanese/mnews/Makefile 1.4 +1 -1 ports/japanese/mnews/files/md5 1.5 +3 -3 ports/japanese/mnews-gnspool/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 7: 6:12 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F01C614D94; Sun, 26 Dec 1999 07:06:10 -0800 (PST) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA50841; Sun, 26 Dec 1999 07:06:10 -0800 (PST) (envelope-from sada@FreeBSD.org) Message-Id: <199912261506.HAA50841@freefall.freebsd.org> From: SADA Kenji Date: Sun, 26 Dec 1999 07:06:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/gn-mnews Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sada 1999/12/26 07:06:10 PST Modified files: japanese/gn-mnews Makefile Log: Mark as BROKEN: distfile disappeared. Revision Changes Path 1.6 +2 -1 ports/japanese/gn-mnews/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 7:19: 2 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 797F514C14; Sun, 26 Dec 1999 07:18:59 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA51711; Sun, 26 Dec 1999 07:18:59 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912261518.HAA51711@freefall.freebsd.org> From: Peter Wemm Date: Sun, 26 Dec 1999 07:18:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc inetd.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/26 07:18:59 PST Modified files: etc inetd.conf Log: Update the cvs pserver example so that it gives some more obvious clues about the --allow-root switch. PR: 14463 Revision Changes Path 1.41 +6 -4 src/etc/inetd.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 7:25: 2 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F05D814E52; Sun, 26 Dec 1999 07:24:59 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA52039; Sun, 26 Dec 1999 07:24:59 -0800 (PST) (envelope-from bde@FreeBSD.org) Message-Id: <199912261524.HAA52039@freefall.freebsd.org> From: Bruce Evans Date: Sun, 26 Dec 1999 07:24:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc MAKEDEV Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1999/12/26 07:24:59 PST Modified files: etc MAKEDEV Log: Moved $FreeBSD$ to its usual place after the CSRG id. Fixed some style bugs for cam (superflous umask and missing newline). Fixed bogons for apm. The pattern "apm*" matched too many things; apm and apmctl were both made twice by `MAKEDEV all'. Hopefully no one depends on `MAKEDEV apm0' making apm or on `MAKEDEV apm' making apmctl. Revision Changes Path 1.228 +9 -9 src/etc/MAKEDEV To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 8:21:23 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9EC9D1523D; Sun, 26 Dec 1999 08:21:21 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA54960; Sun, 26 Dec 1999 08:21:21 -0800 (PST) (envelope-from bde@FreeBSD.org) Message-Id: <199912261621.IAA54960@freefall.freebsd.org> From: Bruce Evans Date: Sun, 26 Dec 1999 08:21:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 autoconf.c bios.c src/sys/i386/isa intr_machdep.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1999/12/26 08:21:20 PST Modified files: sys/i386/i386 autoconf.c bios.c sys/i386/isa intr_machdep.c Log: Don't include or compile code depending on it when isa is not configured. Including when it is not used is harmful as well as bogus, since it includes "isa_if.h" which is not generated when isa is not configured. Revision Changes Path 1.146 +6 -2 src/sys/i386/i386/autoconf.c 1.29 +5 -1 src/sys/i386/i386/bios.c 1.29 +8 -2 src/sys/i386/isa/intr_machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 8:34:58 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1AEC614C13; Sun, 26 Dec 1999 08:34:56 -0800 (PST) (envelope-from eivind@FreeBSD.org) Received: (from eivind@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA55780; Sun, 26 Dec 1999 08:34:55 -0800 (PST) (envelope-from eivind@FreeBSD.org) Message-Id: <199912261634.IAA55780@freefall.freebsd.org> From: Eivind Eklund Date: Sun, 26 Dec 1999 08:34:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/mount mount.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk eivind 1999/12/26 08:34:55 PST Modified files: sbin/mount mount.c Log: Fix tab completion mounts (like /cdrom/) Submitted by: Martin Blapp Revision Changes Path 1.38 +2 -1 src/sbin/mount/mount.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 8:58:36 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A63A114F62; Sun, 26 Dec 1999 08:58:34 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA57522; Sun, 26 Dec 1999 08:58:34 -0800 (PST) (envelope-from bde@FreeBSD.org) Message-Id: <199912261658.IAA57522@freefall.freebsd.org> From: Bruce Evans Date: Sun, 26 Dec 1999 08:58:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 smbus.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1999/12/26 08:58:33 PST Modified files: share/man/man4 smbus.4 Log: Fixed spelling error in document title. Fixed syntax error in synopsis. Revision Changes Path 1.6 +3 -3 src/share/man/man4/smbus.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 9: 7:20 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AB4A114DD1; Sun, 26 Dec 1999 09:07:18 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA58176; Sun, 26 Dec 1999 09:07:18 -0800 (PST) (envelope-from bde@FreeBSD.org) Message-Id: <199912261707.JAA58176@freefall.freebsd.org> From: Bruce Evans Date: Sun, 26 Dec 1999 09:07:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/conf Makefile.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1999/12/26 09:07:17 PST Modified files: sys/i386/conf Makefile.i386 Log: Fixed stripping of aout debugging kernels. Fixed some style bugs (always use precisely 1 space after `:' in dependency specifications). Removed bogus dependency of ${FULLKERNEL} on ${BEFORE_DEPEND}. Revision Changes Path 1.168 +5 -5 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 Sun Dec 26 9:27:38 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C2BAF14FF5; Sun, 26 Dec 1999 09:27:27 -0800 (PST) (envelope-from andreas@FreeBSD.org) Received: (from andreas@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA59470; Sun, 26 Dec 1999 09:27:27 -0800 (PST) (envelope-from andreas@FreeBSD.org) Message-Id: <199912261727.JAA59470@freefall.freebsd.org> From: Andreas Klemm Date: Sun, 26 Dec 1999 09:27:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/webmin/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1999/12/26 09:27:26 PST Modified files: sysutils/webmin/files md5 Log: My tar archive was corrupt. Make new checksum. PR: closes 15692 Revision Changes Path 1.7 +1 -1 ports/sysutils/webmin/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 Dec 26 12:16:42 1999 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id DD7F614CF4; Sun, 26 Dec 1999 12:16:38 -0800 (PST) (envelope-from billf@chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 0E98F1C57; Sun, 26 Dec 1999 15:15:55 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by jade.chc-chimes.com (Postfix) with ESMTP id 00CB4381B; Sun, 26 Dec 1999 15:15:54 -0500 (EST) Date: Sun, 26 Dec 1999 15:15:54 -0500 (EST) From: Bill Fumerola To: Brian Feldman Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/math/calc/patches patch-ab In-Reply-To: <199912252302.PAA49631@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 Sat, 25 Dec 1999, Brian Feldman wrote: > green 1999/12/25 15:02:30 PST > > Added files: > math/calc/patches patch-ab > Log: > Use -O. This is wrong, I'm about to commit the right way. -- - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 12:24:29 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6BCC614EE0; Sun, 26 Dec 1999 12:24:25 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA67625; Sun, 26 Dec 1999 12:24:24 -0800 (PST) (envelope-from billf@FreeBSD.org) Message-Id: <199912262024.MAA67625@freefall.freebsd.org> From: Bill Fumerola Date: Sun, 26 Dec 1999 12:24:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/calc Makefile ports/math/calc/patches patch-ab Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1999/12/26 12:24:23 PST Modified files: math/calc Makefile math/calc/patches patch-ab Log: (1) Rearrange the MASTER_SITES, if the http service of a machine is down it's a safe bet that the ftp service would be too. Re-order the MASTER_SITES to try and avoid trying the same broken site twice. (2) Follow the bouncing checksum. The old one might need to be re-added. (3) Respect CFLAGS properly. Revision Changes Path 1.15 +3 -3 ports/math/calc/Makefile 1.2 +3 -3 ports/math/calc/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 Dec 26 12:45:45 1999 Delivered-To: cvs-all@freebsd.org Received: from 1Cust245.tnt2.washington.dc.da.uu.net (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id C1D4914F27; Sun, 26 Dec 1999 12:45:28 -0800 (PST) (envelope-from green@FreeBSD.org) Date: Sun, 26 Dec 1999 15:45:26 -0500 (EST) From: Brian Fundakowski Feldman X-Sender: green@green.dyndns.org To: Bill Fumerola Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/math/calc Makefile ports/math/calc/patches patch-ab In-Reply-To: <199912262024.MAA67625@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, 26 Dec 1999, Bill Fumerola wrote: > billf 1999/12/26 12:24:23 PST > > Modified files: > math/calc Makefile > math/calc/patches patch-ab Did you ask the MAINTAINER for permission? I had previously gotten permission from jmz to update calc to the latest version, for example. -- Brian Fundakowski Feldman \ FreeBSD: The Power to Serve! / green@FreeBSD.org `------------------------------' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 12:49:56 1999 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id A350114DDE; Sun, 26 Dec 1999 12:49:53 -0800 (PST) (envelope-from billf@chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 82CE41C57; Sun, 26 Dec 1999 15:49:09 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by jade.chc-chimes.com (Postfix) with ESMTP id 74D11381B; Sun, 26 Dec 1999 15:49:09 -0500 (EST) Date: Sun, 26 Dec 1999 15:49:09 -0500 (EST) From: Bill Fumerola To: Bill Fumerola Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/math/calc Makefile ports/math/calc/patches patch-ab In-Reply-To: <199912262024.MAA67625@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, 26 Dec 1999, Bill Fumerola wrote: > (2) Follow the bouncing checksum. The old one might need to be re-added. Nevermind, the checksum didn't change, just the mtime on it locally.. -- - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 12:50:57 1999 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id 4B86B14EB5; Sun, 26 Dec 1999 12:50:54 -0800 (PST) (envelope-from billf@chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 3CBC41C57; Sun, 26 Dec 1999 15:50:10 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by jade.chc-chimes.com (Postfix) with ESMTP id 384D5381B; Sun, 26 Dec 1999 15:50:10 -0500 (EST) Date: Sun, 26 Dec 1999 15:50:10 -0500 (EST) From: Bill Fumerola To: Brian Fundakowski Feldman Cc: Bill Fumerola , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/math/calc Makefile ports/math/calc/patches patch-ab 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, 26 Dec 1999, Brian Fundakowski Feldman wrote: > > math/calc Makefile > > math/calc/patches patch-ab > > Did you ask the MAINTAINER for permission? I had previously gotten > permission from jmz to update calc to the latest version, for > example. My commits were fixups of your fuckups, permission carried. -- - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 14:18:44 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F0B6314BD4; Sun, 26 Dec 1999 14:18:41 -0800 (PST) (envelope-from dbaker@FreeBSD.org) Received: (from dbaker@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA72654; Sun, 26 Dec 1999 14:18:41 -0800 (PST) (envelope-from dbaker@FreeBSD.org) Message-Id: <199912262218.OAA72654@freefall.freebsd.org> From: Daniel Baker Date: Sun, 26 Dec 1999 14:18:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/rc5des Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dbaker 1999/12/26 14:18:41 PST Modified files: misc/rc5des Makefile Log: Add a BROKEN= that refers users to the soon-to-be-added misc/dnetc port. I suppose that I should delete this port entirely rsn. Revision Changes Path 1.16 +3 -1 ports/misc/rc5des/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 14:19:30 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E7D3B14D10; Sun, 26 Dec 1999 14:19:28 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA72817; Sun, 26 Dec 1999 14:19:28 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912262219.OAA72817@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Sun, 26 Dec 1999 14:19:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/kdbg Makefile ports/devel/kdbg/files md5 ports/devel/kdbg/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/26 14:19:28 PST Modified files: devel/kdbg Makefile devel/kdbg/files md5 devel/kdbg/pkg DESCR Log: Update port to 1.0.2 Revision Changes Path 1.5 +4 -4 ports/devel/kdbg/Makefile 1.3 +1 -1 ports/devel/kdbg/files/md5 1.2 +1 -1 ports/devel/kdbg/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 Dec 26 14:31:13 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C3D81502D; Sun, 26 Dec 1999 14:31:11 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA73569; Sun, 26 Dec 1999 14:31:11 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912262231.OAA73569@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Sun, 26 Dec 1999 14:31:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/demoroniser Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/26 14:31:10 PST Modified files: www/demoroniser Makefile Log: Add additional MASTER_SITE Revision Changes Path 1.3 +4 -3 ports/www/demoroniser/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 14:42:16 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 88DF214A00; Sun, 26 Dec 1999 14:42:14 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA74222; Sun, 26 Dec 1999 14:42:14 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912262242.OAA74222@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Sun, 26 Dec 1999 14:42:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/deskutils/yank Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/26 14:42:14 PST Modified files: deskutils/yank Makefile Log: Correct LIB_DEPENDS deficiency (requires libxmp) Found by: bento Revision Changes Path 1.2 +3 -2 ports/deskutils/yank/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 14:51:14 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7404814A00; Sun, 26 Dec 1999 14:51:12 -0800 (PST) (envelope-from dbaker@FreeBSD.org) Received: (from dbaker@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA74782; Sun, 26 Dec 1999 14:51:12 -0800 (PST) (envelope-from dbaker@FreeBSD.org) Message-Id: <199912262251.OAA74782@freefall.freebsd.org> From: Daniel Baker Date: Sun, 26 Dec 1999 14:51:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dbaker 1999/12/26 14:51:12 PST Modified files: . modules Log: dnetc --> ports/misc/dnetc/ Revision Changes Path 1.709 +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 Dec 26 14:52:36 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 695BF14C2D; Sun, 26 Dec 1999 14:52:34 -0800 (PST) (envelope-from dbaker@FreeBSD.org) Received: (from dbaker@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA74911; Sun, 26 Dec 1999 14:52:34 -0800 (PST) (envelope-from dbaker@FreeBSD.org) Message-Id: <199912262252.OAA74911@freefall.freebsd.org> From: Daniel Baker Date: Sun, 26 Dec 1999 14:52:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/dnetc/ - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dbaker 1999/12/26 14:52:34 PST ports/misc/dnetc/ - Imported sources Update of /home/ncvs/ports/misc/dnetc/ In directory freefall.freebsd.org:/d/users/dbaker/tmp/dnetc Log Message: Initial import of "dnetc." dnetc is the new line of distributed.net clients (formally in the ports collection as misc/rc5des). Status: Vendor Tag: DBAKER Release Tags: dnetc_450 N ports/misc/dnetc//Makefile N ports/misc/dnetc//files/md5 N ports/misc/dnetc//files/dnetc.ini N ports/misc/dnetc//files/INFO N ports/misc/dnetc//files/dnetc.sh N ports/misc/dnetc//pkg/COMMENT N ports/misc/dnetc//pkg/DESCR N ports/misc/dnetc//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 Dec 26 14:54:25 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EE2F314A2F; Sun, 26 Dec 1999 14:54:22 -0800 (PST) (envelope-from dbaker@FreeBSD.org) Received: (from dbaker@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA75167; Sun, 26 Dec 1999 14:54:22 -0800 (PST) (envelope-from dbaker@FreeBSD.org) Message-Id: <199912262254.OAA75167@freefall.freebsd.org> From: Daniel Baker Date: Sun, 26 Dec 1999 14:54:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dbaker 1999/12/26 14:54:22 PST Modified files: misc Makefile Log: remove rc5des add dnetc Revision Changes Path 1.252 +2 -2 ports/misc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 14:57:13 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BEA3314BCF; Sun, 26 Dec 1999 14:57:11 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA75370; Sun, 26 Dec 1999 14:57:11 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912262257.OAA75370@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Sun, 26 Dec 1999 14:57:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/xbanner/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/26 14:57:09 PST Modified files: x11/xbanner/files md5 Log: Correct MD5 Found by: bento Revision Changes Path 1.2 +1 -1 ports/x11/xbanner/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 Dec 26 15: 0: 9 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CDAA214F13; Sun, 26 Dec 1999 14:59:50 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA75591; Sun, 26 Dec 1999 14:59:50 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912262259.OAA75591@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Sun, 26 Dec 1999 14:59:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/sim Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/26 14:59:50 PST Modified files: emulators/sim Makefile Log: Add MASTER_SITES Revision Changes Path 1.8 +3 -2 ports/emulators/sim/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 15:33:44 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 32DBA14C14; Sun, 26 Dec 1999 15:33:42 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA77531; Sun, 26 Dec 1999 15:33:41 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912262333.PAA77531@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Sun, 26 Dec 1999 15:33:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/kplot3d Makefile ports/graphics/kplot3d/files md5 ports/graphics/kplot3d/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/26 15:33:40 PST Modified files: graphics/kplot3d Makefile graphics/kplot3d/files md5 graphics/kplot3d/pkg PLIST Log: Update port to 0.70 PR: 15261 Revision Changes Path 1.2 +11 -4 ports/graphics/kplot3d/Makefile 1.2 +1 -1 ports/graphics/kplot3d/files/md5 1.2 +3 -0 ports/graphics/kplot3d/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 16:27:39 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7CF3B14F23; Sun, 26 Dec 1999 16:27:37 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA80285; Sun, 26 Dec 1999 16:27:37 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270027.QAA80285@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 16:27:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/vflib Makefile ports/japanese/vflib/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 16:27:36 PST Modified files: japanese/vflib Makefile japanese/vflib/files md5 Log: Update to version 2.24.2. PR: 14633 Submitted by: Brian Handy Revision Changes Path 1.23 +10 -8 ports/japanese/vflib/Makefile 1.10 +1 -1 ports/japanese/vflib/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 Dec 26 16:32:26 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 285E114C09; Sun, 26 Dec 1999 16:32:24 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA80614; Sun, 26 Dec 1999 16:32:23 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270032.QAA80614@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 16:32:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/e93 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 16:32:23 PST Modified files: editors/e93 Makefile Log: Mark this port as NO_CDROM (until a real fix is found) so that sysinstall won't hang waiting for the user to respond an interactive install script. PR: 14743 Revision Changes Path 1.25 +3 -1 ports/editors/e93/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 16:33:38 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7190014FF6; Sun, 26 Dec 1999 16:33:36 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA80776; Sun, 26 Dec 1999 16:33:36 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270033.QAA80776@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 16:33:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/astro/setiathome Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 16:33:36 PST Modified files: astro/setiathome Makefile Log: Mark as NO_CDROM until we can find a better fix for sysinstall hanging on ports that have interactive install scripts. PR: 14744 Revision Changes Path 1.13 +4 -3 ports/astro/setiathome/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 16:37:56 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 848D7150E4; Sun, 26 Dec 1999 16:37:54 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA81151; Sun, 26 Dec 1999 16:37:54 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270037.QAA81151@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 16:37:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/sfio Makefile ports/devel/sfio/files md5 ports/devel/sfio/patches patch-ab Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 16:37:53 PST Modified files: devel/sfio Makefile devel/sfio/files md5 devel/sfio/patches patch-ab Log: Update to the 1999 release. PR: 14833 Submitted by: Trevor Johnson Revision Changes Path 1.10 +9 -7 ports/devel/sfio/Makefile 1.4 +1 -1 ports/devel/sfio/files/md5 1.2 +7 -7 ports/devel/sfio/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 Dec 26 16:40:19 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E7BF14BD5; Sun, 26 Dec 1999 16:40:16 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA81493; Sun, 26 Dec 1999 16:40:15 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270040.QAA81493@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 16:40:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/bjorb Makefile ports/security/bjorb/patches patch-ac patch-ad Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 16:40:15 PST Modified files: security/bjorb Makefile Added files: security/bjorb/patches patch-ac patch-ad Log: Fix build for USA_RESIDENT=yes. Also get this to compile again on -current. PR: 14888 Inspired by: maintainer and the stunnel port Revision Changes Path 1.10 +3 -3 ports/security/bjorb/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 16:46:11 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A075B15222; Sun, 26 Dec 1999 16:46:08 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA81992; Sun, 26 Dec 1999 16:46:08 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270046.QAA81992@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 16:46:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/generic-nqs Makefile ports/net/generic-nqs/files i386-unknown-freebsd2.2.6 md5 ports/net/generic-nqs/patches patch-ad patch-ae patch-ab ports/net/generic-nqs/pkg DESCR PLIST ports/net/generic-nqs/scripts fix-PLIST.mktmp.sh create-nqs-rc.sh ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 16:46:08 PST Modified files: net/generic-nqs Makefile net/generic-nqs/files i386-unknown-freebsd2.2.6 md5 net/generic-nqs/patches patch-ab net/generic-nqs/pkg DESCR PLIST net/generic-nqs/scripts create-nqs-rc.sh syslog-add.sh Added files: net/generic-nqs/patches patch-ad patch-ae net/generic-nqs/scripts fix-PLIST.mktmp.sh Log: Update to version 3.50.6. PR: 14915 Submitted by: maintainer Revision Changes Path 1.4 +50 -24 ports/net/generic-nqs/Makefile 1.2 +1 -1 ports/net/generic-nqs/files/i386-unknown-freebsd2.2.6 1.2 +1 -1 ports/net/generic-nqs/files/md5 1.2 +20 -21 ports/net/generic-nqs/patches/patch-ab 1.2 +3 -3 ports/net/generic-nqs/pkg/DESCR 1.2 +7 -0 ports/net/generic-nqs/pkg/PLIST 1.2 +4 -1 ports/net/generic-nqs/scripts/create-nqs-rc.sh 1.2 +3 -1 ports/net/generic-nqs/scripts/syslog-add.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 16:47:27 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C8EEE15094; Sun, 26 Dec 1999 16:47:25 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA82220; Sun, 26 Dec 1999 16:47:25 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270047.QAA82220@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 16:47:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/jbigkit Makefile ports/graphics/jbigkit/files md5 ports/graphics/jbigkit/patches patch-aa patch-ab ports/graphics/jbigkit/pkg COMMENT DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 16:47:25 PST Modified files: graphics/jbigkit Makefile graphics/jbigkit/files md5 graphics/jbigkit/patches patch-aa patch-ab graphics/jbigkit/pkg COMMENT DESCR Log: Update to version 1.1. PR: 14926 Submitted by: maintainer Revision Changes Path 1.8 +5 -2 ports/graphics/jbigkit/Makefile 1.4 +1 -1 ports/graphics/jbigkit/files/md5 1.7 +2 -2 ports/graphics/jbigkit/patches/patch-aa 1.8 +2 -2 ports/graphics/jbigkit/patches/patch-ab 1.3 +1 -1 ports/graphics/jbigkit/pkg/COMMENT 1.2 +17 -19 ports/graphics/jbigkit/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 Dec 26 16:50:10 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C5DAA15274; Sun, 26 Dec 1999 16:50:05 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA82478; Sun, 26 Dec 1999 16:50:05 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270050.QAA82478@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 16:50:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/gtk12/patches patch-af Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 16:50:05 PST Added files: x11-toolkits/gtk12/patches patch-af Log: Allow multiple (different) font families to be used by our Russian counterparts. PR: 14957 Submitted by: Mikhail Teterin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 16:58:57 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7596014FA4; Sun, 26 Dec 1999 16:58:55 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA83196; Sun, 26 Dec 1999 16:58:55 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270058.QAA83196@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 16:58:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/pine4 Makefile ports/chinese/pine4/files md5 pine.conf ports/chinese/pine4/patches patch-ba patch-bb patch-bd patch-be patch-bf patch-bh patch-bi patch-bk patch-bn patch-bo patch-br ports/chinese/pine4/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 16:58:55 PST Modified files: chinese/pine4 Makefile chinese/pine4/files md5 pine.conf chinese/pine4/patches patch-ba patch-bb patch-bd patch-be patch-bf patch-bh patch-bi patch-bk patch-bn patch-bo patch-br chinese/pine4/pkg DESCR Log: Update to version 4.21. PR: 14994 Submitted by: maintainer Revision Changes Path 1.13 +4 -4 ports/chinese/pine4/Makefile 1.9 +1 -1 ports/chinese/pine4/files/md5 1.4 +4 -0 ports/chinese/pine4/files/pine.conf 1.8 +33 -31 ports/chinese/pine4/patches/patch-ba 1.7 +4 -4 ports/chinese/pine4/patches/patch-bb 1.9 +61 -63 ports/chinese/pine4/patches/patch-bd 1.7 +5 -5 ports/chinese/pine4/patches/patch-be 1.7 +191 -191 ports/chinese/pine4/patches/patch-bf 1.6 +3 -3 ports/chinese/pine4/patches/patch-bh 1.7 +35 -35 ports/chinese/pine4/patches/patch-bi 1.7 +58 -58 ports/chinese/pine4/patches/patch-bk 1.3 +8 -8 ports/chinese/pine4/patches/patch-bn 1.5 +5 -5 ports/chinese/pine4/patches/patch-bo 1.4 +7 -7 ports/chinese/pine4/patches/patch-br 1.8 +1 -1 ports/chinese/pine4/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 Dec 26 17: 2:35 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9FB5214A1E; Sun, 26 Dec 1999 17:02:33 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA83558; Sun, 26 Dec 1999 17:02:33 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270102.RAA83558@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 17:02:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/id3ren Makefile ports/audio/id3ren/patches patch-ab patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 17:02:32 PST Modified files: audio/id3ren Makefile audio/id3ren/patches patch-aa Added files: audio/id3ren/patches patch-ab Log: Initial buffer correctly by zeroing out before use. PR: 15030 Submitted by: maintainer Revision Changes Path 1.4 +1 -2 ports/audio/id3ren/Makefile 1.2 +1 -1 ports/audio/id3ren/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 Dec 26 17: 8:38 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9575314ED3; Sun, 26 Dec 1999 17:08:36 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA84157; Sun, 26 Dec 1999 17:08:36 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270108.RAA84157@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 17:08:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/dnsutl Makefile ports/net/dnsutl/patches patch-aa ports/net/dnsutl/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 17:08:36 PST Modified files: net/dnsutl Makefile net/dnsutl/patches patch-aa net/dnsutl/pkg DESCR Log: Install manpages and add WWW to DESCR. Note: since our soelim(1) doesn't support a '-I' argument, instead of this soelim -Iman1 man1/foo.1 > tmp I did this. (cd man1; soelim foo.1) > tmp PR: 15093 Submitted by: maintainer Revision Changes Path 1.4 +6 -9 ports/net/dnsutl/Makefile 1.3 +104 -16 ports/net/dnsutl/patches/patch-aa 1.2 +2 -0 ports/net/dnsutl/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 Dec 26 17:10:13 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 71D1315272; Sun, 26 Dec 1999 17:10:08 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA84489; Sun, 26 Dec 1999 17:10:08 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270110.RAA84489@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 17:10:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-clocks/eyeclock Makefile ports/x11-clocks/eyeclock/files md5 ports/x11-clocks/eyeclock/patches patch-ab patch-aa ports/x11-clocks/eyeclock/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 17:10:08 PST Modified files: x11-clocks/eyeclock Makefile x11-clocks/eyeclock/files md5 x11-clocks/eyeclock/patches patch-aa x11-clocks/eyeclock/pkg COMMENT DESCR PLIST Added files: x11-clocks/eyeclock/patches patch-ab Log: Update to version 2.0. PR: 15681 Submitted by: Hiroaki Sakai Revision Changes Path 1.7 +6 -5 ports/x11-clocks/eyeclock/Makefile 1.4 +1 -1 ports/x11-clocks/eyeclock/files/md5 1.5 +62 -57 ports/x11-clocks/eyeclock/patches/patch-aa 1.3 +1 -1 ports/x11-clocks/eyeclock/pkg/COMMENT 1.2 +14 -3 ports/x11-clocks/eyeclock/pkg/DESCR 1.3 +95 -8 ports/x11-clocks/eyeclock/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 17:15:42 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7003F1521C; Sun, 26 Dec 1999 17:15:40 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA85147; Sun, 26 Dec 1999 17:15:40 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270115.RAA85147@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 17:15:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese Makefile ports/japanese/ptex-pkfonts118 Makefile ports/japanese/ptex-pkfonts240 Makefile ports/japanese/ptex-pkfonts300 Makefile ports/japanese/ptex-pkfonts300/files REQ.tmpl ports/japanese/ptex-pkfonts300/pkg COMMENT DESCR PLIST ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 17:15:40 PST Modified files: japanese Makefile Added files: japanese/ptex-pkfonts118 Makefile japanese/ptex-pkfonts240 Makefile japanese/ptex-pkfonts300 Makefile japanese/ptex-pkfonts300/files REQ.tmpl japanese/ptex-pkfonts300/pkg COMMENT DESCR PLIST japanese/ptex-pkfonts360 Makefile japanese/ptex-pkfonts400 Makefile japanese/ptex-pkfonts600 Makefile Log: Adding ptex-pkfonts* ports. English PK fonts, for ghostscript5, xdvik, dvipsk, and so on. PR: 15650 Submitted by: Kentaro Inagaki Revision Changes Path 1.243 +7 -1 ports/japanese/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 17:24:41 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 900A815114; Sun, 26 Dec 1999 17:24:38 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA85879; Sun, 26 Dec 1999 17:24:38 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270124.RAA85879@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 17:24:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese Makefile ports/japanese/hns Makefile ports/japanese/hns/files hns-setup.sh md5 ports/japanese/hns/pkg COMMENT DESCR MESSAGE PLIST ports/japanese/hns/scripts configure Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 17:24:38 PST Modified files: japanese Makefile Added files: japanese/hns Makefile japanese/hns/files hns-setup.sh md5 japanese/hns/pkg COMMENT DESCR MESSAGE PLIST japanese/hns/scripts configure Log: Adding ja-hns version 2.00pl3 Hyper NIKKI System, a CGI system for Electric Diary Interchange PR: 14855 Submitted by: HOTARU-YA Revision Changes Path 1.244 +2 -1 ports/japanese/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 17:36:50 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E1DC15206; Sun, 26 Dec 1999 17:36:48 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA86948; Sun, 26 Dec 1999 17:36:47 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270136.RAA86948@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 17:36:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/comms Makefile ports/comms/sredird Makefile ports/comms/sredird/files md5 ports/comms/sredird/patches patch-aa patch-ab ports/comms/sredird/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 17:36:47 PST Modified files: comms Makefile Added files: comms/sredird Makefile comms/sredird/files md5 comms/sredird/patches patch-aa patch-ab comms/sredird/pkg COMMENT DESCR PLIST Log: Adding sredird version 1.1.7 An RFC 2217 compliant serial port redirector. PR: 15603 Submitted by: Maxim Sobolev Revision Changes Path 1.39 +2 -1 ports/comms/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 17:41: 3 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 68F9E15266; Sun, 26 Dec 1999 17:41:00 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA87423; Sun, 26 Dec 1999 17:41:00 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270141.RAA87423@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 17:41:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/msrc0 Makefile ports/devel/msrc0/files md5 ports/devel/msrc0/patches patch-aa ports/devel/msrc0/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 17:41:00 PST Modified files: devel Makefile Added files: devel/msrc0 Makefile devel/msrc0/files md5 devel/msrc0/patches patch-aa devel/msrc0/pkg COMMENT DESCR PLIST Log: Adding msrc0 version 0.6. A meta source fake-out script for building ksb tools. PR: 14972 Submitted by: Andrew J. Korty Revision Changes Path 1.240 +2 -1 ports/devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 17:43:17 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 340C614DE5; Sun, 26 Dec 1999 17:43:15 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA87859; Sun, 26 Dec 1999 17:43:15 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270143.RAA87859@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 17:43:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/mkcmd Makefile ports/devel/mkcmd/files md5 ports/devel/mkcmd/patches patch-aa patch-ab patch-ac ports/devel/mkcmd/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 17:43:14 PST Modified files: devel Makefile Added files: devel/mkcmd Makefile devel/mkcmd/files md5 devel/mkcmd/patches patch-aa patch-ab patch-ac devel/mkcmd/pkg COMMENT DESCR PLIST Log: Adding mkcmd version 8.10. A commandline parse and manual page generator. PR: 14971 Submitted by: Andrew J. Korty Revision Changes Path 1.241 +2 -1 ports/devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 17:46: 5 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AF753150E6; Sun, 26 Dec 1999 17:46:01 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA88159; Sun, 26 Dec 1999 17:46:01 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270146.RAA88159@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 17:46:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java Makefile ports/java/starlogo Makefile ports/java/starlogo/files md5 ports/java/starlogo/patches patch-aa ports/java/starlogo/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 17:46:01 PST Modified files: java Makefile Added files: java/starlogo Makefile java/starlogo/files md5 java/starlogo/patches patch-aa java/starlogo/pkg COMMENT DESCR PLIST Log: Adding starlogo version 1.0 beta 2. The Logo programming language written in Java PR: 14879 Submitted by: Jose Marques Revision Changes Path 1.6 +2 -1 ports/java/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 17:49:18 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 98FCF14D71; Sun, 26 Dec 1999 17:49:04 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA88568; Sun, 26 Dec 1999 17:49:04 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270149.RAA88568@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 17:49:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc Makefile ports/misc/lc Makefile ports/misc/lc/files md5 ports/misc/lc/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 17:49:04 PST Modified files: misc Makefile Added files: misc/lc Makefile misc/lc/files md5 misc/lc/pkg COMMENT DESCR PLIST Log: Adding lc version 1.0. An alternative to ls(1). PR: 14870 Submitted by: John Sellens Revision Changes Path 1.253 +2 -1 ports/misc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 17:52:28 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 662C714C8E; Sun, 26 Dec 1999 17:52:26 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA88943; Sun, 26 Dec 1999 17:52:26 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270152.RAA88943@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 17:52:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security Makefile ports/security/cyrus-sasl Makefile ports/security/cyrus-sasl/files md5 pwcheck.sh ports/security/cyrus-sasl/patches patch-aa patch-ab patch-ac patch-ad ports/security/cyrus-sasl/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 17:52:26 PST Modified files: security Makefile Added files: security/cyrus-sasl Makefile security/cyrus-sasl/files md5 pwcheck.sh security/cyrus-sasl/patches patch-aa patch-ab patch-ac patch-ad security/cyrus-sasl/pkg COMMENT DESCR PLIST Log: Adding cyrus-sasl version 1.5.13. An RFC 2222 SASL (Simple Authentication and Security Layer). PR: 14619 Submitted by: Scot W. Hetzel Revision Changes Path 1.80 +2 -1 ports/security/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 17:56:13 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 37CF914FD4; Sun, 26 Dec 1999 17:56:11 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA89291; Sun, 26 Dec 1999 17:56:11 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270156.RAA89291@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 17:56:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security Makefile ports/security/sslwrap Makefile ports/security/sslwrap/files md5 ports/security/sslwrap/patches patch-aa ports/security/sslwrap/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 17:56:10 PST Modified files: security Makefile Added files: security/sslwrap Makefile security/sslwrap/files md5 security/sslwrap/patches patch-aa security/sslwrap/pkg COMMENT DESCR PLIST Log: Adding sslwrap version 2.0.5. Another SSL wrapper application, which uses SSLEay/OpenSSL. PR: 14771 Submitted by: Zahemszky Gabor Revision Changes Path 1.81 +2 -1 ports/security/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 17:58:16 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 753E714CAD; Sun, 26 Dec 1999 17:58:14 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA89619; Sun, 26 Dec 1999 17:58:14 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270158.RAA89619@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 17:58:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security Makefile ports/security/pgpgpg Makefile ports/security/pgpgpg/files md5 ports/security/pgpgpg/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 17:58:14 PST Modified files: security Makefile Added files: security/pgpgpg Makefile security/pgpgpg/files md5 security/pgpgpg/pkg COMMENT DESCR PLIST Log: Adding pgpgpg version 0.13. A wrapper for GnuPG to simulate PGP 2.6.x. PR: 15526 Submitted by: Matt Behrens Revision Changes Path 1.82 +2 -1 ports/security/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 18: 1:54 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 78A2514CF1; Sun, 26 Dec 1999 18:01:48 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA90046; Sun, 26 Dec 1999 18:01:48 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270201.SAA90046@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 18:01:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/se-ispell Makefile ports/textproc/se-ispell/files md5 ports/textproc/se-ispell/patches patch-aa ports/textproc/se-ispell/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 18:01:48 PST Modified files: textproc Makefile Added files: textproc/se-ispell Makefile textproc/se-ispell/files md5 textproc/se-ispell/patches patch-aa textproc/se-ispell/pkg COMMENT DESCR PLIST Log: Adding se-ispell version 1.2.1. A Swedish dictionary for ispell. PR: 14716 Submitted by: Kent Boortz Revision Changes Path 1.75 +2 -1 ports/textproc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 18: 4: 1 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 93D3514C8E; Sun, 26 Dec 1999 18:03:59 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA90301; Sun, 26 Dec 1999 18:03:59 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270203.SAA90301@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 18:03:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/gtkdiff Makefile ports/textproc/gtkdiff/files md5 ports/textproc/gtkdiff/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 18:03:59 PST Modified files: textproc Makefile Added files: textproc/gtkdiff Makefile textproc/gtkdiff/files md5 textproc/gtkdiff/pkg COMMENT DESCR PLIST Log: Adding gtkdiff version 1.0.1. A frontend program for diff(1) written for GNOME. PR: 14945 Submitted by: Maxim Sobolev Revision Changes Path 1.76 +2 -1 ports/textproc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 18: 7:48 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 756CB14CF1; Sun, 26 Dec 1999 18:07:46 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA90799; Sun, 26 Dec 1999 18:07:46 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270207.SAA90799@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 18:07:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/pstotext Makefile ports/textproc/pstotext/files md5 ports/textproc/pstotext/patches patch-aa ports/textproc/pstotext/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 18:07:45 PST Modified files: textproc Makefile Added files: textproc/pstotext Makefile textproc/pstotext/files md5 textproc/pstotext/patches patch-aa textproc/pstotext/pkg COMMENT DESCR PLIST Log: Adding pstotext version 2.1 A PostScript to text converter. PR: 15307 Submitted by: Oliver Breuninger Revision Changes Path 1.77 +2 -1 ports/textproc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 18:10: 7 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9BA2A15050; Sun, 26 Dec 1999 18:10:04 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA91126; Sun, 26 Dec 1999 18:10:04 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270210.SAA91126@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 18:10:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/cole Makefile ports/textproc/cole/files md5 ports/textproc/cole/patches patch-aa ports/textproc/cole/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 18:10:04 PST Modified files: textproc Makefile Added files: textproc/cole Makefile textproc/cole/files md5 textproc/cole/patches patch-aa textproc/cole/pkg COMMENT DESCR PLIST Log: Adding cole version 2.0.1 A free C OLE library PR: 14705 (1 of 2) Submitted by: Maxim Sobolev Revision Changes Path 1.78 +2 -1 ports/textproc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 18:12:39 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3308514F13; Sun, 26 Dec 1999 18:12:35 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA91411; Sun, 26 Dec 1999 18:12:35 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270212.SAA91411@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 18:12:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/xls2xml Makefile ports/textproc/xls2xml/files md5 ports/textproc/xls2xml/patches patch-aa patch-ab patch-ac ports/textproc/xls2xml/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 18:12:34 PST Modified files: textproc Makefile Added files: textproc/xls2xml Makefile textproc/xls2xml/files md5 textproc/xls2xml/patches patch-aa patch-ab patch-ac textproc/xls2xml/pkg COMMENT DESCR PLIST Log: Adding xls2xml version 1.0.0. A utility for converting MS Excel files to XML. PR: 14705 (2 of 2) Submitted by: Maxim Sobolev Revision Changes Path 1.79 +2 -1 ports/textproc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 18:15:21 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 917DD14DA7; Sun, 26 Dec 1999 18:15:16 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA91713; Sun, 26 Dec 1999 18:15:16 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270215.SAA91713@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 18:15:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www Makefile ports/www/jesred Makefile ports/www/jesred/files md5 ports/www/jesred/patches patch-aa patch-ab patch-ac ports/www/jesred/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 18:15:16 PST Modified files: www Makefile Added files: www/jesred Makefile www/jesred/files md5 www/jesred/patches patch-aa patch-ab patch-ac www/jesred/pkg COMMENT DESCR PLIST Log: Adding jesred version 1.2pl1. A redirector for Squid. PR: 14869 Submitted by: Denis Shaposhnikov Revision Changes Path 1.172 +2 -1 ports/www/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 18:18:11 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D1B7B14DC0; Sun, 26 Dec 1999 18:18:08 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA92108; Sun, 26 Dec 1999 18:18:08 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270218.SAA92108@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 18:18:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www Makefile ports/www/screem Makefile ports/www/screem/files md5 ports/www/screem/patches patch-aa patch-ab ports/www/screem/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 18:18:08 PST Modified files: www Makefile Added files: www/screem Makefile www/screem/files md5 www/screem/patches patch-aa patch-ab www/screem/pkg COMMENT DESCR PLIST Log: Adding screem version 0.1.92 A GNOME/GTK-based HTML editor. PR: 14956 Submitted by: Will Andrews Revision Changes Path 1.173 +2 -1 ports/www/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 18:21: 7 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C91315275; Sun, 26 Dec 1999 18:20:46 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA92401; Sun, 26 Dec 1999 18:20:46 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270220.SAA92401@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 18:20:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www Makefile ports/www/p5-Apache-DBI Makefile ports/www/p5-Apache-DBI/files md5 ports/www/p5-Apache-DBI/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 18:20:46 PST Modified files: www Makefile Added files: www/p5-Apache-DBI Makefile www/p5-Apache-DBI/files md5 www/p5-Apache-DBI/pkg COMMENT DESCR PLIST Log: Adding p5-Apache-DBI version 0.87. A Perl module sporting DBI persistent connection, authentication, and authorization. PR: 15614 Submitted by: Igor Vinokurov Revision Changes Path 1.174 +2 -1 ports/www/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 18:24:34 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8D60714BF8; Sun, 26 Dec 1999 18:24:32 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA92896; Sun, 26 Dec 1999 18:24:32 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270224.SAA92896@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 18:24:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11 Makefile ports/x11/qrash Makefile ports/x11/qrash/files md5 ports/x11/qrash/patches patch-aa patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-aj patch-ak patch-al patch-am patch-an patch-ao ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 18:24:31 PST Modified files: x11 Makefile Added files: x11/qrash Makefile x11/qrash/files md5 x11/qrash/patches patch-aa patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-aj patch-ak patch-al patch-am patch-an patch-ao patch-ap patch-aq patch-ar patch-as patch-at patch-au x11/qrash/pkg COMMENT DESCR PLIST Log: Adding qrash version 1.0 An animated musical demo for X11. PR: 14554 Submitted by: Trevor Johnson Revision Changes Path 1.273 +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 Sun Dec 26 18:25:27 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 19D2214E08; Sun, 26 Dec 1999 18:25:25 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA93006; Sun, 26 Dec 1999 18:25:24 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912270225.SAA93006@freefall.freebsd.org> From: Steve Price Date: Sun, 26 Dec 1999 18:25:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/26 18:25:24 PST Modified files: . modules Log: cole -> ports/textproc/cole cyrus-sasl -> ports/security/cyrus-sasl gtkdiff -> ports/textproc/gtkdiff ja-hns -> ports/japanese/hns ja-ptex-pkfonts118 -> ports/japanese/ptex-pkfonts118 ja-ptex-pkfonts240 -> ports/japanese/ptex-pkfonts240 ja-ptex-pkfonts300 -> ports/japanese/ptex-pkfonts300 ja-ptex-pkfonts360 -> ports/japanese/ptex-pkfonts360 ja-ptex-pkfonts400 -> ports/japanese/ptex-pkfonts400 ja-ptex-pkfonts600 -> ports/japanese/ptex-pkfonts600 jesred -> ports/www/jesred lc -> ports/misc/lc mkcmd -> ports/devel/mkcmd msrc0 -> ports/devel/msrc0 p5-Apache-DBI -> ports/www/p5-Apache-DBI pgpgpg -> ports/security/pgpgpg pstotext -> ports/textproc/pstotext qrash -> ports/x11/qrash screem -> ports/www/screem se-ispell -> ports/textproc/se-ispell sredird -> ports/comms/sredird sslwrap -> ports/security/sslwrap starlogo -> ports/java/starlogo xls2xml -> ports/textproc/xls2xml Revision Changes Path 1.710 +25 -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 Dec 26 20:32:54 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3CBF514DD4; Sun, 26 Dec 1999 20:32:53 -0800 (PST) (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA00956; Sun, 26 Dec 1999 20:32:53 -0800 (PST) (envelope-from vanilla@FreeBSD.org) Message-Id: <199912270432.UAA00956@freefall.freebsd.org> From: "Vanilla I. Shu" Date: Sun, 26 Dec 1999 20:32:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/jade/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1999/12/26 20:32:52 PST Added files: textproc/jade/patches patch-aa Log: jade can't work with optimize (like -O2 -mpentium). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 20:37:23 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 78E1214E75; Sun, 26 Dec 1999 20:37:21 -0800 (PST) (envelope-from tanimura@FreeBSD.org) Received: (from tanimura@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA01320; Sun, 26 Dec 1999 20:37:21 -0800 (PST) (envelope-from tanimura@FreeBSD.org) Message-Id: <199912270437.UAA01320@freefall.freebsd.org> From: Seigo Tanimura Date: Sun, 26 Dec 1999 20:37:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa/sound opl3.c sb16_dsp.c sb16_midi.c sb_dsp.c sbcard.h sound_config.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tanimura 1999/12/26 20:37:20 PST Modified files: sys/i386/isa/sound opl3.c sb16_dsp.c sb16_midi.c sb_dsp.c sbcard.h sound_config.h Log: Add support of SB for PC98 into VoxWare 3.5, and more $FreeBSD$. Submitted by: T.Yamaoka Pressed to review by: nyan Revision Changes Path 1.20 +6 -1 src/sys/i386/isa/sound/opl3.c 1.33 +21 -1 src/sys/i386/isa/sound/sb16_dsp.c 1.20 +12 -0 src/sys/i386/isa/sound/sb16_midi.c 1.42 +23 -0 src/sys/i386/isa/sound/sb_dsp.c 1.4 +18 -0 src/sys/i386/isa/sound/sbcard.h 1.20 +6 -0 src/sys/i386/isa/sound/sound_config.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 20:44: 8 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 271D614CF4; Sun, 26 Dec 1999 20:44:05 -0800 (PST) (envelope-from jdp@FreeBSD.org) Received: (from jdp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA01884; Sun, 26 Dec 1999 20:44:05 -0800 (PST) (envelope-from jdp@FreeBSD.org) Message-Id: <199912270444.UAA01884@freefall.freebsd.org> From: John Polstra Date: Sun, 26 Dec 1999 20:44:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include dlfcn.h src/lib/libc/gen dllockinit.3 Makefile.inc dlfcn.c src/libexec/rtld-elf lockdflt.c Makefile debug.h rtld.c rtld.h src/libexec/rtld-elf/alpha reloc.c src/libexec/rtld-elf/i386 reloc.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jdp 1999/12/26 20:44:04 PST Modified files: include dlfcn.h lib/libc/gen Makefile.inc dlfcn.c libexec/rtld-elf Makefile debug.h rtld.c rtld.h libexec/rtld-elf/alpha reloc.c libexec/rtld-elf/i386 reloc.c Added files: lib/libc/gen dllockinit.3 libexec/rtld-elf lockdflt.c Log: Add a new function dllockinit() for registering thread locking functions to be used by the dynamic linker. This can be called by threads packages at start-up time. I will add the call to libc_r soon. Also add a default locking method that is used up until dllockinit() is called. The default method works by blocking SIGVTALRM, SIGPROF, and SIGALRM in critical sections. It is based on the observation that most user-space threads packages implement thread preemption with one of these signals (usually SIGVTALRM). The dynamic linker has never been reentrant, but it became less reentrant in revision 1.34 of "src/libexec/rtld-elf/rtld.c". Starting with that revision, multiple threads each doing lazy binding could interfere with each other. The usual symptom was that a symbol was falsely reported as undefined at start-up time. It was rare but not unseen. This commit fixes it. Revision Changes Path 1.7 +8 -1 src/include/dlfcn.h 1.57 +2 -2 src/lib/libc/gen/Makefile.inc 1.6 +15 -1 src/lib/libc/gen/dlfcn.c 1.9 +3 -3 src/libexec/rtld-elf/Makefile 1.4 +10 -1 src/libexec/rtld-elf/debug.h 1.40 +119 -17 src/libexec/rtld-elf/rtld.c 1.13 +5 -1 src/libexec/rtld-elf/rtld.h 1.9 +1 -10 src/libexec/rtld-elf/alpha/reloc.c 1.5 +1 -10 src/libexec/rtld-elf/i386/reloc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 20:44:31 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 64DE215375; Sun, 26 Dec 1999 20:44:24 -0800 (PST) (envelope-from tanimura@FreeBSD.org) Received: (from tanimura@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA01971; Sun, 26 Dec 1999 20:44:24 -0800 (PST) (envelope-from tanimura@FreeBSD.org) Message-Id: <199912270444.UAA01971@freefall.freebsd.org> From: Seigo Tanimura Date: Sun, 26 Dec 1999 20:44:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa/sound opl3.c sb16_dsp.c sb16_midi.c sb_dsp.c sbcard.h sound_config.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tanimura 1999/12/26 20:44:24 PST Modified files: (Branch: RELENG_3) sys/i386/isa/sound opl3.c sb16_dsp.c sb16_midi.c sb_dsp.c sbcard.h sound_config.h Log: MFC: Add support of SB for PC98 into VoxWare 3.5, and more $FreeBSD$. Submitted by: T.Yamaoka Pressed to review by: nyan Revision Changes Path 1.19.2.1 +6 -1 src/sys/i386/isa/sound/opl3.c 1.31.2.2 +21 -1 src/sys/i386/isa/sound/sb16_dsp.c 1.19.2.1 +12 -0 src/sys/i386/isa/sound/sb16_midi.c 1.40.2.1 +24 -0 src/sys/i386/isa/sound/sb_dsp.c 1.3.2.1 +18 -0 src/sys/i386/isa/sound/sbcard.h 1.19.2.1 +6 -0 src/sys/i386/isa/sound/sound_config.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 21: 2:32 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 63B5314DC0; Sun, 26 Dec 1999 21:02:28 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA03329; Sun, 26 Dec 1999 21:02:28 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912270502.VAA03329@freefall.freebsd.org> From: Peter Wemm Date: Sun, 26 Dec 1999 21:02:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/isa sio.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/26 21:02:28 PST Modified files: sys/isa sio.c Log: Recognize the GVC0505 (GVC 56k Faxmodem) as a sio device. Obtained from: Dan J Fraser (for NetBSD) Revision Changes Path 1.282 +2 -1 src/sys/isa/sio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 21:13:36 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F86214C01; Sun, 26 Dec 1999 21:13:34 -0800 (PST) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA04292; Sun, 26 Dec 1999 21:13:33 -0800 (PST) (envelope-from taoka@FreeBSD.org) Message-Id: <199912270513.VAA04292@freefall.freebsd.org> From: Satoshi Taoka Date: Sun, 26 Dec 1999 21:13:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk taoka 1999/12/26 21:13:33 PST Modified files: . modules Log: Xatm --> ports/x11-servers/Xatm Revision Changes Path 1.711 +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 Dec 26 21:22:27 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B4CF714D33; Sun, 26 Dec 1999 21:22:25 -0800 (PST) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA04931; Sun, 26 Dec 1999 21:22:25 -0800 (PST) (envelope-from taoka@FreeBSD.org) Message-Id: <199912270522.VAA04931@freefall.freebsd.org> From: Satoshi Taoka Date: Sun, 26 Dec 1999 21:22:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-servers/Xatm - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk taoka 1999/12/26 21:22:25 PST ports/x11-servers/Xatm - Imported sources Update of /home/ncvs/ports/x11-servers/Xatm In directory freefall.freebsd.org:/x/tmp/cvs-serv4309 Log Message: Status: Vendor Tag: TAGUCHI Release Tags: v3_0_1 N ports/x11-servers/Xatm/Makefile N ports/x11-servers/Xatm/pkg/COMMENT N ports/x11-servers/Xatm/pkg/PLIST N ports/x11-servers/Xatm/pkg/DESCR N ports/x11-servers/Xatm/files/md5 N ports/x11-servers/Xatm/patches/patch-aa N ports/x11-servers/Xatm/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 Sun Dec 26 21:23: 0 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DAA2F14F8E; Sun, 26 Dec 1999 21:22:55 -0800 (PST) (envelope-from sumikawa@FreeBSD.org) Received: (from sumikawa@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA05001; Sun, 26 Dec 1999 21:22:55 -0800 (PST) (envelope-from sumikawa@FreeBSD.org) Message-Id: <199912270522.VAA05001@freefall.freebsd.org> From: Munechika SUMIKAWA Date: Sun, 26 Dec 1999 21:22:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/xtris Makefile ports/games/xtris/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sumikawa 1999/12/26 21:22:55 PST Modified files: games/xtris Makefile games/xtris/pkg DESCR Log: Master site has changed. Approved by: maintainer Revision Changes Path 1.4 +2 -2 ports/games/xtris/Makefile 1.3 +1 -1 ports/games/xtris/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 Dec 26 21:23:56 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B2BA514D33; Sun, 26 Dec 1999 21:23:54 -0800 (PST) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA05109; Sun, 26 Dec 1999 21:23:54 -0800 (PST) (envelope-from taoka@FreeBSD.org) Message-Id: <199912270523.VAA05109@freefall.freebsd.org> From: Satoshi Taoka Date: Sun, 26 Dec 1999 21:23:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-servers Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk taoka 1999/12/26 21:23:54 PST Modified files: x11-servers Makefile Log: Added Xatm Revision Changes Path 1.3 +2 -1 ports/x11-servers/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 21:25:39 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 095D314E75; Sun, 26 Dec 1999 21:25:37 -0800 (PST) (envelope-from nakai@FreeBSD.org) Received: (from nakai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA05335; Sun, 26 Dec 1999 21:25:36 -0800 (PST) (envelope-from nakai@FreeBSD.org) Message-Id: <199912270525.VAA05335@freefall.freebsd.org> From: Yukihiro Nakai Date: Sun, 26 Dec 1999 21:25:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/gnomeadmin Makefile ports/sysutils/gnomeadmin/files ja.po patch-ja ports/sysutils/gnomeadmin/patches patch-ag patch-ah Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nakai 1999/12/26 21:25:36 PST Modified files: sysutils/gnomeadmin Makefile Added files: sysutils/gnomeadmin/files ja.po patch-ja sysutils/gnomeadmin/patches patch-ag patch-ah Log: Add KANJI support. This will disappear int the next version.. Submitted by: Yoichi Asai Revision Changes Path 1.12 +12 -2 ports/sysutils/gnomeadmin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 21:30:54 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3965B14F5F; Sun, 26 Dec 1999 21:30:52 -0800 (PST) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA05666; Sun, 26 Dec 1999 21:30:51 -0800 (PST) (envelope-from taoka@FreeBSD.org) Message-Id: <199912270530.VAA05666@freefall.freebsd.org> From: Satoshi Taoka Date: Sun, 26 Dec 1999 21:30:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-servers/Xatm Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk taoka 1999/12/26 21:30:51 PST Modified files: x11-servers/Xatm Makefile Log: (This is a null commit to put "Log Message".) XFree86 Font Server with Xatm (Xatm is PostScript font loader for X) PR: 15347 Submitted by: Taguchi, Takeshi Revision Changes Path 1.2 +1 -1 ports/x11-servers/Xatm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 21:40:15 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A7C951517F; Sun, 26 Dec 1999 21:40:12 -0800 (PST) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA06407; Sun, 26 Dec 1999 21:40:12 -0800 (PST) (envelope-from taoka@FreeBSD.org) Message-Id: <199912270540.VAA06407@freefall.freebsd.org> From: Satoshi Taoka Date: Sun, 26 Dec 1999 21:40:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/xemacs-canna/pkg COMMENT ports/japanese/xemacs-canna+wnn4/pkg COMMENT ports/japanese/xemacs-canna+wnn6/pkg COMMENT ports/japanese/xemacs-wnn4/pkg COMMENT ports/japanese/xemacs-wnn6/pkg COMMENT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk taoka 1999/12/26 21:40:12 PST Modified files: japanese/xemacs-canna/pkg COMMENT japanese/xemacs-canna+wnn4/pkg COMMENT japanese/xemacs-canna+wnn6/pkg COMMENT japanese/xemacs-wnn4/pkg COMMENT japanese/xemacs-wnn6/pkg COMMENT Log: Corrected comments in japanese/xemacs* PR: ports/15401 Submitted by: maintainer Revision Changes Path 1.6 +1 -1 ports/japanese/xemacs-canna/pkg/COMMENT 1.5 +1 -1 ports/japanese/xemacs-canna+wnn4/pkg/COMMENT 1.5 +1 -1 ports/japanese/xemacs-canna+wnn6/pkg/COMMENT 1.5 +1 -1 ports/japanese/xemacs-wnn4/pkg/COMMENT 1.5 +1 -1 ports/japanese/xemacs-wnn6/pkg/COMMENT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 22:11:14 1999 Delivered-To: cvs-all@freebsd.org Received: from overcee.netplex.com.au (overcee.netplex.com.au [202.12.86.7]) by hub.freebsd.org (Postfix) with ESMTP id C74891521E; Sun, 26 Dec 1999 22:11:09 -0800 (PST) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id BE4621CA0; Mon, 27 Dec 1999 14:11:02 +0800 (WST) (envelope-from peter@netplex.com.au) X-Mailer: exmh version 2.1.1 10/15/1999 To: Bruce Evans Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/conf Makefile.i386 In-Reply-To: Message from Bruce Evans of "Sun, 26 Dec 1999 09:07:17 PST." <199912261707.JAA58176@freefall.freebsd.org> Date: Mon, 27 Dec 1999 14:11:02 +0800 From: Peter Wemm Message-Id: <19991227061102.BE4621CA0@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Bruce Evans wrote: > Modified files: > sys/i386/conf Makefile.i386 > Log: > Fixed stripping of aout debugging kernels. > Fixed some style bugs (always use precisely 1 space after `:' in > dependency specifications). > Removed bogus dependency of ${FULLKERNEL} on ${BEFORE_DEPEND}. Can you copy this to alpha/conf/Makefile.alpha please? They are supposed to be in sync for this sort of stuff. Cheers, -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 22:22:18 1999 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id DB5B914C01; Sun, 26 Dec 1999 22:22:15 -0800 (PST) (envelope-from billf@chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 189461C57; Mon, 27 Dec 1999 01:21:31 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by jade.chc-chimes.com (Postfix) with ESMTP id 14179381B; Mon, 27 Dec 1999 01:21:31 -0500 (EST) Date: Mon, 27 Dec 1999 01:21:31 -0500 (EST) From: Bill Fumerola To: Steve Price Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/textproc Makefile ports/textproc/se-ispell Makefile ports/textproc/se-ispell/files md5 ports/textproc/se-ispell/patches patch-aa ports/textproc/se-ispell/pkg COMMENT DESCR PLIST In-Reply-To: <199912270201.SAA90046@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, 26 Dec 1999, Steve Price wrote: > steve 1999/12/26 18:01:48 PST > > Modified files: > textproc Makefile > Added files: > textproc/se-ispell Makefile > textproc/se-ispell/files md5 > textproc/se-ispell/patches patch-aa > textproc/se-ispell/pkg COMMENT DESCR PLIST > Log: > Adding se-ispell version 1.2.1. > A Swedish dictionary for ispell. I haven't looked at the specifics, but could this be done like the french and british dictionaries are done in ispell or are the changes too different? -- - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 22:31: 5 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D2E9715151; Sun, 26 Dec 1999 22:31:02 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: (from nyan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA09556; Sun, 26 Dec 1999 22:31:02 -0800 (PST) (envelope-from nyan@FreeBSD.org) Message-Id: <199912270631.WAA09556@freefall.freebsd.org> From: Takahashi Yoshihiro Date: Sun, 26 Dec 1999 22:31:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/conf GENERIC98 src/sys/pc98/pc98 if_ed.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nyan 1999/12/26 22:31:02 PST Modified files: (Branch: RELENG_3) sys/pc98/conf GENERIC98 sys/pc98/pc98 if_ed.c Log: MFC: Added Allied Telesis SIU-98-D support. Revision Changes Path 1.63.2.24 +5 -2 src/sys/pc98/conf/GENERIC98 1.58.2.8 +19 -6 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 Sun Dec 26 22:31:56 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 492F014CEC; Sun, 26 Dec 1999 22:31:54 -0800 (PST) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA09671; Sun, 26 Dec 1999 22:31:54 -0800 (PST) (envelope-from green@FreeBSD.org) Message-Id: <199912270631.WAA09671@freefall.freebsd.org> From: Brian Feldman Date: Sun, 26 Dec 1999 22:31:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern uipc_socket.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk green 1999/12/26 22:31:54 PST Modified files: sys/kern uipc_socket.c Log: Correct an uninitialized variable use, which, unlike most times, is actually a bug this time. Submitted by: bde Reviewed by: bde Revision Changes Path 1.67 +3 -5 src/sys/kern/uipc_socket.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 22:45:37 1999 Delivered-To: cvs-all@freebsd.org Received: from 1Cust80.tnt1.washington.dc.da.uu.net (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id BF2C614F51; Sun, 26 Dec 1999 22:45:30 -0800 (PST) (envelope-from green@FreeBSD.org) Date: Mon, 27 Dec 1999 01:45:24 -0500 (EST) From: Brian Fundakowski Feldman X-Sender: green@green.dyndns.org To: John Polstra Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/include dlfcn.h src/lib/libc/gen dllockinit.3 Makefile.inc dlfcn.c src/libexec/rtld-elf lockdflt.c Makefile debug.h rtld.c rtld.h src/libexec/rtld-elf/alpha reloc.c src/libexec/rtld-elf/i386 reloc.c In-Reply-To: <199912270444.UAA01884@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk I think you forgot this. -- Brian Fundakowski Feldman \ FreeBSD: The Power to Serve! / green@FreeBSD.org `------------------------------' Index: rtld.h =================================================================== RCS file: /usr2/ncvs/src/libexec/rtld-elf/rtld.h,v retrieving revision 1.13 diff -u -r1.13 rtld.h --- rtld.h 1999/12/27 04:44:02 1.13 +++ rtld.h 1999/12/27 06:43:59 @@ -152,6 +152,7 @@ /* * Function declarations. */ +void dllockinit(void *, void *(*)(void *), void (*)(void *), void (*)(void *), void (*)(void *), void (*)(void *), void (*)(void *)); int do_copy_relocations(Obj_Entry *); unsigned long elf_hash(const char *); const Elf_Sym *find_symdef(unsigned long, Obj_Entry *, const Obj_Entry **, To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 22:45:58 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A426153E1; Sun, 26 Dec 1999 22:45:55 -0800 (PST) (envelope-from nakai@FreeBSD.org) Received: (from nakai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA10924; Sun, 26 Dec 1999 22:45:55 -0800 (PST) (envelope-from nakai@FreeBSD.org) Message-Id: <199912270645.WAA10924@freefall.freebsd.org> From: Yukihiro Nakai Date: Sun, 26 Dec 1999 22:45:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/icewm Makefile ports/x11-wm/icewm/files md5 ports/x11-wm/icewm/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nakai 1999/12/26 22:45:54 PST Modified files: x11-wm/icewm Makefile x11-wm/icewm/files md5 x11-wm/icewm/pkg PLIST Log: Update to 1.0.0 Revision Changes Path 1.46 +4 -5 ports/x11-wm/icewm/Makefile 1.30 +1 -1 ports/x11-wm/icewm/files/md5 1.20 +3 -0 ports/x11-wm/icewm/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 22:51:34 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 492D815264; Sun, 26 Dec 1999 22:51:33 -0800 (PST) (envelope-from nakai@FreeBSD.org) Received: (from nakai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA11375; Sun, 26 Dec 1999 22:51:33 -0800 (PST) (envelope-from nakai@FreeBSD.org) Message-Id: <199912270651.WAA11375@freefall.freebsd.org> From: Yukihiro Nakai Date: Sun, 26 Dec 1999 22:51:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/gnomecore/patches patch-ae Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nakai 1999/12/26 22:51:32 PST Modified files: x11/gnomecore/patches patch-ae Log: Fix typo. Submitted by: Joroen Ruigrok/Asmodai Revision Changes Path 1.15 +1 -1 ports/x11/gnomecore/patches/patch-ae To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 23:15:39 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 71F2D15280; Sun, 26 Dec 1999 23:15:00 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA12792; Sun, 26 Dec 1999 23:15:00 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912270715.XAA12792@freefall.freebsd.org> From: Peter Wemm Date: Sun, 26 Dec 1999 23:15:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libkvm kvm.c kvm_alpha.c kvm_file.c kvm_getloadavg.c kvm_getswapinfo.c kvm_i386.c kvm_nlist.3 kvm_private.h kvm_proc.c kvm_sparc.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/26 23:14:59 PST Modified files: lib/libkvm kvm.c kvm_alpha.c kvm_file.c kvm_getloadavg.c kvm_getswapinfo.c kvm_i386.c kvm_nlist.3 kvm_private.h kvm_proc.c kvm_sparc.c Log: Use kldsym(2) to lookup symbol values. This avoids the kvm_mkdb juggling and is module aware. Yes, this means that kvm_nlist(3) will find symbols in loaded modules. The emulation of the nlist struct is pretty crude but seems to work well enough for all the users in the tree that I found. Revision Changes Path 1.12 +22 -113 src/lib/libkvm/kvm.c 1.4 +1 -2 src/lib/libkvm/kvm_alpha.c 1.9 +5 -0 src/lib/libkvm/kvm_file.c 1.3 +5 -1 src/lib/libkvm/kvm_getloadavg.c 1.10 +1 -2 src/lib/libkvm/kvm_getswapinfo.c 1.11 +5 -1 src/lib/libkvm/kvm_i386.c 1.5 +7 -9 src/lib/libkvm/kvm_nlist.3 1.5 +1 -1 src/lib/libkvm/kvm_private.h 1.25 +7 -2 src/lib/libkvm/kvm_proc.c 1.3 +5 -1 src/lib/libkvm/kvm_sparc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 23:17:55 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4D4C714D33; Sun, 26 Dec 1999 23:17:53 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA13047; Sun, 26 Dec 1999 23:17:53 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912270717.XAA13047@freefall.freebsd.org> From: Peter Wemm Date: Sun, 26 Dec 1999 23:17:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/conf Makefile.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/26 23:17:52 PST Modified files: sys/i386/conf Makefile.i386 Log: Zap kvm_kernel.db stuff now that libkvm gets it directly from the running kernel. Revision Changes Path 1.169 +1 -8 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 Sun Dec 26 23:19:48 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B68DD14C83; Sun, 26 Dec 1999 23:19:46 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA13268; Sun, 26 Dec 1999 23:19:46 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912270719.XAA13268@freefall.freebsd.org> From: Peter Wemm Date: Sun, 26 Dec 1999 23:19:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/conf Makefile.alpha Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/26 23:19:46 PST Modified files: sys/alpha/conf Makefile.alpha Log: Zap the kvm_kernel.db juggling at 'make install' time, it isn't needed any more. Revision Changes Path 1.37 +1 -8 src/sys/alpha/conf/Makefile.alpha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 23:27:53 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4A61214F7C; Sun, 26 Dec 1999 23:27:51 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA13967; Sun, 26 Dec 1999 23:27:51 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912270727.XAA13967@freefall.freebsd.org> From: Peter Wemm Date: Sun, 26 Dec 1999 23:27:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin Makefile src/usr.sbin/kvm_mkdb Makefile extern.h kvm_mkdb.8 kvm_mkdb.c nlist.c testdb.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/26 23:27:50 PST Modified files: usr.sbin Makefile Removed files: usr.sbin/kvm_mkdb Makefile extern.h kvm_mkdb.8 kvm_mkdb.c nlist.c testdb.c Log: Zap kvm_mkdb, it was for kvm_nlist's benefit, but now it goes direct to the in-kernel hashed symbol tables (including modules). Revision Changes Path 1.174 +1 -2 src/usr.sbin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 23:43:10 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E0C5714ED5; Sun, 26 Dec 1999 23:43:08 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA14864; Sun, 26 Dec 1999 23:43:08 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912270743.XAA14864@freefall.freebsd.org> From: Peter Wemm Date: Sun, 26 Dec 1999 23:43:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/26 23:43:08 PST Modified files: etc rc Log: Remove kvm_mkdb as it isn't installed anymore. libkvm asks directly via kldsym(2), and crash dumps use nlist directly (and always have). Revision Changes Path 1.205 +1 -2 src/etc/rc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Dec 26 23:51:12 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A5FE15273; Sun, 26 Dec 1999 23:51:07 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA15956; Sun, 26 Dec 1999 23:51:07 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912270751.XAA15956@freefall.freebsd.org> From: Peter Wemm Date: Sun, 26 Dec 1999 23:51:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha autoconf.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/26 23:51:07 PST Modified files: sys/alpha/alpha autoconf.c Log: Include opt_nfs.h PR: 15711 Submitted by: Wilko Bulte Revision Changes Path 1.37 +2 -1 src/sys/alpha/alpha/autoconf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 0: 1:17 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3836714EB6; Mon, 27 Dec 1999 00:01:15 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA16835; Mon, 27 Dec 1999 00:01:14 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912270801.AAA16835@freefall.freebsd.org> From: Peter Wemm Date: Mon, 27 Dec 1999 00:01:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/dev_mkdb dev_mkdb.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/27 00:01:14 PST Modified files: usr.sbin/dev_mkdb dev_mkdb.8 Log: kvm_mkdb(8) no longer exists (in .Xr) and kvm_nlist(8) has even less to do with dev_mkdb(8) than it did before. Revision Changes Path 1.5 +2 -4 src/usr.sbin/dev_mkdb/dev_mkdb.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 0:20:44 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D49B9151DB; Mon, 27 Dec 1999 00:20:41 -0800 (PST) (envelope-from nakai@FreeBSD.org) Received: (from nakai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA18055; Mon, 27 Dec 1999 00:20:40 -0800 (PST) (envelope-from nakai@FreeBSD.org) Message-Id: <199912270820.AAA18055@freefall.freebsd.org> From: Yukihiro Nakai Date: Mon, 27 Dec 1999 00:20:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/replay Makefile ports/audio/replay/patches patch-ae patch-aa ports/audio/replay/pkg COMMENT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nakai 1999/12/27 00:20:40 PST Modified files: audio/replay Makefile audio/replay/patches patch-aa audio/replay/pkg COMMENT Added files: audio/replay/patches patch-ae Log: Some fix about MASTER_SITES, LIB_DEPENDS, I18N support, CC/CFLAGS. Submitted by: KATO Tsuguru Revision Changes Path 1.14 +27 -6 ports/audio/replay/Makefile 1.4 +3 -4 ports/audio/replay/patches/patch-aa 1.3 +1 -1 ports/audio/replay/pkg/COMMENT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 0:22:24 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9C1FE14FD4; Mon, 27 Dec 1999 00:22:21 -0800 (PST) (envelope-from nakai@FreeBSD.org) Received: (from nakai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA18236; Mon, 27 Dec 1999 00:22:21 -0800 (PST) (envelope-from nakai@FreeBSD.org) Message-Id: <199912270822.AAA18236@freefall.freebsd.org> From: Yukihiro Nakai Date: Mon, 27 Dec 1999 00:22:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/whirlgif Makefile ports/graphics/whirlgif/files md5 ports/graphics/whirlgif/patches patch-aa ports/graphics/whirlgif/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nakai 1999/12/27 00:22:15 PST Modified files: graphics/whirlgif Makefile graphics/whirlgif/files md5 graphics/whirlgif/pkg DESCR Added files: graphics/whirlgif/patches patch-aa Log: Update to 3.04 and some fix. Submitted by: KATO Tsuguru Revision Changes Path 1.4 +9 -7 ports/graphics/whirlgif/Makefile 1.2 +1 -1 ports/graphics/whirlgif/files/md5 1.2 +2 -0 ports/graphics/whirlgif/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 0:24:11 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 32047150D2; Mon, 27 Dec 1999 00:24:09 -0800 (PST) (envelope-from nakai@FreeBSD.org) Received: (from nakai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA18475; Mon, 27 Dec 1999 00:24:03 -0800 (PST) (envelope-from nakai@FreeBSD.org) Message-Id: <199912270824.AAA18475@freefall.freebsd.org> From: Yukihiro Nakai Date: Mon, 27 Dec 1999 00:24:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/giftrans Makefile ports/graphics/giftrans/files md5 ports/graphics/giftrans/scripts configure Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nakai 1999/12/27 00:24:03 PST Modified files: graphics/giftrans Makefile graphics/giftrans/files md5 Removed files: graphics/giftrans/scripts configure Log: Update to 1.12.2 and some fix. Submitted by: KATO Tsuguru Revision Changes Path 1.6 +21 -10 ports/graphics/giftrans/Makefile 1.2 +2 -1 ports/graphics/giftrans/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 0:39:36 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D5A915089; Mon, 27 Dec 1999 00:39:32 -0800 (PST) (envelope-from julian@FreeBSD.org) Received: (from julian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA19921; Mon, 27 Dec 1999 00:39:31 -0800 (PST) (envelope-from julian@FreeBSD.org) Message-Id: <199912270839.AAA19921@freefall.freebsd.org> From: Julian Elischer Date: Mon, 27 Dec 1999 00:39:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc pccard.conf.sample Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk julian 1999/12/27 00:39:31 PST Modified files: etc pccard.conf.sample Log: Reset the Zoom 56K modem when starting to use it. Failing to do so freezes your system. Submitted by:Sean O'Connell (my hero) Revision Changes Path 1.51 +4 -2 src/etc/pccard.conf.sample To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 0:40:43 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 496E314C83; Mon, 27 Dec 1999 00:40:41 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA20121; Mon, 27 Dec 1999 00:40:41 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912270840.AAA20121@freefall.freebsd.org> From: Peter Wemm Date: Mon, 27 Dec 1999 00:40:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/net inet_addr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/27 00:40:40 PST Modified files: lib/libc/net inet_addr.c Log: Make this compile with -Wall -Werror Revision Changes Path 1.12 +3 -2 src/lib/libc/net/inet_addr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 0:41:40 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 74A441513A; Mon, 27 Dec 1999 00:41:37 -0800 (PST) (envelope-from julian@FreeBSD.org) Received: (from julian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA20214; Mon, 27 Dec 1999 00:41:37 -0800 (PST) (envelope-from julian@FreeBSD.org) Message-Id: <199912270841.AAA20214@freefall.freebsd.org> From: Julian Elischer Date: Mon, 27 Dec 1999 00:41:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc pccard.conf.sample Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk julian 1999/12/27 00:41:37 PST Modified files: (Branch: RELENG_3) etc pccard.conf.sample Log: MFC reset of Zoom modem Revision Changes Path 1.24.2.16 +4 -2 src/etc/pccard.conf.sample To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 0:45:18 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CB8E4151F0; Mon, 27 Dec 1999 00:45:16 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA20683; Mon, 27 Dec 1999 00:45:16 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912270845.AAA20683@freefall.freebsd.org> From: Peter Wemm Date: Mon, 27 Dec 1999 00:45:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libstand nullfs.c printf.c stand.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/27 00:45:16 PST Modified files: lib/libstand nullfs.c printf.c stand.h Log: Tidy up some loose ends. nullfs_read/write were returning the wrong value. Fix some ctype problems - isascii() caused a warning if fed an unsigned char - it's always > 0 and libstand is compiled with -Wall. Missing prototype/include in printf.c Revision Changes Path 1.3 +3 -2 src/lib/libstand/nullfs.c 1.4 +2 -1 src/lib/libstand/printf.c 1.16 +4 -4 src/lib/libstand/stand.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 0:47:19 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B66E14CE5; Mon, 27 Dec 1999 00:47:17 -0800 (PST) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA20784; Mon, 27 Dec 1999 00:47:11 -0800 (PST) (envelope-from mjacob@FreeBSD.org) Message-Id: <199912270847.AAA20784@freefall.freebsd.org> From: Matt Jacob Date: Mon, 27 Dec 1999 00:47:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/isp ispmbox.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mjacob 1999/12/27 00:47:11 PST Modified files: sys/dev/isp ispmbox.h Log: Add in missing ENABLE TARGET MODE opcode. Revision Changes Path 1.16 +3 -1 src/sys/dev/isp/ispmbox.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 1:17:57 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CA622150A9; Mon, 27 Dec 1999 01:17:54 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA22868; Mon, 27 Dec 1999 01:17:54 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Message-Id: <199912270917.BAA22868@freefall.freebsd.org> From: Joseph Koshy Date: Mon, 27 Dec 1999 01:17:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/tet/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1999/12/27 01:17:53 PST Modified files: misc/tet/files md5 Log: upgrade to v3.3d-unsup Revision Changes Path 1.4 +1 -1 ports/misc/tet/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 1:20:37 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CB41715089; Mon, 27 Dec 1999 01:20:34 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA23163; Mon, 27 Dec 1999 01:20:34 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912270920.BAA23163@freefall.freebsd.org> From: Peter Wemm Date: Mon, 27 Dec 1999 01:20:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/alpha/common Makefile.common Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/27 01:20:34 PST Modified files: sys/boot/alpha/common Makefile.common Log: Connect up the bootforth glue and compile it, but don't initialize it at runtime as it has a nasty habit of crashing on the Alpha :-(. This is being done this way so we have a common starting point for debugging. Revision Changes Path 1.4 +14 -4 src/sys/boot/alpha/common/Makefile.common To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 1:20:52 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 45D5115089; Mon, 27 Dec 1999 01:20:38 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA23129; Mon, 27 Dec 1999 01:20:37 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Message-Id: <199912270920.BAA23129@freefall.freebsd.org> From: Joseph Koshy Date: Mon, 27 Dec 1999 01:20:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/tet Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1999/12/27 01:20:31 PST Modified files: misc/tet Makefile Log: Upgrade to v3.3d-unsup. Revision Changes Path 1.12 +4 -4 ports/misc/tet/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 1:21: 9 1999 Delivered-To: cvs-all@freebsd.org Received: from m0.cs.berkeley.edu (m0.CS.Berkeley.EDU [128.32.45.176]) by hub.freebsd.org (Postfix) with ESMTP id 52D4B154B6; Mon, 27 Dec 1999 01:21:03 -0800 (PST) (envelope-from asami@stampede.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca41-199.ix.netcom.com [209.111.208.199]) by m0.cs.berkeley.edu (8.9.3/8.9.3) with ESMTP id BAA96301; Mon, 27 Dec 1999 01:20:40 -0800 (PST) (envelope-from asami@stampede.cs.berkeley.edu) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id BAA39110; Mon, 27 Dec 1999 01:19:45 -0800 (PST) To: Daniel Baker Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/misc/dnetc/ - Imported sources References: <199912262252.OAA74911@freefall.freebsd.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 27 Dec 1999 01:19:34 -0800 In-Reply-To: Daniel Baker's message of "Sun, 26 Dec 1999 14:52:34 -0800 (PST)" Message-ID: Lines: 8 X-Mailer: Gnus v5.7/Emacs 20.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * From: Daniel Baker * dnetc is the new line of distributed.net clients (formally in * the ports collection as misc/rc5des). Thanks, but didn't you need a repository copy? -PW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 1:26:53 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D995214D24; Mon, 27 Dec 1999 01:26:51 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA23865; Mon, 27 Dec 1999 01:26:51 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Message-Id: <199912270926.BAA23865@freefall.freebsd.org> From: Joseph Koshy Date: Mon, 27 Dec 1999 01:26:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1999/12/27 01:26:51 PST Modified files: . modules Log: Remove sml-mode.el prior to re-importing into its new location. Revision Changes Path 1.712 +1 -2 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 1:28:54 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 762AF152BD; Mon, 27 Dec 1999 01:28:52 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA23982; Mon, 27 Dec 1999 01:28:51 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Message-Id: <199912270928.BAA23982@freefall.freebsd.org> From: Joseph Koshy Date: Mon, 27 Dec 1999 01:28:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1999/12/27 01:28:50 PST Modified files: . modules Log: sml-mode.el --> ports/lang/sml-mode.el Revision Changes Path 1.713 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 1:32:58 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 49AEE14E7B; Mon, 27 Dec 1999 01:32:56 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA24268; Mon, 27 Dec 1999 01:32:50 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Message-Id: <199912270932.BAA24268@freefall.freebsd.org> From: Joseph Koshy Date: Mon, 27 Dec 1999 01:32:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/sml-mode.el - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1999/12/27 01:32:50 PST ports/lang/sml-mode.el - Imported sources Update of /home/ncvs/ports/lang/sml-mode.el In directory freefall.freebsd.org:/d/users/jkoshy/sml-mode.el Log Message: Re-import sml-mode.el under "ports/lang". Old log message: "SML-mode v3.3 from Matthew J. Morley. A useful EMACS mode for interacting with a Standard ML system." Requested by: Satoshi Asami Status: Vendor Tag: MJM Release Tags: v3_3 N ports/lang/sml-mode.el/Makefile N ports/lang/sml-mode.el/pkg/COMMENT N ports/lang/sml-mode.el/pkg/DESCR N ports/lang/sml-mode.el/pkg/PLIST N ports/lang/sml-mode.el/files/md5 No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 1:36:36 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 472A114D24; Mon, 27 Dec 1999 01:36:34 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA24555; Mon, 27 Dec 1999 01:36:33 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Message-Id: <199912270936.BAA24555@freefall.freebsd.org> From: Joseph Koshy Date: Mon, 27 Dec 1999 01:36:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/sml-mode.el Makefile ports/devel/sml-mode.el/files md5 ports/devel/sml-mode.el/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1999/12/27 01:36:33 PST Removed files: devel/sml-mode.el Makefile devel/sml-mode.el/files md5 devel/sml-mode.el/pkg COMMENT DESCR PLIST Log: "ports/devel/sml-mode.el" has moved to "ports/lang/sml-mode.el". Requested by: Satoshi Asami To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 1:39:20 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CC65414EEF; Mon, 27 Dec 1999 01:39:18 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA24732; Mon, 27 Dec 1999 01:39:18 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Message-Id: <199912270939.BAA24732@freefall.freebsd.org> From: Joseph Koshy Date: Mon, 27 Dec 1999 01:39:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1999/12/27 01:39:18 PST Modified files: devel Makefile Log: "ports/devel/sml-mode.el" being moved to "ports/lang/sml-mode.el". Revision Changes Path 1.242 +1 -2 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 Mon Dec 27 1:41:36 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 887A915269; Mon, 27 Dec 1999 01:41:34 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA24925; Mon, 27 Dec 1999 01:41:34 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Message-Id: <199912270941.BAA24925@freefall.freebsd.org> From: Joseph Koshy Date: Mon, 27 Dec 1999 01:41:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1999/12/27 01:41:33 PST Modified files: lang Makefile Log: "ports/devel/sml-mode.el" being moved to "ports/lang/sml-mode.el". Revision Changes Path 1.156 +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 Mon Dec 27 2:22:14 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EC9D515291; Mon, 27 Dec 1999 02:22:11 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA28241; Mon, 27 Dec 1999 02:22:11 -0800 (PST) (envelope-from bde@FreeBSD.org) Message-Id: <199912271022.CAA28241@freefall.freebsd.org> From: Bruce Evans Date: Mon, 27 Dec 1999 02:22:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/posix4 ksched.c posix4.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1999/12/27 02:22:11 PST Modified files: sys/posix4 ksched.c posix4.h Log: Fixed some type mismatches. p_retval[0] in struct proc has type register_t, so pointers to it must be passed around as `register_t *', not as `int *'. The type mismatches were non-benign on alphas, but the broken code is normally only configured by LINT. Revision Changes Path 1.7 +12 -10 src/sys/posix4/ksched.c 1.6 +10 -8 src/sys/posix4/posix4.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 2:38:54 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 61C0314F26; Mon, 27 Dec 1999 02:38:51 -0800 (PST) (envelope-from nakai@FreeBSD.org) Received: (from nakai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA29616; Mon, 27 Dec 1999 02:38:50 -0800 (PST) (envelope-from nakai@FreeBSD.org) Message-Id: <199912271038.CAA29616@freefall.freebsd.org> From: Yukihiro Nakai Date: Mon, 27 Dec 1999 02:38:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/epplets Makefile ports/x11-wm/epplets/files md5 ports/x11-wm/epplets/patches patch-ab patch-ac patch-aa ports/x11-wm/epplets/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nakai 1999/12/27 02:38:50 PST Modified files: x11-wm/epplets Makefile x11-wm/epplets/files md5 x11-wm/epplets/pkg PLIST Added files: x11-wm/epplets/patches patch-ab patch-ac Removed files: x11-wm/epplets/patches patch-aa Log: Update to 0.4 Revision Changes Path 1.2 +7 -5 ports/x11-wm/epplets/Makefile 1.2 +1 -1 ports/x11-wm/epplets/files/md5 1.2 +50 -0 ports/x11-wm/epplets/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 Dec 27 2:42:59 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 92F80150F0; Mon, 27 Dec 1999 02:42:56 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA30015; Mon, 27 Dec 1999 02:42:56 -0800 (PST) (envelope-from bde@FreeBSD.org) Message-Id: <199912271042.CAA30015@freefall.freebsd.org> From: Bruce Evans Date: Mon, 27 Dec 1999 02:42:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/linux linux_sysvec.c src/sys/kern imgact_elf.c kern_exec.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1999/12/27 02:42:56 PST Modified files: sys/i386/linux linux_sysvec.c sys/kern imgact_elf.c kern_exec.c Log: Changed the type used to represent the user stack pointer from `long *' to `register_t *'. This fixes bugs like misplacement of argc and argv on the user stack on i386's with 64-bit longs. We still use longs to represent "words" like argc and argv, and assume that they are on the stack (and that there is stack). The suword() and fuword() families should also use register_t. Revision Changes Path 1.55 +7 -7 src/sys/i386/linux/linux_sysvec.c 1.71 +4 -4 src/sys/kern/imgact_elf.c 1.106 +6 -6 src/sys/kern/kern_exec.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 2:47:35 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B90F014CEC; Mon, 27 Dec 1999 02:47:33 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA30329; Mon, 27 Dec 1999 02:47:33 -0800 (PST) (envelope-from bde@FreeBSD.org) Message-Id: <199912271047.CAA30329@freefall.freebsd.org> From: Bruce Evans Date: Mon, 27 Dec 1999 02:47:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys sysent.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1999/12/27 02:47:33 PST Modified files: sys/sys sysent.h Log: This should have been committed with related changes to .c files. Changed the type used to represent the user stack pointer from `long *' to `register_t *'. This fixes bugs like misplacement of argc and argv on the user stack on i386's with 64-bit longs. We still use longs to represent "words" like argc and argv, and assume that they are on the stack (and that there is stack). The suword() and fuword() families should also use register_t. Revision Changes Path 1.25 +2 -2 src/sys/sys/sysent.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 3: 2:48 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2566114DFB; Mon, 27 Dec 1999 03:02:47 -0800 (PST) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA31565; Mon, 27 Dec 1999 03:02:47 -0800 (PST) (envelope-from asmodai@FreeBSD.org) Message-Id: <199912271102.DAA31565@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 27 Dec 1999 03:02:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 mdoc.samples.7 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asmodai 1999/12/27 03:02:46 PST Modified files: share/man/man7 mdoc.samples.7 Log: Fix some typo's. PR: 15678 Submitted by: Christian Weisgerber Revision Changes Path 1.26 +3 -3 src/share/man/man7/mdoc.samples.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 3: 6:56 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A0AB414CEC; Mon, 27 Dec 1999 03:06:54 -0800 (PST) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA32016; Mon, 27 Dec 1999 03:06:54 -0800 (PST) (envelope-from asmodai@FreeBSD.org) Message-Id: <199912271106.DAA32016@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 27 Dec 1999 03:06:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 mdoc.samples.7 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asmodai 1999/12/27 03:06:53 PST Modified files: (Branch: RELENG_3) share/man/man7 mdoc.samples.7 Log: MFC: Fix some typo's PR: 15678 Submitted by: Christian Weisgerber Revision Changes Path 1.17.2.8 +3 -3 src/share/man/man7/mdoc.samples.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 3:36: 0 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4460214F20; Mon, 27 Dec 1999 03:35:59 -0800 (PST) (envelope-from andy@FreeBSD.org) Received: (from andy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA34883; Mon, 27 Dec 1999 03:35:59 -0800 (PST) (envelope-from andy@FreeBSD.org) Message-Id: <199912271135.DAA34883@freefall.freebsd.org> From: Andrey Zakhvatov Date: Mon, 27 Dec 1999 03:35:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/ru docs.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andy 1999/12/27 03:35:58 PST Modified files: ru docs.sgml Log: Synchronize with English 1.75: freebsd -> FreeBSD fixes Revision Changes Path 1.2 +46 -45 www/ru/docs.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 3:42:16 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7437014F17; Mon, 27 Dec 1999 03:42:14 -0800 (PST) (envelope-from andy@FreeBSD.org) Received: (from andy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA35365; Mon, 27 Dec 1999 03:42:14 -0800 (PST) (envelope-from andy@FreeBSD.org) Message-Id: <199912271142.DAA35365@freefall.freebsd.org> From: Andrey Zakhvatov Date: Mon, 27 Dec 1999 03:42:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/ru docs.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andy 1999/12/27 03:42:13 PST Modified files: ru docs.sgml Log: Synchronize with English 1.76: Added FreeBSD 3.4-RELEASE manual pages. Revision Changes Path 1.3 +3 -2 www/ru/docs.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 3:43:35 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DE5B514C12; Mon, 27 Dec 1999 03:43:32 -0800 (PST) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA35490; Mon, 27 Dec 1999 03:43:32 -0800 (PST) (envelope-from brian@FreeBSD.org) Message-Id: <199912271143.DAA35490@freefall.freebsd.org> From: Brian Somers Date: Mon, 27 Dec 1999 03:43:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp auth.c chat.c command.c defs.c defs.h exec.c systems.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1999/12/27 03:43:32 PST Modified files: usr.sbin/ppp auth.c chat.c command.c defs.c defs.h exec.c systems.c Log: Don't allowt '#' as a comment when it's embedded in quotes: set something "xxx yyy # zzz" aaa shouldn't be interpreted as set something "xxx yyy" aaa Revision Changes Path 1.50 +5 -5 src/usr.sbin/ppp/auth.c 1.68 +4 -3 src/usr.sbin/ppp/chat.c 1.229 +2 -2 src/usr.sbin/ppp/command.c 1.30 +7 -6 src/usr.sbin/ppp/defs.c 1.52 +6 -1 src/usr.sbin/ppp/defs.h 1.16 +3 -2 src/usr.sbin/ppp/exec.c 1.57 +13 -20 src/usr.sbin/ppp/systems.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 3:46: 2 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 756271507B; Mon, 27 Dec 1999 03:46:00 -0800 (PST) (envelope-from andy@FreeBSD.org) Received: (from andy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA36473; Mon, 27 Dec 1999 03:46:00 -0800 (PST) (envelope-from andy@FreeBSD.org) Message-Id: <199912271146.DAA36473@freefall.freebsd.org> From: Andrey Zakhvatov Date: Mon, 27 Dec 1999 03:46:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/ru docs.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andy 1999/12/27 03:46:00 PST Modified files: ru docs.sgml Log: Synchronize with English 1.77: Update wosch's homepage. Revision Changes Path 1.4 +3 -3 www/ru/docs.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 3:51:32 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 59A981507B; Mon, 27 Dec 1999 03:51:30 -0800 (PST) (envelope-from andy@FreeBSD.org) Received: (from andy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA37118; Mon, 27 Dec 1999 03:51:30 -0800 (PST) (envelope-from andy@FreeBSD.org) Message-Id: <199912271151.DAA37118@freefall.freebsd.org> From: Andrey Zakhvatov Date: Mon, 27 Dec 1999 03:51:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/ru/docproj sgml.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andy 1999/12/27 03:51:29 PST Modified files: ru/docproj sgml.sgml Log: Synchronize with English 1.13: Update wosch's homepage. Revision Changes Path 1.2 +4 -4 www/ru/docproj/sgml.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 3:55: 2 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E361515013; Mon, 27 Dec 1999 03:54:59 -0800 (PST) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA37530; Mon, 27 Dec 1999 03:54:59 -0800 (PST) (envelope-from brian@FreeBSD.org) Message-Id: <199912271154.DAA37530@freefall.freebsd.org> From: Brian Somers Date: Mon, 27 Dec 1999 03:54:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp bundle.c cbcp.c ccp.c chap.c datalink.c filter.c fsm.c fsm.h ip.c ipcp.c lcp.c log.c main.c mbuf.c pap.c timer.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1999/12/27 03:54:59 PST Modified files: usr.sbin/ppp bundle.c cbcp.c ccp.c chap.c datalink.c filter.c fsm.c fsm.h ip.c ipcp.c lcp.c log.c main.c mbuf.c pap.c timer.c Log: Add a bunch of `const's and fix a typo. Submitted by: Rich Neswold Revision Changes Path 1.81 +2 -2 src/usr.sbin/ppp/bundle.c 1.18 +3 -3 src/usr.sbin/ppp/cbcp.c 1.54 +4 -4 src/usr.sbin/ppp/ccp.c 1.59 +2 -2 src/usr.sbin/ppp/chap.c 1.56 +2 -2 src/usr.sbin/ppp/datalink.c 1.39 +5 -5 src/usr.sbin/ppp/filter.c 1.52 +3 -3 src/usr.sbin/ppp/fsm.c 1.23 +2 -2 src/usr.sbin/ppp/fsm.h 1.77 +4 -2 src/usr.sbin/ppp/ip.c 1.90 +4 -4 src/usr.sbin/ppp/ipcp.c 1.81 +3 -3 src/usr.sbin/ppp/lcp.c 1.44 +2 -2 src/usr.sbin/ppp/log.c 1.166 +2 -2 src/usr.sbin/ppp/main.c 1.35 +2 -2 src/usr.sbin/ppp/mbuf.c 1.42 +4 -2 src/usr.sbin/ppp/pap.c 1.38 +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 Mon Dec 27 4: 6:15 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4139C14DBF; Mon, 27 Dec 1999 04:06:13 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA41855; Mon, 27 Dec 1999 04:06:13 -0800 (PST) (envelope-from bde@FreeBSD.org) Message-Id: <199912271206.EAA41855@freefall.freebsd.org> From: Bruce Evans Date: Mon, 27 Dec 1999 04:06:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/conf Makefile.alpha Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1999/12/27 04:06:13 PST Modified files: sys/alpha/conf Makefile.alpha Log: Synced with Makefile.i386. The following cleanups in Makefile.i386 rev.1.168 should have been committed concurrently: Fixed some style bugs (always use precisely 1 space after `:' in dependency specifications). Removed bogus dependency of ${FULLKERNEL} on ${BEFORE_DEPEND}. Reminded by: peter Revision Changes Path 1.38 +4 -4 src/sys/alpha/conf/Makefile.alpha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 4:26:44 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A6E7214ECC; Mon, 27 Dec 1999 04:26:41 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: (from nyan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA43662; Mon, 27 Dec 1999 04:26:41 -0800 (PST) (envelope-from nyan@FreeBSD.org) Message-Id: <199912271226.EAA43662@freefall.freebsd.org> From: Takahashi Yoshihiro Date: Mon, 27 Dec 1999 04:26:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/i386 machdep.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nyan 1999/12/27 04:26:41 PST Modified files: (Branch: RELENG_3) sys/pc98/i386 machdep.c Log: MFC: rev 1.149. - Cut down amount of memory in 64MB. - Don't perform destructive memory inspection for 15 - 16MB system area. Revision Changes Path 1.105.2.11 +9 -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 Mon Dec 27 5:18:24 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AC78115018; Mon, 27 Dec 1999 05:18:21 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA48109; Mon, 27 Dec 1999 05:18:21 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912271318.FAA48109@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Mon, 27 Dec 1999 05:18:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/enfle Makefile ports/graphics/enfle/files md5 ports/graphics/enfle/patches patch-ba Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/27 05:18:20 PST Modified files: graphics/enfle Makefile graphics/enfle/files md5 Added files: graphics/enfle/patches patch-ba Log: Update from 19991206 to 19991224. PR: 15703 Submitted by: Maintainer Revision Changes Path 1.9 +7 -7 ports/graphics/enfle/Makefile 1.8 +1 -1 ports/graphics/enfle/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 5:53:47 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 259D61502B; Mon, 27 Dec 1999 05:53:45 -0800 (PST) (envelope-from kato@FreeBSD.org) Received: (from kato@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA51480; Mon, 27 Dec 1999 05:53:44 -0800 (PST) (envelope-from kato@FreeBSD.org) Message-Id: <199912271353.FAA51480@freefall.freebsd.org> From: KATO Takenori Date: Mon, 27 Dec 1999 05:53:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/conf Makefile.pc98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1999/12/27 05:53:44 PST Modified files: sys/pc98/conf Makefile.pc98 Log: Synced with sys/i386/conf/Makefile.i386 rev 1.169. Revision Changes Path 1.75 +5 -12 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 Mon Dec 27 5:56:58 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1086C14F51; Mon, 27 Dec 1999 05:56:56 -0800 (PST) (envelope-from kato@FreeBSD.org) Received: (from kato@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA51729; Mon, 27 Dec 1999 05:56:55 -0800 (PST) (envelope-from kato@FreeBSD.org) Message-Id: <199912271356.FAA51729@freefall.freebsd.org> From: KATO Takenori Date: Mon, 27 Dec 1999 05:56:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/pc98 clock.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1999/12/27 05:56:55 PST Modified files: sys/pc98/pc98 clock.c Log: Synced with sys/i386/isa/clock.c rev 1.148. This is a cosmetic change because PC-98 doesn't have RTC and RTC related code is included by `#ifndef PC98' and `#endif'. Revision Changes Path 1.80 +17 -5 src/sys/pc98/pc98/clock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 6: 1:10 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BFDA514C02; Mon, 27 Dec 1999 06:01:08 -0800 (PST) (envelope-from kato@FreeBSD.org) Received: (from kato@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA52080; Mon, 27 Dec 1999 06:01:08 -0800 (PST) (envelope-from kato@FreeBSD.org) Message-Id: <199912271401.GAA52080@freefall.freebsd.org> From: KATO Takenori Date: Mon, 27 Dec 1999 06:01:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/pc98 sio.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1999/12/27 06:01:08 PST Modified files: sys/pc98/pc98 sio.c Log: Synced with sys/isa/sio.c rev 1.282. Revision Changes Path 1.117 +49 -6 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 Mon Dec 27 6: 4:25 1999 Delivered-To: cvs-all@freebsd.org Received: from multi.al.rim.or.jp (multi.al.rim.or.jp [202.247.191.252]) by hub.freebsd.org (Postfix) with ESMTP id B1E8314C14; Mon, 27 Dec 1999 06:04:20 -0800 (PST) (envelope-from kuriyama@sky.rim.or.jp) Received: from mail-relay.rim.or.jp by multi.al.rim.or.jp (8.8.8/3.7W/HMX-12) with ESMTP id XAA04416; Mon, 27 Dec 1999 23:04:19 +0900 (JST) Received: from rhea.sky.rim.or.jp (ppp369.kt.rim.or.jp [202.247.140.69]) by mail-relay.rim.or.jp (3.7W/HMX-12) id XAA19884; Mon, 27 Dec 1999 23:04:18 +0900 (JST) Received: from localhost.sky.rim.or.jp (localhost [127.0.0.1]) by rhea.sky.rim.or.jp (8.9.3/3.7W/rhea-1.2) with ESMTP id XAA65343; Mon, 27 Dec 1999 23:04:16 +0900 (JST) Date: Mon, 27 Dec 1999 23:04:14 +0900 Message-ID: <14439.29150.439722.81928B@localhost.sky.rim.or.jp> From: Jun Kuriyama To: jkh@FreeBSD.org To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www/ja revcheck In-Reply-To: In your message of "Fri, 24 Dec 1999 23:03:39 -0800 (PST)" <199912250703.XAA25145@freefall.freebsd.org> References: <199912250703.XAA25145@freefall.freebsd.org> User-Agent: Wanderlust/1.0.3 (Notorious) SEMI/1.13.3 (Komaiko) FLIM/1.12.5 (Hirahata) MULE XEmacs/20.4 (Emerald) (i386--freebsd) MIME-Version: 1.0 (generated by SEMI 1.13.3 - "Komaiko") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk From: "Jordan K. Hubbard" > jkh 1999/12/24 23:03:38 PST > My previous commit was essentially a null-commit since cvs just turned > around and smashed the fix again, something I noticed immediately > thereafter. The submitter heroically leaped forward with a fix after > I confessed insufficient ability with perl to make the match regexp work > correctly myself. :) > > Submitted by: Adruin "Adrian" Chadd Thanks! This is my second (or more?) fault caused by keyword expansion... Jun Kuriyama // kuriyama@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 6:17:52 1999 Delivered-To: cvs-all@freebsd.org Received: from sonet.crimea.ua (OTC-sl3-FLY.CRIS.NET [212.110.136.71]) by hub.freebsd.org (Postfix) with ESMTP id 2F3FE150F6; Mon, 27 Dec 1999 06:17:31 -0800 (PST) (envelope-from phantom@sonet.crimea.ua) Received: (from phantom@localhost) by sonet.crimea.ua (8.9.3/8.9.3) id QAA03962; Mon, 27 Dec 1999 16:24:22 +0300 (MSK) From: "Alexey M. Zelkin" Message-Id: <199912271324.QAA03962@sonet.crimea.ua> Subject: Re: cvs commit: www/ja revcheck In-Reply-To: <14439.29150.439722.81928B@localhost.sky.rim.or.jp> from Jun Kuriyama at "Dec 27, 99 11:04:14 pm" To: kuriyama@FreeBSD.org (Jun Kuriyama) Date: Mon, 27 Dec 1999 16:24:22 +0300 (MSK) Cc: jkh@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hi, > > My previous commit was essentially a null-commit since cvs just turned > > around and smashed the fix again, something I noticed immediately > > thereafter. The submitter heroically leaped forward with a fix after > > I confessed insufficient ability with perl to make the match regexp work > > correctly myself. :) > > > > Submitted by: Adruin "Adrian" Chadd > > Thanks! This is my second (or more?) fault caused by keyword > expansion... It's not a problem. Just try to test everything immediately after commit. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 7:17:58 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CC19014FCD; Mon, 27 Dec 1999 07:17:55 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA13238; Mon, 27 Dec 1999 07:17:55 -0800 (PST) (envelope-from phantom@FreeBSD.org) Message-Id: <199912271517.HAA13238@freefall.freebsd.org> From: Alexey Zelkin Date: Mon, 27 Dec 1999 07:17:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/rollemup/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phantom 1999/12/27 07:17:53 PST Modified files: games/rollemup/pkg DESCR Log: Add http:// to WWW. It's possible to reach this site from http://www.FreeBSD.org/ports/games.html now Revision Changes Path 1.2 +1 -1 ports/games/rollemup/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 7:30:41 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E5D691504D; Mon, 27 Dec 1999 07:30:38 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA14362; Mon, 27 Dec 1999 07:30:38 -0800 (PST) (envelope-from billf@FreeBSD.org) Message-Id: <199912271530.HAA14362@freefall.freebsd.org> From: Bill Fumerola Date: Mon, 27 Dec 1999 07:30:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/palm/isilo Makefile ports/palm/isilo/pkg COMMENT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1999/12/27 07:30:38 PST Modified files: palm/isilo Makefile palm/isilo/pkg COMMENT Log: A healthy dose of portlint. Approved by: nik Revision Changes Path 1.2 +5 -6 ports/palm/isilo/Makefile 1.2 +1 -1 ports/palm/isilo/pkg/COMMENT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 7:47:32 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 433E114F88; Mon, 27 Dec 1999 07:47:30 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA16350; Mon, 27 Dec 1999 07:47:30 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912271547.HAA16350@freefall.freebsd.org> From: Steve Price Date: Mon, 27 Dec 1999 07:47:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/generic-nqs Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/27 07:47:28 PST Modified files: net/generic-nqs Makefile Log: Use ${SH} to invoke shell scripts since the execute bits aren't set for these files in CVS. Submitted by: maintainer Revision Changes Path 1.5 +5 -5 ports/net/generic-nqs/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 7:50:34 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EED9D15016; Mon, 27 Dec 1999 07:50:32 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA16927; Mon, 27 Dec 1999 07:50:27 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912271550.HAA16927@freefall.freebsd.org> From: Steve Price Date: Mon, 27 Dec 1999 07:50:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/tiff Makefile ports/graphics/tiff/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/27 07:50:26 PST Modified files: graphics/tiff Makefile graphics/tiff/files md5 Log: Update to version 3.5.4. PR: 15718 Submitted by: KATO Tsuguru Revision Changes Path 1.24 +4 -4 ports/graphics/tiff/Makefile 1.10 +1 -1 ports/graphics/tiff/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 7:54:57 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 419D914A06; Mon, 27 Dec 1999 07:54:55 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA17634; Mon, 27 Dec 1999 07:54:55 -0800 (PST) (envelope-from bde@FreeBSD.org) Message-Id: <199912271554.HAA17634@freefall.freebsd.org> From: Bruce Evans Date: Mon, 27 Dec 1999 07:54:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys sysent.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1999/12/27 07:54:54 PST Modified files: sys/sys sysent.h Log: Fixed namespace pollution in rev.1.24 (don't implement here). Fixed long lines. Revision Changes Path 1.26 +6 -5 src/sys/sys/sysent.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 7:55:15 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2FEEA1542E; Mon, 27 Dec 1999 07:55:08 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA17679; Mon, 27 Dec 1999 07:55:08 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912271555.HAA17679@freefall.freebsd.org> From: Steve Price Date: Mon, 27 Dec 1999 07:55:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/tcl82 Makefile ports/x11-toolkits/tk82 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/27 07:55:07 PST Modified files: lang/tcl82 Makefile x11-toolkits/tk82 Makefile Log: Thanks to a repository copy (by Satoshi) of pkg/INSTALL.{tcl,wi}sh from the 8.0.x version of these ports, we are now one step closer to finally being rid of them. Revision Changes Path 1.25 +2 -4 ports/lang/tcl82/Makefile 1.31 +2 -3 ports/x11-toolkits/tk82/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 8: 3:46 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 053A214A2F; Mon, 27 Dec 1999 08:03:45 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA18527; Mon, 27 Dec 1999 08:03:39 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912271603.IAA18527@freefall.freebsd.org> From: Peter Wemm Date: Mon, 27 Dec 1999 08:03:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/miscfs/procfs procfs_status.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/27 08:03:39 PST Modified files: sys/miscfs/procfs procfs_status.c Log: Fix typo "," vs ";" PR: 15696 Submitted by: Takashi Okumura Revision Changes Path 1.20 +2 -2 src/sys/miscfs/procfs/procfs_status.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 8: 5:13 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DF71315142; Mon, 27 Dec 1999 08:05:11 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA18724; Mon, 27 Dec 1999 08:05:11 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912271605.IAA18724@freefall.freebsd.org> From: Peter Wemm Date: Mon, 27 Dec 1999 08:05:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/miscfs/procfs procfs_status.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/27 08:05:11 PST Modified files: (Branch: RELENG_3) sys/miscfs/procfs procfs_status.c Log: MFC Fix typo "," -> ";" PR: 15696 Submitted by: Takashi Okumura Revision Changes Path 1.12.2.3 +2 -2 src/sys/miscfs/procfs/procfs_status.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 8: 6:26 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B6E714A06; Mon, 27 Dec 1999 08:06:24 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA18845; Mon, 27 Dec 1999 08:06:18 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912271606.IAA18845@freefall.freebsd.org> From: Peter Wemm Date: Mon, 27 Dec 1999 08:06:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/miscfs/procfs procfs_status.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/27 08:06:18 PST Modified files: (Branch: RELENG_2_2) sys/miscfs/procfs procfs_status.c Log: MFC: fix typo "," -> ";" PR: 15696 Submitted by: Takashi Okumura Revision Changes Path 1.5.4.2 +2 -2 src/sys/miscfs/procfs/procfs_status.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 8: 7:29 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AF05B14E3C; Mon, 27 Dec 1999 08:07:27 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA18952; Mon, 27 Dec 1999 08:07:27 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912271607.IAA18952@freefall.freebsd.org> From: Peter Wemm Date: Mon, 27 Dec 1999 08:07:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/miscfs/procfs procfs_status.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/27 08:07:27 PST Modified files: (Branch: RELENG_2_1_0) sys/miscfs/procfs procfs_status.c Log: MFC: fix typo "," -> ";" PR: 15696 Submitted by: Takashi Okumura Revision Changes Path 1.4.4.5 +2 -2 src/sys/miscfs/procfs/procfs_status.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 8:22:24 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 58D2914EFF; Mon, 27 Dec 1999 08:22:22 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA20309; Mon, 27 Dec 1999 08:22:22 -0800 (PST) (envelope-from bde@FreeBSD.org) Message-Id: <199912271622.IAA20309@freefall.freebsd.org> From: Bruce Evans Date: Mon, 27 Dec 1999 08:22:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 timeout.9 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1999/12/27 08:22:21 PST Modified files: share/man/man9 timeout.9 Log: Fixed some bugs (one serious one: timeouts were claimed to be executed at spl0) and some bitrot (the not-so-new callout_init/stop/reset functions were not mentioned; the callout_activate/deactivate/pending macros are still not mentioned). Submitted by: mostly by jlemon Revision Changes Path 1.9 +42 -5 src/share/man/man9/timeout.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 9:25:44 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3EB6D15266; Mon, 27 Dec 1999 09:25:43 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA26037; Mon, 27 Dec 1999 09:25:42 -0800 (PST) (envelope-from bde@FreeBSD.org) Message-Id: <199912271725.JAA26037@freefall.freebsd.org> From: Bruce Evans Date: Mon, 27 Dec 1999 09:25:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.libnames.mk Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1999/12/27 09:25:42 PST Modified files: share/mk bsd.libnames.mk Log: Fixed breakage of static linkage of rlogind. Someone added -lutil and -lcom_err to some libpam modules without updating LIBPAM here. Revision Changes Path 1.26 +6 -5 src/share/mk/bsd.libnames.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 9:33:29 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BB32714CF1; Mon, 27 Dec 1999 09:33:26 -0800 (PST) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA26733; Mon, 27 Dec 1999 09:33:26 -0800 (PST) (envelope-from hoek@FreeBSD.org) Message-Id: <199912271733.JAA26733@freefall.freebsd.org> From: Tim Vanderhoek Date: Mon, 27 Dec 1999 09:33:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/more ncommand.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1999/12/27 09:33:26 PST Modified files: usr.bin/more ncommand.c Log: Initialize unitialized variable from prev. commit. Revision Changes Path 1.6 +2 -2 src/usr.bin/more/ncommand.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 10: 3:56 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0905314DF2; Mon, 27 Dec 1999 10:03:55 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA29697; Mon, 27 Dec 1999 10:03:54 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912271803.KAA29697@freefall.freebsd.org> From: Steve Price Date: Mon, 27 Dec 1999 10:03:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/comms/rzsz Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/27 10:03:54 PST Modified files: comms/rzsz Makefile Log: Since this tarball has no version number and it keeps changing, move the distfile to my page and point the port there as the first MASTER_SITE. Revision Changes Path 1.32 +6 -5 ports/comms/rzsz/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 10:53:30 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7263814FA8; Mon, 27 Dec 1999 10:53:27 -0800 (PST) (envelope-from shin@FreeBSD.org) Received: (from shin@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA33592; Mon, 27 Dec 1999 10:53:27 -0800 (PST) (envelope-from shin@FreeBSD.org) Message-Id: <199912271853.KAA33592@freefall.freebsd.org> From: Yoshinobu Inoue Date: Mon, 27 Dec 1999 10:53:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk shin 1999/12/27 10:53:26 PST Modified files: sys/conf files Log: Add ipsec_esp option to files which depend on crypto. Now you can build a kernel which support IPsec message authentication but don't support message encryption, by defining IPSEC in your kernel config file and not defining IPSEC_ESP. Revision Changes Path 1.307 +16 -16 src/sys/conf/files To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 12:53:39 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B3D3E14D56; Mon, 27 Dec 1999 12:53:36 -0800 (PST) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA43356; Mon, 27 Dec 1999 12:53:36 -0800 (PST) (envelope-from hoek@FreeBSD.org) Message-Id: <199912272053.MAA43356@freefall.freebsd.org> From: Tim Vanderhoek Date: Mon, 27 Dec 1999 12:53:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/more linenum.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1999/12/27 12:53:36 PST Modified files: usr.bin/more linenum.c Log: Correctly maintain state when manipulating linked lists. This fixes a bug that prevented the line-number buffer from working correctly. AFAIK the bug is still present in other derivatives of more(1). Revision Changes Path 1.3 +8 -3 src/usr.bin/more/linenum.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 12:58:26 1999 Delivered-To: cvs-all@freebsd.org Received: from shadowmere.student.utwente.nl (wit401305.student.utwente.nl [130.89.236.145]) by hub.freebsd.org (Postfix) with ESMTP id DCA4914D62; Mon, 27 Dec 1999 12:58:22 -0800 (PST) (envelope-from daeron@Wit401305.student.utwente.nl) Received: by shadowmere.student.utwente.nl (Postfix, from userid 1000) id 75BD61FD4; Mon, 27 Dec 1999 21:58:21 +0100 (CET) Date: Mon, 27 Dec 1999 21:58:21 +0100 From: Pascal Hofstee To: John Polstra Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/include dlfcn.h src/lib/libc/gen dllockinit.3 Makefile.inc dlfcn.c src/libexec/rtld-elf lockdflt.c Makefile debug.h rtld.c rtld.h src/libexec/rtld-elf/alpha reloc.c src/libexec/rtld-elf/i386 reloc.c Message-ID: <19991227215821.A4497@shadowmere.student.utwente.nl> References: <199912270444.UAA01884@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <199912270444.UAA01884@freefall.freebsd.org>; from jdp@FreeBSD.org on Sun, Dec 26, 1999 at 08:44:04PM -0800 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, Dec 26, 1999 at 08:44:04PM -0800, John Polstra wrote: > jdp 1999/12/26 20:44:04 PST > > Modified files: > include dlfcn.h > lib/libc/gen Makefile.inc dlfcn.c > libexec/rtld-elf Makefile debug.h rtld.c rtld.h > libexec/rtld-elf/alpha reloc.c > libexec/rtld-elf/i386 reloc.c > Added files: > lib/libc/gen dllockinit.3 > libexec/rtld-elf lockdflt.c > Log: > Add a new function dllockinit() for registering thread locking > functions to be used by the dynamic linker. This can be called by > threads packages at start-up time. I will add the call to libc_r > soon. > > Also add a default locking method that is used up until dllockinit() > is called. The default method works by blocking SIGVTALRM, SIGPROF, > and SIGALRM in critical sections. It is based on the observation > that most user-space threads packages implement thread preemption > with one of these signals (usually SIGVTALRM). > > The dynamic linker has never been reentrant, but it became less > reentrant in revision 1.34 of "src/libexec/rtld-elf/rtld.c". > Starting with that revision, multiple threads each doing lazy > binding could interfere with each other. The usual symptom was > that a symbol was falsely reported as undefined at start-up time. > It was rare but not unseen. This commit fixes it. With a buildworld of CURRENT that has this commit included (built earlier today) I get the following error when trying to run applications that use the pthread-functionality, like Mozilla and Licq. ld-elf.so.1: assert failed: /usr/src/libexec/rtld-elf/lockdflt.c:55 Abort trap (core dumped) -- -------------------- Pascal Hofstee - daeron@shadowmere.student.utwente.nl -----BEGIN GEEK CODE BLOCK----- Version: 3.1 GCS d- s+: a-- C++ UB++++ P+ L- E--- W- N+ o? K- w--- O? M V? PS+ PE Y-- PGP-- t+ 5 X-- R tv+ b+ DI D- G e* h+ r- y+ ------END GEEK CODE BLOCK------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 13:26:53 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6370414FAA; Mon, 27 Dec 1999 13:26:47 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA47761; Mon, 27 Dec 1999 13:26:47 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912272126.NAA47761@freefall.freebsd.org> From: Steve Price Date: Mon, 27 Dec 1999 13:26:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/gd Makefile ports/graphics/gd/patches patch-ac ports/graphics/gd/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/27 13:26:46 PST Modified files: graphics/gd Makefile graphics/gd/patches patch-ac graphics/gd/pkg PLIST Log: Build and install the shared library again. PR: 15313 Submitted by: Ade Lovett Revision Changes Path 1.16 +4 -1 ports/graphics/gd/Makefile 1.3 +42 -5 ports/graphics/gd/patches/patch-ac 1.7 +4 -0 ports/graphics/gd/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 Dec 27 13:28:33 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C90B814DB6; Mon, 27 Dec 1999 13:28:30 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA48176; Mon, 27 Dec 1999 13:28:30 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912272128.NAA48176@freefall.freebsd.org> From: Steve Price Date: Mon, 27 Dec 1999 13:28:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/german/webalizer Makefile ports/graphics/g2 Makefile ports/math/gnuplot Makefile ports/math/gnuplot+ Makefile ports/www/http-analyze Makefile ports/net/mrtg Makefile ports/graphics/p5-GD Makefile ports/graphics/png2html Makefile ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/27 13:28:30 PST Modified files: german/webalizer Makefile graphics/g2 Makefile math/gnuplot Makefile math/gnuplot+ Makefile www/http-analyze Makefile net/mrtg Makefile graphics/p5-GD Makefile graphics/png2html Makefile graphics/tgd Makefile www/webalizer Makefile graphics/xbm2gif Makefile Log: These ports now need 'LIB_DEPENDS=gd.0:...'. Revision Changes Path 1.8 +2 -2 ports/german/webalizer/Makefile 1.7 +2 -2 ports/graphics/g2/Makefile 1.27 +3 -3 ports/math/gnuplot/Makefile 1.7 +3 -3 ports/math/gnuplot+/Makefile 1.9 +2 -2 ports/www/http-analyze/Makefile 1.18 +2 -2 ports/net/mrtg/Makefile 1.10 +2 -2 ports/graphics/p5-GD/Makefile 1.3 +3 -3 ports/graphics/png2html/Makefile 1.8 +2 -2 ports/graphics/tgd/Makefile 1.13 +2 -2 ports/www/webalizer/Makefile 1.4 +2 -2 ports/graphics/xbm2gif/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 13:29:56 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E6FE014D02; Mon, 27 Dec 1999 13:29:54 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA48418; Mon, 27 Dec 1999 13:29:54 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912272129.NAA48418@freefall.freebsd.org> From: Steve Price Date: Mon, 27 Dec 1999 13:29:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/thttpd Makefile ports/www/thttpd/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/27 13:29:54 PST Modified files: www/thttpd Makefile www/thttpd/files md5 Log: Update to version 2.11. PR: 15722 Submitted by: maintainer Revision Changes Path 1.5 +3 -3 ports/www/thttpd/Makefile 1.4 +1 -1 ports/www/thttpd/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 13:31:55 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0623614CF1; Mon, 27 Dec 1999 13:31:53 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA48762; Mon, 27 Dec 1999 13:31:51 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912272131.NAA48762@freefall.freebsd.org> From: Steve Price Date: Mon, 27 Dec 1999 13:31:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/gxditview Makefile ports/japanese/gxditview/files md5 ports/japanese/gxditview/patches patch-ab ports/japanese/gxditview/pkg COMMENT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/27 13:31:51 PST Modified files: japanese/gxditview Makefile japanese/gxditview/files md5 japanese/gxditview/pkg COMMENT Added files: japanese/gxditview/patches patch-ab Log: Updated to version 1.11.1+0.99.1.1 PR: 15721 Submitted by: KATO Tsuguru Revision Changes Path 1.17 +8 -8 ports/japanese/gxditview/Makefile 1.3 +3 -2 ports/japanese/gxditview/files/md5 1.3 +1 -1 ports/japanese/gxditview/pkg/COMMENT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 13:36: 1 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6125014C45; Mon, 27 Dec 1999 13:35:56 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA49289; Mon, 27 Dec 1999 13:35:56 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912272135.NAA49289@freefall.freebsd.org> From: Steve Price Date: Mon, 27 Dec 1999 13:35:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/fspclient Makefile ports/net/fspclient/files md5 ports/net/fspclient/patches patch-ae patch-af patch-ag patch-ah patch-ai patch-aj patch-ak patch-aa patch-ab patch-ac patch-ad Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/27 13:35:55 PST Modified files: net/fspclient Makefile net/fspclient/files md5 Added files: net/fspclient/patches patch-ae patch-af patch-ag patch-ah patch-ai patch-aj patch-ak Removed files: net/fspclient/patches patch-aa patch-ab patch-ac patch-ad Log: * Fixup MASTER_SITES * Split patches one file per patch * Whitespace nits PR: 15720 Submitted by: KATO Tsuguru Revision Changes Path 1.14 +10 -10 ports/net/fspclient/Makefile 1.2 +1 -1 ports/net/fspclient/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 13:38: 8 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2402D14FBD; Mon, 27 Dec 1999 13:38:06 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA49609; Mon, 27 Dec 1999 13:38:06 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912272138.NAA49609@freefall.freebsd.org> From: Steve Price Date: Mon, 27 Dec 1999 13:38:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/libU77 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/27 13:38:05 PST Modified files: devel/libU77 Makefile Log: * Fixed MASTER_SITES * Whitespace nits PR: 15717 Submitted by: KATO Tsuguru Revision Changes Path 1.4 +9 -9 ports/devel/libU77/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 13:39:28 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ADA4D15076; Mon, 27 Dec 1999 13:39:26 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA49822; Mon, 27 Dec 1999 13:39:26 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912272139.NAA49822@freefall.freebsd.org> From: Steve Price Date: Mon, 27 Dec 1999 13:39:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/gettext/patches patch-aj Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/27 13:39:26 PST Added files: devel/gettext/patches patch-aj Log: Don't try and use aclocal or automake even if they are present since they break the build of this port. PR: 15716 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 13:41:24 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6045A1501B; Mon, 27 Dec 1999 13:41:19 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA50194; Mon, 27 Dec 1999 13:41:19 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912272141.NAA50194@freefall.freebsd.org> From: Steve Price Date: Mon, 27 Dec 1999 13:41:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/dante Makefile ports/net/dante/files md5 ports/net/dante/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/27 13:41:18 PST Modified files: net/dante Makefile net/dante/files md5 Removed files: net/dante/patches patch-aa Log: Update to version 1.1.1-pre1. PR: 15715 Submitted by: maintainer Revision Changes Path 1.2 +3 -2 ports/net/dante/Makefile 1.2 +1 -1 ports/net/dante/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 13:43:41 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C8E315022; Mon, 27 Dec 1999 13:43:35 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA50633; Mon, 27 Dec 1999 13:43:35 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912272143.NAA50633@freefall.freebsd.org> From: Steve Price Date: Mon, 27 Dec 1999 13:43:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/smalltalk Makefile ports/lang/smalltalk/files md5 ports/lang/smalltalk/patches patch-aa patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-aj ports/lang/smalltalk/pkg DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/27 13:43:35 PST Modified files: lang/smalltalk Makefile lang/smalltalk/files md5 lang/smalltalk/patches patch-aa patch-ab patch-ac patch-ad lang/smalltalk/pkg DESCR PLIST Removed files: lang/smalltalk/patches patch-ae patch-af patch-ag patch-ah patch-ai patch-aj Log: Update to version 1.6.2. PR: 15712 Submitted by: maintainer Revision Changes Path 1.21 +6 -34 ports/lang/smalltalk/Makefile 1.3 +1 -1 ports/lang/smalltalk/files/md5 1.3 +18 -15 ports/lang/smalltalk/patches/patch-aa 1.4 +30 -11 ports/lang/smalltalk/patches/patch-ab 1.3 +21 -35 ports/lang/smalltalk/patches/patch-ac 1.3 +11 -19 ports/lang/smalltalk/patches/patch-ad 1.3 +6 -5 ports/lang/smalltalk/pkg/DESCR 1.4 +292 -126 ports/lang/smalltalk/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 Dec 27 13:47:18 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 394E11501B; Mon, 27 Dec 1999 13:47:16 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA51137; Mon, 27 Dec 1999 13:47:16 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912272147.NAA51137@freefall.freebsd.org> From: Steve Price Date: Mon, 27 Dec 1999 13:47:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/waveplay Makefile ports/audio/waveplay/patches patch-aa patch-ab patch-ac Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/27 13:47:15 PST Modified files: audio/waveplay Makefile Added files: audio/waveplay/patches patch-aa patch-ab patch-ac Log: Add support for FreeBSD/Alpha and minor tweaks to Makefile. PR: 15710 Submitted by: maintainer Revision Changes Path 1.3 +3 -6 ports/audio/waveplay/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 13:49: 9 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C9F6314A31; Mon, 27 Dec 1999 13:49:07 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA51432; Mon, 27 Dec 1999 13:49:07 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912272149.NAA51432@freefall.freebsd.org> From: Steve Price Date: Mon, 27 Dec 1999 13:49:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/nessus Makefile ports/security/nessus/files md5 ports/security/nessus/patches patch-ag ports/security/nessus/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/27 13:49:07 PST Modified files: security/nessus Makefile security/nessus/files md5 security/nessus/patches patch-ag security/nessus/pkg PLIST Log: Update to version 0.99.2 PR: 15714 (1 of 4) Submitted by: maintainer Revision Changes Path 1.6 +5 -5 ports/security/nessus/Makefile 1.3 +1 -1 ports/security/nessus/files/md5 1.2 +16 -13 ports/security/nessus/patches/patch-ag 1.3 +4 -4 ports/security/nessus/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 Dec 27 13:50:18 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BC61515155; Mon, 27 Dec 1999 13:50:16 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA51642; Mon, 27 Dec 1999 13:50:16 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912272150.NAA51642@freefall.freebsd.org> From: Steve Price Date: Mon, 27 Dec 1999 13:50:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/nessus-libnasl Makefile ports/security/nessus-libnasl/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/27 13:50:16 PST Modified files: security/nessus-libnasl Makefile security/nessus-libnasl/files md5 Log: Update to version 0.99.2. PR: 15714 (2 of 4) Submitted by: maintainer Revision Changes Path 1.3 +4 -4 ports/security/nessus-libnasl/Makefile 1.2 +1 -1 ports/security/nessus-libnasl/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 13:51:57 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4740B14DB6; Mon, 27 Dec 1999 13:51:54 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA51856; Mon, 27 Dec 1999 13:51:54 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912272151.NAA51856@freefall.freebsd.org> From: Steve Price Date: Mon, 27 Dec 1999 13:51:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/nessus-libraries Makefile ports/security/nessus-libraries/files md5 ports/security/nessus-libraries/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/27 13:51:54 PST Modified files: security/nessus-libraries Makefile security/nessus-libraries/files md5 security/nessus-libraries/pkg PLIST Log: Update to version 0.99.2. PR: 15714 (3 of 4) Submitted by: maintainer Revision Changes Path 1.3 +3 -3 ports/security/nessus-libraries/Makefile 1.3 +1 -1 ports/security/nessus-libraries/files/md5 1.2 +1 -1 ports/security/nessus-libraries/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 Dec 27 13:54: 9 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 41A2615015; Mon, 27 Dec 1999 13:54:06 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA52169; Mon, 27 Dec 1999 13:54:06 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912272154.NAA52169@freefall.freebsd.org> From: Steve Price Date: Mon, 27 Dec 1999 13:54:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/nessus-plugins Makefile ports/security/nessus-plugins/files md5 ports/security/nessus-plugins/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/27 13:54:05 PST Modified files: security/nessus-plugins Makefile security/nessus-plugins/files md5 security/nessus-plugins/pkg PLIST Log: Update to version 0.99.2. NOTE: I added a BUILD and RUN_DEPENDS on the nmap port otherwise the build fell over despite the configure script saying that it would continue without it. PR: 15714 (4 of 4) Submitted by: maintainer Revision Changes Path 1.4 +5 -3 ports/security/nessus-plugins/Makefile 1.3 +1 -1 ports/security/nessus-plugins/files/md5 1.3 +48 -22 ports/security/nessus-plugins/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 Dec 27 14: 6:11 1999 Delivered-To: cvs-all@freebsd.org Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.133]) by hub.freebsd.org (Postfix) with ESMTP id 337C3150F6; Mon, 27 Dec 1999 14:06:03 -0800 (PST) (envelope-from mark@grondar.za) Received: from grondar.za (localhost [127.0.0.1]) by gratis.grondar.za (8.10.0.Beta6/8.10.0.Beta6) with ESMTP id dBRM60338704; Tue, 28 Dec 1999 00:06:00 +0200 (SAST) Message-Id: <199912272206.dBRM60338704@gratis.grondar.za> To: Bruce Evans Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.libnames.mk Date: Tue, 28 Dec 1999 00:06:00 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > bde 1999/12/27 09:25:42 PST > > Modified files: > share/mk bsd.libnames.mk > Log: > Fixed breakage of static linkage of rlogind. Someone added -lutil and > -lcom_err to some libpam modules without updating LIBPAM here. > > Revision Changes Path > 1.26 +6 -5 src/share/mk/bsd.libnames.mk Send-hatemail-to: markm M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 14:13:10 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F2B4014EA0; Mon, 27 Dec 1999 14:13:07 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA54284; Mon, 27 Dec 1999 14:13:07 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912272213.OAA54284@freefall.freebsd.org> From: Steve Price Date: Mon, 27 Dec 1999 14:13:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/apache13-php3/scripts configure.php ports/www/apache13-php4/scripts configure.php Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/27 14:13:07 PST Modified files: www/apache13-php3/scripts configure.php www/apache13-php4/scripts configure.php Log: A couple of more ports that now need to LIB_DEPEND on the gd port. Noticed by: Ade Lovett Revision Changes Path 1.67 +1 -1 ports/www/apache13-php3/scripts/configure.php 1.70 +1 -1 ports/www/apache13-php4/scripts/configure.php To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 15:15:25 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 01DD815076; Mon, 27 Dec 1999 15:15:23 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA59768; Mon, 27 Dec 1999 15:15:22 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912272315.PAA59768@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Mon, 27 Dec 1999 15:15:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/gracer Makefile ports/games/gracer/files md5 ports/games/gracer/patches patch-ab patch-aa ports/games/gracer/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/27 15:15:21 PST Modified files: games/gracer Makefile games/gracer/files md5 games/gracer/patches patch-aa games/gracer/pkg COMMENT DESCR PLIST Added files: games/gracer/patches patch-ab Log: Update port to 0.1.4 Add sound support PR: 15141 Submitted by: Maintainer Revision Changes Path 1.4 +7 -3 ports/games/gracer/Makefile 1.3 +1 -1 ports/games/gracer/files/md5 1.3 +5 -5 ports/games/gracer/patches/patch-aa 1.2 +1 -1 ports/games/gracer/pkg/COMMENT 1.2 +3 -6 ports/games/gracer/pkg/DESCR 1.3 +4 -0 ports/games/gracer/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 Dec 27 16:56:11 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 30DD2152CC; Mon, 27 Dec 1999 16:56:10 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA68122; Mon, 27 Dec 1999 16:56:10 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912280056.QAA68122@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Mon, 27 Dec 1999 16:56:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/pngcrush Makefile ports/graphics/pngcrush/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/27 16:56:09 PST Modified files: graphics/pngcrush Makefile graphics/pngcrush/files md5 Log: Update port to 1.3.1 Revision Changes Path 1.2 +3 -3 ports/graphics/pngcrush/Makefile 1.2 +1 -1 ports/graphics/pngcrush/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 17: 7:19 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C94E8150B7; Mon, 27 Dec 1999 17:07:17 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA69112; Mon, 27 Dec 1999 17:07:17 -0800 (PST) (envelope-from imp@FreeBSD.org) Message-Id: <199912280107.RAA69112@freefall.freebsd.org> From: Warner Losh Date: Mon, 27 Dec 1999 17:07:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sn if_sn.c if_sn_isa.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk imp 1999/12/27 17:07:17 PST Modified files: sys/dev/sn if_sn.c if_sn_isa.c Log: Two nits and disable isa probe due to its overly agressive claiming of devices. o Return ENXIO from sn_isa_probe o Fix SN_DEBUG printf o Use IFQ_MAXLEN rather than 8 I'll fix the isa probe when I get access to a real isa attachment device to test against here in a few days. Overly agressive snagging behavior noticed by: phk Revision Changes Path 1.5 +3 -4 src/sys/dev/sn/if_sn.c 1.2 +3 -2 src/sys/dev/sn/if_sn_isa.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 17:12:37 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E850B152CC; Mon, 27 Dec 1999 17:12:35 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA69618; Mon, 27 Dec 1999 17:12:35 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Message-Id: <199912280112.RAA69618@freefall.freebsd.org> From: Jun Kuriyama Date: Mon, 27 Dec 1999 17:12:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/flim-xemacs Makefile ports/editors/flim-xemacs-current Makefile ports/editors/flim-xemacs-mule Makefile ports/editors/flim-xemacs-mule-current Makefile ports/editors/flim-xemacs20 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1999/12/27 17:12:35 PST Modified files: editors/flim-xemacs Makefile editors/flim-xemacs-current Makefile editors/flim-xemacs-mule Makefile editors/flim-xemacs-mule-current Makefile editors/flim-xemacs20 Makefile Log: Fix "Version required:" header. Revision Changes Path 1.4 +2 -2 ports/editors/flim-xemacs/Makefile 1.5 +2 -2 ports/editors/flim-xemacs-current/Makefile 1.11 +2 -2 ports/editors/flim-xemacs-mule/Makefile 1.11 +2 -2 ports/editors/flim-xemacs-mule-current/Makefile 1.4 +2 -2 ports/editors/flim-xemacs20/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 17:30:25 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 53AF314E90; Mon, 27 Dec 1999 17:30:23 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA71228; Mon, 27 Dec 1999 17:30:23 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912280130.RAA71228@freefall.freebsd.org> From: Steve Price Date: Mon, 27 Dec 1999 17:30:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports LEGAL Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/27 17:30:22 PST Modified files: . LEGAL Log: Note that the librc4 port is export controlled. Revision Changes Path 1.154 +2 -1 ports/LEGAL To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 17:43:53 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F78314EBA; Mon, 27 Dec 1999 17:43:51 -0800 (PST) (envelope-from nakai@FreeBSD.org) Received: (from nakai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA72566; Mon, 27 Dec 1999 17:43:51 -0800 (PST) (envelope-from nakai@FreeBSD.org) Message-Id: <199912280143.RAA72566@freefall.freebsd.org> From: Yukihiro Nakai Date: Mon, 27 Dec 1999 17:43:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/icewm Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nakai 1999/12/27 17:43:50 PST Modified files: x11-wm/icewm Makefile Log: Add more MASTER_SITE. Submitted by: Dirk Froemberg Revision Changes Path 1.47 +3 -2 ports/x11-wm/icewm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 18: 1:24 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2757F14D1F; Mon, 27 Dec 1999 18:01:20 -0800 (PST) (envelope-from wpaul@FreeBSD.org) Received: (from wpaul@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA74725; Mon, 27 Dec 1999 18:01:19 -0800 (PST) (envelope-from wpaul@FreeBSD.org) Message-Id: <199912280201.SAA74725@freefall.freebsd.org> From: Bill Paul Date: Mon, 27 Dec 1999 18:01:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb if_aue.c if_auereg.h usb_quirks.c usb_quirks.h usbdevs usbdevs.h usbdevs_data.h usbdi.c src/sys/modules Makefile src/sys/modules/aue Makefile src/sys/i386/conf GENERIC LINT NEWCARD PCCARD src/sys/i386/i386 ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wpaul 1999/12/27 18:01:19 PST Modified files: sys/dev/usb usb_quirks.c usb_quirks.h usbdevs usbdevs.h usbdevs_data.h usbdi.c sys/modules Makefile sys/i386/conf GENERIC LINT NEWCARD PCCARD sys/i386/i386 userconfig.c sys/alpha/conf GENERIC release/sysinstall devices.c release/texts/alpha HARDWARE.TXT RELNOTES.TXT release/texts/i386 HARDWARE.TXT RELNOTES.TXT share/man/man4 Makefile sys/conf files sys/boot/forth loader.conf Added files: sys/dev/usb if_aue.c if_auereg.h sys/modules/aue Makefile share/man/man4 aue.4 Log: This commit adds device driver support for the ADMtek AN986 Pegasus USB ethernet chip. Adapters that use this chip include the LinkSys USB100TX. There are a few others, but I'm not certain of their availability in the U.S. I used an ADMtek eval board for development. Note that while the ADMtek chip is a 100Mbps device, you can't really get 100Mbps speeds over USB. Regardless, this driver uses miibus to allow speed and duplex mode selection as well as autonegotiation. Building and kldloading the driver as a module is also supported. Note that in order to make this driver work, I had to make what some may consider an ugly hack to sys/dev/usb/usbdi.c. The usbd_transfer() function will use tsleep() for synchronous transfers that don't complete right away. This is a problem since there are times when we need to do sync transfers from an interrupt context (i.e. when reading registers from the MAC via the control endpoint), where tsleep() us a no-no. My hack allows the driver to have the code poll for transfer completion subject to the xfer->timeout timeout rather that calling tsleep(). This hack is controlled by a quirk entry and is only enabled for the ADMtek device. Now, I'm sure there are a few of you out there ready to jump on me and suggest some other approach that doesn't involve a busy wait. The only solution that might work is to handle the interrupts in a kernel thread, where you may have something resembling a process context that makes it okay to tsleep(). This is lovely, except we don't have any mechanism like that now, and I'm not about to implement such a thing myself since it's beyond the scope of driver development. (Translation: I'll be damned if I know how to do it.) If FreeBSD ever aquires such a mechanism, I'll be glad to revisit the driver to take advantage of it. In the meantime, I settled for what I perceived to be the solution that involved the least amount of code changes. In general, the hit is pretty light. Also note that my only USB test box has a UHCI controller: I haven't I don't have a machine with an OHCI controller available. Highlights: - Updated usb_quirks.* to add UQ_NO_TSLEEP quirk for ADMtek part. - Updated usbdevs and regenerated generated files - Updated HARDWARE.TXT and RELNOTES.TXT files - Updated sysinstall/device.c and userconfig.c - Updated kernel configs -- device aue0 is commented out by default - Updated /sys/conf/files - Added new kld module directory Revision Changes Path 1.15 +5 -1 src/sys/dev/usb/usb_quirks.c 1.11 +3 -1 src/sys/dev/usb/usb_quirks.h 1.2 +13 -1 src/sys/dev/usb/usbdevs 1.24 +13 -5 src/sys/dev/usb/usbdevs.h 1.24 +39 -15 src/sys/dev/usb/usbdevs_data.h 1.30 +15 -2 src/sys/dev/usb/usbdi.c 1.100 +3 -3 src/sys/modules/Makefile 1.220 +2 -1 src/sys/i386/conf/GENERIC 1.706 +5 -1 src/sys/i386/conf/LINT 1.12 +2 -1 src/sys/i386/conf/NEWCARD 1.37 +2 -1 src/sys/i386/conf/PCCARD 1.165 +3 -2 src/sys/i386/i386/userconfig.c 1.56 +2 -1 src/sys/alpha/conf/GENERIC 1.112 +2 -1 src/release/sysinstall/devices.c 1.7 +4 -0 src/release/texts/alpha/HARDWARE.TXT 1.12 +15 -3 src/release/texts/alpha/RELNOTES.TXT 1.30 +4 -0 src/release/texts/i386/HARDWARE.TXT 1.45 +15 -3 src/release/texts/i386/RELNOTES.TXT 1.68 +2 -2 src/share/man/man4/Makefile 1.308 +2 -1 src/sys/conf/files 1.22 +2 -2 src/sys/boot/forth/loader.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 18:25:47 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4BD4D14EA7; Mon, 27 Dec 1999 18:25:43 -0800 (PST) (envelope-from nakai@FreeBSD.org) Received: (from nakai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA76917; Mon, 27 Dec 1999 18:25:43 -0800 (PST) (envelope-from nakai@FreeBSD.org) Message-Id: <199912280225.SAA76917@freefall.freebsd.org> From: Yukihiro Nakai Date: Mon, 27 Dec 1999 18:25:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nakai 1999/12/27 18:25:43 PST Modified files: . modules Log: gnomepilot --> ports/palm/gnomepilot Revision Changes Path 1.714 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 18:26:44 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A045E14CC1; Mon, 27 Dec 1999 18:26:42 -0800 (PST) (envelope-from nakai@FreeBSD.org) Received: (from nakai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA77004; Mon, 27 Dec 1999 18:26:41 -0800 (PST) (envelope-from nakai@FreeBSD.org) Message-Id: <199912280226.SAA77004@freefall.freebsd.org> From: Yukihiro Nakai Date: Mon, 27 Dec 1999 18:26:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/palm/gnomepilot - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nakai 1999/12/27 18:26:40 PST ports/palm/gnomepilot - Imported sources Update of /home/ncvs/ports/palm/gnomepilot In directory freefall.freebsd.org:/c/users/nakai/gnomepilot Log Message: New ports GNOME communication tool for palm pilot. PR: ports/15727 Submitted by: Ade Lovett Status: Vendor Tag: ADE_LOVETT Release Tags: v0_1_46 N ports/palm/gnomepilot/Makefile N ports/palm/gnomepilot/files/md5 N ports/palm/gnomepilot/pkg/DESCR N ports/palm/gnomepilot/pkg/COMMENT N ports/palm/gnomepilot/pkg/PLIST N ports/palm/gnomepilot/patches/patch-aa N ports/palm/gnomepilot/patches/patch-ab N ports/palm/gnomepilot/patches/patch-ac N ports/palm/gnomepilot/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 Mon Dec 27 18:27:45 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5029C14EA0; Mon, 27 Dec 1999 18:27:43 -0800 (PST) (envelope-from nakai@FreeBSD.org) Received: (from nakai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA77137; Mon, 27 Dec 1999 18:27:43 -0800 (PST) (envelope-from nakai@FreeBSD.org) Message-Id: <199912280227.SAA77137@freefall.freebsd.org> From: Yukihiro Nakai Date: Mon, 27 Dec 1999 18:27:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/palm Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nakai 1999/12/27 18:27:42 PST Modified files: palm Makefile Log: Add gnomepilot entry. Revision Changes Path 1.9 +2 -1 ports/palm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 18:28: 5 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0428B15510; Mon, 27 Dec 1999 18:28:03 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA77286; Mon, 27 Dec 1999 18:28:02 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Message-Id: <199912280228.SAA77286@freefall.freebsd.org> From: Jun Kuriyama Date: Mon, 27 Dec 1999 18:28:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/semi-xemacs-mule Makefile ports/editors/semi-xemacs20 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1999/12/27 18:28:02 PST Modified files: editors/semi-xemacs-mule Makefile editors/semi-xemacs20 Makefile Log: Fix "Version required:" header. Revision Changes Path 1.11 +2 -2 ports/editors/semi-xemacs-mule/Makefile 1.4 +2 -2 ports/editors/semi-xemacs20/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 18:32:26 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B75914CC1; Mon, 27 Dec 1999 18:32:24 -0800 (PST) (envelope-from nakai@FreeBSD.org) Received: (from nakai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA77869; Mon, 27 Dec 1999 18:32:24 -0800 (PST) (envelope-from nakai@FreeBSD.org) Message-Id: <199912280232.SAA77869@freefall.freebsd.org> From: Yukihiro Nakai Date: Mon, 27 Dec 1999 18:32:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/libxml Makefile ports/textproc/libxml/files md5 ports/textproc/libxml/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nakai 1999/12/27 18:32:23 PST Modified files: textproc/libxml Makefile textproc/libxml/files md5 textproc/libxml/pkg PLIST Log: Update to 1.8.2 PR: ports/15725 Submitted by: Ade Lovett Revision Changes Path 1.15 +3 -3 ports/textproc/libxml/Makefile 1.11 +1 -1 ports/textproc/libxml/files/md5 1.8 +0 -1 ports/textproc/libxml/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 Dec 27 18:37:19 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 002A114A1F; Mon, 27 Dec 1999 18:37:15 -0800 (PST) (envelope-from shin@FreeBSD.org) Received: (from shin@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA78663; Mon, 27 Dec 1999 18:37:15 -0800 (PST) (envelope-from shin@FreeBSD.org) Message-Id: <199912280237.SAA78663@freefall.freebsd.org> From: Yoshinobu Inoue Date: Mon, 27 Dec 1999 18:37:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet6 in6_prefix.c src/sbin Makefile src/include netdb.h resolv.h src/lib/libc/net getaddrinfo.3 getaddrinfo.c getipnodebyname.3 getnameinfo.3 getnameinfo.c name6.c Makefile.inc res_init.c src/sbin/ping6 Makefile ping6.8 ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk shin 1999/12/27 18:37:15 PST Modified files: sys/netinet6 in6_prefix.c sbin Makefile include netdb.h resolv.h lib/libc/net Makefile.inc res_init.c usr.bin/netstat Makefile inet6.c main.c route.c Added files: lib/libc/net getaddrinfo.3 getaddrinfo.c getipnodebyname.3 getnameinfo.3 getnameinfo.c name6.c sbin/ping6 Makefile ping6.8 ping6.c sbin/rtsol Makefile usr.sbin/gifconfig Makefile gifconfig.8 gifconfig.c usr.sbin/ifmcstat Makefile ifmcstat.8 ifmcstat.c usr.sbin/prefix Makefile prefix.8 prefix.c usr.sbin/rip6query Makefile rip6query.8 rip6query.c usr.sbin/route6d Makefile route6d.8 route6d.c route6d.h usr.sbin/route6d/misc chkrt cksum.c usr.sbin/rtsold Makefile dump.c if.c probe.c rtsol.c rtsold.8 rtsold.c rtsold.h usr.sbin/traceroute6 Makefile traceroute6.8 traceroute6.c Log: Getaddrinfo(), getnameinfo(), and etc support in libc/net. Several udp and raw apps IPv6 support. Reviewed by: freebsd-arch, cvs-committers Obtained from: KAME project Revision Changes Path 1.3 +2 -2 src/sys/netinet6/in6_prefix.c 1.75 +3 -1 src/sbin/Makefile 1.13 +78 -1 src/include/netdb.h 1.19 +20 -1 src/include/resolv.h 1.31 +11 -5 src/lib/libc/net/Makefile.inc 1.19 +60 -1 src/lib/libc/net/res_init.c 1.12 +2 -2 src/usr.bin/netstat/Makefile 1.2 +3 -12 src/usr.bin/netstat/inet6.c 1.31 +2 -2 src/usr.bin/netstat/main.c 1.40 +9 -35 src/usr.bin/netstat/route.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 18:44:46 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EC71615350; Mon, 27 Dec 1999 18:44:44 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA79825; Mon, 27 Dec 1999 18:44:44 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912280244.SAA79825@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Mon, 27 Dec 1999 18:44:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/27 18:44:44 PST Modified files: . modules Log: muse --> ports/sysutils/muse Revision Changes Path 1.715 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 18:45:48 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 718D014E90; Mon, 27 Dec 1999 18:45:46 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA80049; Mon, 27 Dec 1999 18:45:46 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912280245.SAA80049@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Mon, 27 Dec 1999 18:45:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/muse - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/27 18:45:45 PST ports/sysutils/muse - Imported sources Update of /home/ncvs/ports/sysutils/muse In directory freefall.freebsd.org:/c/users/jedgar/work/muse Log Message: This is muse, which lists out memory usage categorized by Active, Inactive, Wired, Reserved, Cache, Buffer, Total, and Free in a manner more friendly and verbose than vmstat and without as much clutter as Top. It is inspired in part by top(1), OS9's mfree, Linux's free, and DOS's mem /c PR: 15731 Submitted by: Nick Johnson Status: Vendor Tag: NICK Release Tags: v_0_1 N ports/sysutils/muse/Makefile N ports/sysutils/muse/files/md5 N ports/sysutils/muse/pkg/COMMENT N ports/sysutils/muse/pkg/DESCR N ports/sysutils/muse/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 18:46:42 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 41ADD14A04; Mon, 27 Dec 1999 18:46:41 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA80165; Mon, 27 Dec 1999 18:46:41 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912280246.SAA80165@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Mon, 27 Dec 1999 18:46:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/27 18:46:41 PST Modified files: sysutils Makefile Log: Activate muse Revision Changes Path 1.93 +2 -1 ports/sysutils/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 18:50:59 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B124714C08; Mon, 27 Dec 1999 18:50:57 -0800 (PST) (envelope-from nakai@FreeBSD.org) Received: (from nakai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA80814; Mon, 27 Dec 1999 18:50:57 -0800 (PST) (envelope-from nakai@FreeBSD.org) Message-Id: <199912280250.SAA80814@freefall.freebsd.org> From: Yukihiro Nakai Date: Mon, 27 Dec 1999 18:50:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/gnomecore Makefile ports/x11/gnomecore/files md5 ports/x11/gnomecore/patches patch-ae ports/x11/gnomecore/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nakai 1999/12/27 18:50:57 PST Modified files: x11/gnomecore Makefile x11/gnomecore/files md5 x11/gnomecore/patches patch-ae x11/gnomecore/pkg PLIST Log: Update to 1.0.55 PR: ports/15726 Submitted by: Ade Lovett Revision Changes Path 1.31 +4 -4 ports/x11/gnomecore/Makefile 1.15 +1 -1 ports/x11/gnomecore/files/md5 1.16 +56 -2 ports/x11/gnomecore/patches/patch-ae 1.15 +67 -0 ports/x11/gnomecore/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 Dec 27 18:59:44 1999 Delivered-To: cvs-all@freebsd.org Received: from mta2.snfc21.pbi.net (mta2.snfc21.pbi.net [206.13.28.123]) by hub.freebsd.org (Postfix) with ESMTP id 422D914A04; Mon, 27 Dec 1999 18:59:39 -0800 (PST) (envelope-from jazepeda@pacbell.net) Received: from zippy.dyn.ml.org ([207.214.149.110]) by mta2.snfc21.pbi.net (Sun Internet Mail Server sims.3.5.1999.09.16.21.57.p8) with ESMTP id <0FNF00MT3K69VO@mta2.snfc21.pbi.net>; Mon, 27 Dec 1999 18:56:50 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by zippy.dyn.ml.org (Postfix) with ESMTP id F1B079183A; Mon, 27 Dec 1999 18:56:29 -0800 (PST) Date: Mon, 27 Dec 1999 18:56:29 -0800 (PST) From: Alex Zepeda Subject: Re: cvs commit: src/sys/dev/usb if_aue.c if_auereg.h usb_quirks.c usb_quirks.h usbdevs usbdevs.h usbdevs_data.h usbdi.c src/sys/modules Makefile src/sys/modules/aue Makefile src/sys/i386/conf GENERIC LINT NEWCARD PCCARD src/sys/i386/i386 ... In-reply-to: <199912280201.SAA74725@freefall.freebsd.org> To: Bill Paul Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Message-id: MIME-version: 1.0 Content-type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Mon, 27 Dec 1999, Bill Paul wrote: > This commit adds device driver support for the ADMtek AN986 Pegasus > USB ethernet chip. Adapters that use this chip include the LinkSys > USB100TX. There are a few others, but I'm not certain of their > availability in the U.S. I used an ADMtek eval board for development. > Note that while the ADMtek chip is a 100Mbps device, you can't really > get 100Mbps speeds over USB. Now how much do these things cost? - alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 19: 1:26 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B8B5152FB; Mon, 27 Dec 1999 19:01:22 -0800 (PST) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA81652; Mon, 27 Dec 1999 19:01:22 -0800 (PST) (envelope-from hoek@FreeBSD.org) Message-Id: <199912280301.TAA81652@freefall.freebsd.org> From: Tim Vanderhoek Date: Mon, 27 Dec 1999 19:01:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/more ch.c linenum.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1999/12/27 19:01:21 PST Modified files: usr.bin/more ch.c linenum.c Log: Delete dead code and clean comments a little. Revision Changes Path 1.7 +8 -8 src/usr.bin/more/ch.c 1.4 +8 -1 src/usr.bin/more/linenum.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 19:26:40 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9512A14DD6; Mon, 27 Dec 1999 19:26:38 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA83600; Mon, 27 Dec 1999 19:26:38 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912280326.TAA83600@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Mon, 27 Dec 1999 19:26:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/rfc Makefile ports/misc/rfc/files md5 ports/misc/rfc/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/27 19:26:38 PST Modified files: misc/rfc Makefile misc/rfc/files md5 misc/rfc/pkg DESCR Log: Update port to 2.1 Revision Changes Path 1.3 +6 -7 ports/misc/rfc/Makefile 1.3 +1 -1 ports/misc/rfc/files/md5 1.3 +1 -1 ports/misc/rfc/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 19:36:53 1999 Delivered-To: cvs-all@freebsd.org Received: from mass.cdrom.com (castles542.castles.com [208.214.165.106]) by hub.freebsd.org (Postfix) with ESMTP id 1413E14F65; Mon, 27 Dec 1999 19:36:50 -0800 (PST) (envelope-from msmith@mass.cdrom.com) Received: from mass.cdrom.com (localhost [127.0.0.1]) by mass.cdrom.com (8.9.3/8.9.3) with ESMTP id TAA00649; Mon, 27 Dec 1999 19:41:43 -0800 (PST) (envelope-from msmith@mass.cdrom.com) Message-Id: <199912280341.TAA00649@mass.cdrom.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: Bill Paul Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/usb if_aue.c if_auereg.h usb_quirks.c usb_quirks.h usbdevs usbdevs.h usbdevs_data.h usbdi.c src/sys/modules Makefile src/sys/modules/aue Makefile src/sys/i386/conf GENERIC LINT NEWCARD PCCARD src/sys/i386/i386 ... In-reply-to: Your message of "Mon, 27 Dec 1999 18:01:19 PST." <199912280201.SAA74725@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 27 Dec 1999 19:41:43 -0800 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Now, I'm sure there are a few of you out there ready to jump on me > and suggest some other approach that doesn't involve a busy wait. The > only solution that might work is to handle the interrupts in a kernel > thread, where you may have something resembling a process context that > makes it okay to tsleep(). This is lovely, except we don't have any > mechanism like that now, and I'm not about to implement such a thing > myself since it's beyond the scope of driver development. (Translation: > I'll be damned if I know how to do it.) I did already point out that this process is pretty trivial either using a state machine or chained callbacks (see the mlx driver for a good example of this). In your case, it's not really something to get angsty about as the polling activity is the least of your worries with this device. 8) All in all; congratulations! When I first saw the Phoenix datasheet, I would have sworn that making it do anything useful was beyond mere mortals. -- \\ Give a man a fish, and you feed him for a day. \\ Mike Smith \\ Tell him he should learn how to fish himself, \\ msmith@freebsd.org \\ and he'll hate you for a lifetime. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 19:48:38 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3FCF514E00; Mon, 27 Dec 1999 19:48:35 -0800 (PST) (envelope-from andy@FreeBSD.org) Received: (from andy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA85506; Mon, 27 Dec 1999 19:48:34 -0800 (PST) (envelope-from andy@FreeBSD.org) Message-Id: <199912280348.TAA85506@freefall.freebsd.org> From: Andrey Zakhvatov Date: Mon, 27 Dec 1999 19:48:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/ru includes.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andy 1999/12/27 19:48:34 PST Modified files: ru includes.sgml Log: Synchronize with English 1.31: Fix Copyright: FreeBSD Inc -> The FreeBSD Project Revision Changes Path 1.4 +2 -2 www/ru/includes.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 19:53:24 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0F76A14C39; Mon, 27 Dec 1999 19:53:23 -0800 (PST) (envelope-from andy@FreeBSD.org) Received: (from andy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA85707; Mon, 27 Dec 1999 19:53:22 -0800 (PST) (envelope-from andy@FreeBSD.org) Message-Id: <199912280353.TAA85707@freefall.freebsd.org> From: Andrey Zakhvatov Date: Mon, 27 Dec 1999 19:53:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/ru index.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andy 1999/12/27 19:53:22 PST Modified files: ru index.sgml Log: Synchronize with English 1.71: Corrects time of the daily web uptime. Revision Changes Path 1.12 +3 -2 www/ru/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 19:55:25 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D885214CB0; Mon, 27 Dec 1999 19:55:23 -0800 (PST) (envelope-from andy@FreeBSD.org) Received: (from andy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA85801; Mon, 27 Dec 1999 19:55:23 -0800 (PST) (envelope-from andy@FreeBSD.org) Message-Id: <199912280355.TAA85801@freefall.freebsd.org> From: Andrey Zakhvatov Date: Mon, 27 Dec 1999 19:55:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/ru index.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andy 1999/12/27 19:55:23 PST Modified files: ru index.sgml Log: Synchronize with English 1.72: Fix Copyright: FreeBSD Inc -> The FreeBSD Project Revision Changes Path 1.13 +2 -2 www/ru/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 19:58:47 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4DA2515113; Mon, 27 Dec 1999 19:58:45 -0800 (PST) (envelope-from andy@FreeBSD.org) Received: (from andy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA86060; Mon, 27 Dec 1999 19:58:45 -0800 (PST) (envelope-from andy@FreeBSD.org) Message-Id: <199912280358.TAA86060@freefall.freebsd.org> From: Andrey Zakhvatov Date: Mon, 27 Dec 1999 19:58:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/ru robots.txt Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andy 1999/12/27 19:58:44 PST Modified files: ru robots.txt Log: Synchronize with English 1.9: Cleanup. Revision Changes Path 1.2 +2 -8 www/ru/robots.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 20:28: 5 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 20B401535F; Mon, 27 Dec 1999 20:27:59 -0800 (PST) (envelope-from nakai@FreeBSD.org) Received: (from nakai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA88203; Mon, 27 Dec 1999 20:27:58 -0800 (PST) (envelope-from nakai@FreeBSD.org) Message-Id: <199912280427.UAA88203@freefall.freebsd.org> From: Yukihiro Nakai Date: Mon, 27 Dec 1999 20:27:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/snes9x Makefile ports/emulators/snes9x/files md5 ports/emulators/snes9x/patches patch-ae Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nakai 1999/12/27 20:27:58 PST Modified files: emulators/snes9x Makefile emulators/snes9x/files md5 emulators/snes9x/patches patch-ae Log: Update to 1.26 Revision Changes Path 1.16 +5 -5 ports/emulators/snes9x/Makefile 1.7 +1 -1 ports/emulators/snes9x/files/md5 1.3 +24 -26 ports/emulators/snes9x/patches/patch-ae To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 20:38:20 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 20592153A7; Mon, 27 Dec 1999 20:38:18 -0800 (PST) (envelope-from jdp@FreeBSD.org) Received: (from jdp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA89079; Mon, 27 Dec 1999 20:38:18 -0800 (PST) (envelope-from jdp@FreeBSD.org) Message-Id: <199912280438.UAA89079@freefall.freebsd.org> From: John Polstra Date: Mon, 27 Dec 1999 20:38:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include dlfcn.h src/lib/libc/gen dllockinit.3 src/libexec/rtld-elf lockdflt.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jdp 1999/12/27 20:38:17 PST Modified files: include dlfcn.h lib/libc/gen dllockinit.3 libexec/rtld-elf lockdflt.c Log: Work around an assert failure in the dynamic linker's default thread locking functions. If an application loads a shared object with dlopen() and the shared object has an init function which requires lazy binding, then _rtld_bind is called when the thread is already inside the dynamic linker. This leads to a recursive acquisition of the lock, which I was not expecting -- hence the assert failure. This work-around makes the default locking functions handle recursive locking. It is NOT the correct fix -- that should be implemented at the generic locking level rather than in the default locking functions. I will implement the correct fix in a future commit. Since the dllockinit() interface will likely need to change, warn about that in both the man page and the header file. Revision Changes Path 1.8 +2 -1 src/include/dlfcn.h 1.2 +5 -1 src/lib/libc/gen/dllockinit.3 1.2 +9 -5 src/libexec/rtld-elf/lockdflt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 21:32:59 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 95F9115421; Mon, 27 Dec 1999 21:32:56 -0800 (PST) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA93181; Mon, 27 Dec 1999 21:32:56 -0800 (PST) (envelope-from green@FreeBSD.org) Message-Id: <199912280532.VAA93181@freefall.freebsd.org> From: Brian Feldman Date: Mon, 27 Dec 1999 21:32:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/openssh/files pam_ssh.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk green 1999/12/27 21:32:55 PST Modified files: security/openssh/files pam_ssh.c Log: Upgrade to the pam_ssh module, version 1.1.. (From the author:) Primarily, I have added built-in functions for manipulating the environment, so putenv() is no longer used. XDM and its variants should now work without modification. Note that the new code uses the macros in . Submitted by: Andrew J. Korty Revision Changes Path 1.2 +174 -13 ports/security/openssh/files/pam_ssh.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 21:35:47 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 434AA14BE4; Mon, 27 Dec 1999 21:35:44 -0800 (PST) (envelope-from jdp@FreeBSD.org) Received: (from jdp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA93510; Mon, 27 Dec 1999 21:35:44 -0800 (PST) (envelope-from jdp@FreeBSD.org) Message-Id: <199912280535.VAA93510@freefall.freebsd.org> From: John Polstra Date: Mon, 27 Dec 1999 21:35:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/cvsup-bin Makefile ports/net/cvsup-bin/files md5 ports/net/cvsupd-bin Makefile ports/net/cvsupd-bin/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jdp 1999/12/27 21:35:43 PST Modified files: net/cvsup-bin Makefile net/cvsup-bin/files md5 net/cvsupd-bin Makefile net/cvsupd-bin/files md5 Log: These ports are supported on FreeBSD/Alpha systems now (post sigset_t 4.x versions only). Revision Changes Path 1.15 +9 -5 ports/net/cvsup-bin/Makefile 1.10 +1 -0 ports/net/cvsup-bin/files/md5 1.11 +9 -4 ports/net/cvsupd-bin/Makefile 1.6 +1 -0 ports/net/cvsupd-bin/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 21:37:42 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 561EB15016; Mon, 27 Dec 1999 21:37:40 -0800 (PST) (envelope-from shin@FreeBSD.org) Received: (from shin@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA93728; Mon, 27 Dec 1999 21:37:40 -0800 (PST) (envelope-from shin@FreeBSD.org) Message-Id: <199912280537.VAA93728@freefall.freebsd.org> From: Yoshinobu Inoue Date: Mon, 27 Dec 1999 21:37:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/net getaddrinfo.c src/sbin/ping6 ping6.c src/usr.sbin/rip6query rip6query.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk shin 1999/12/27 21:37:39 PST Modified files: lib/libc/net getaddrinfo.c sbin/ping6 ping6.c usr.sbin/rip6query rip6query.c Log: Small bug fix and improvements (1)added error check of if_nameindex() return value at getaddrinfo(). (2)print out more detailed information when getaddrinfo() error value is EAI_SYSTEM.(in this case system error num is kept in errno) (1) is Discovered by: jinmei@kame.net in KAME environment. Revision Changes Path 1.2 +8 -1 src/lib/libc/net/getaddrinfo.c 1.2 +9 -3 src/sbin/ping6/ping6.c 1.2 +6 -2 src/usr.sbin/rip6query/rip6query.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 21:47:28 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C56CC14A1A; Mon, 27 Dec 1999 21:47:25 -0800 (PST) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA94745; Mon, 27 Dec 1999 21:47:25 -0800 (PST) (envelope-from hoek@FreeBSD.org) Message-Id: <199912280547.VAA94745@freefall.freebsd.org> From: Tim Vanderhoek Date: Mon, 27 Dec 1999 21:47:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/more ch.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1999/12/27 21:47:25 PST Modified files: usr.bin/more ch.c Log: Rather than use an LRU-ordered circular list to store buffered data, simply keep an index into the last access on the circular list and begin searches at that point. An LRU list is inappropriate here since the vast majority of accesses will occur in the same order that the list is created in. The only case where an LRU is remotely useful here is when reading from a file and the user is jumping to randomish positions and constantly returning to some central position. Even for this case it is such a small optimization as not to be noticed in an interactive program such as more(1). This change results in a _tremendously_ noticable speed-up when reading long files through a pipe (where long = ~200k, machine = ~2.5h single-disk worldstone). Revision Changes Path 1.8 +65 -35 src/usr.bin/more/ch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 21:56:36 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DCF8314E39; Mon, 27 Dec 1999 21:56:34 -0800 (PST) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA95722; Mon, 27 Dec 1999 21:56:34 -0800 (PST) (envelope-from hoek@FreeBSD.org) Message-Id: <199912280556.VAA95722@freefall.freebsd.org> From: Tim Vanderhoek Date: Mon, 27 Dec 1999 21:56:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/more more.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1999/12/27 21:56:34 PST Modified files: usr.bin/more more.1 Log: Dedocument one of the BUGS listed in the last commit. The bug (needless calculation of line numbers) never existed and the two bugs that made me think it existed have been fixed (see recent commits about this date to linenum.c:r.1.3 and ch.c:r.1.8 fixing broken line-number buffering and braindead algorithms respectively). Revision Changes Path 1.17 +1 -4 src/usr.bin/more/more.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 22: 4:33 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C2EC15433; Mon, 27 Dec 1999 22:04:31 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA96971; Mon, 27 Dec 1999 22:04:31 -0800 (PST) (envelope-from billf@FreeBSD.org) Message-Id: <199912280604.WAA96971@freefall.freebsd.org> From: Bill Fumerola Date: Mon, 27 Dec 1999 22:04:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci if_rl.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1999/12/27 22:04:30 PST Modified files: sys/pci if_rl.c Log: Fix a small typo in the comments. Revision Changes Path 1.38 +3 -3 src/sys/pci/if_rl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 22:11: 8 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F2E91536D; Mon, 27 Dec 1999 22:11:06 -0800 (PST) (envelope-from nakai@FreeBSD.org) Received: (from nakai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA97755; Mon, 27 Dec 1999 22:11:06 -0800 (PST) (envelope-from nakai@FreeBSD.org) Message-Id: <199912280611.WAA97755@freefall.freebsd.org> From: Yukihiro Nakai Date: Mon, 27 Dec 1999 22:11:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/gtkdps Makefile ports/graphics/gtkdps/files md5 ports/graphics/gtkdps/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nakai 1999/12/27 22:11:05 PST Modified files: graphics/gtkdps Makefile graphics/gtkdps/files md5 graphics/gtkdps/pkg PLIST Log: Update to 0.3.2 Revision Changes Path 1.14 +5 -6 ports/graphics/gtkdps/Makefile 1.4 +1 -1 ports/graphics/gtkdps/files/md5 1.5 +8 -1 ports/graphics/gtkdps/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 Dec 27 22:36: 1 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0EA841512E; Mon, 27 Dec 1999 22:35:59 -0800 (PST) (envelope-from msmith@FreeBSD.org) Received: (from msmith@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA99593; Mon, 27 Dec 1999 22:35:58 -0800 (PST) (envelope-from msmith@FreeBSD.org) Message-Id: <199912280635.WAA99593@freefall.freebsd.org> From: Mike Smith Date: Mon, 27 Dec 1999 22:35:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern uipc_mbuf.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1999/12/27 22:35:58 PST Modified files: sys/kern uipc_mbuf.c Log: Actively limit the allocation of mbufs to NMBUFS/nmbufs and mbuf clusters to NMBCLUSTERS/nmbclusters/kern.ipc.nmbclusters. Add a read-only sysctl kern.ipc.nmbufs matching kern.ipc.nmbclusters. Submitted by: Bosko Milekic Revision Changes Path 1.51 +23 -3 src/sys/kern/uipc_mbuf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 22:38:40 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1DA9C14FEE; Mon, 27 Dec 1999 22:38:39 -0800 (PST) (envelope-from msmith@FreeBSD.org) Received: (from msmith@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA99827; Mon, 27 Dec 1999 22:38:38 -0800 (PST) (envelope-from msmith@FreeBSD.org) Message-Id: <199912280638.WAA99827@freefall.freebsd.org> From: Mike Smith Date: Mon, 27 Dec 1999 22:38:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/netstat mbuf.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1999/12/27 22:38:38 PST Modified files: usr.bin/netstat mbuf.c Log: Add display of maximum allowed mbuf count to match mbuf cluster count. Submitted by: Bosko Milekic Revision Changes Path 1.17 +12 -4 src/usr.bin/netstat/mbuf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 22:41:33 1999 Delivered-To: cvs-all@freebsd.org Received: from mass.cdrom.com (castles542.castles.com [208.214.165.106]) by hub.freebsd.org (Postfix) with ESMTP id 0F08C15419; Mon, 27 Dec 1999 22:41:30 -0800 (PST) (envelope-from msmith@mass.cdrom.com) Received: from mass.cdrom.com (localhost [127.0.0.1]) by mass.cdrom.com (8.9.3/8.9.3) with ESMTP id WAA01349; Mon, 27 Dec 1999 22:46:21 -0800 (PST) (envelope-from msmith@mass.cdrom.com) Message-Id: <199912280646.WAA01349@mass.cdrom.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: Mike Smith Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_mbuf.c In-reply-to: Your message of "Mon, 27 Dec 1999 22:35:58 PST." <199912280635.WAA99593@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 27 Dec 1999 22:46:20 -0800 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Note that if there's a reason why mbuf/mbcluster allocation should be allowed to 'steal' from the others' memory pool, then this will need to be backed out. There's probably also room for some rate-limited warning messages in these checks. Suggestions always welcome. > msmith 1999/12/27 22:35:58 PST > > Modified files: > sys/kern uipc_mbuf.c > Log: > Actively limit the allocation of mbufs to NMBUFS/nmbufs and mbuf clusters > to NMBCLUSTERS/nmbclusters/kern.ipc.nmbclusters. > > Add a read-only sysctl kern.ipc.nmbufs matching kern.ipc.nmbclusters. > > Submitted by: Bosko Milekic > > Revision Changes Path > 1.51 +23 -3 src/sys/kern/uipc_mbuf.c -- \\ Give a man a fish, and you feed him for a day. \\ Mike Smith \\ Tell him he should learn how to fish himself, \\ msmith@freebsd.org \\ and he'll hate you for a lifetime. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 23:16:39 1999 Delivered-To: cvs-all@freebsd.org Received: from smtp02.wxs.nl (smtp02.wxs.nl [195.121.6.60]) by hub.freebsd.org (Postfix) with ESMTP id 8944714F1D; Mon, 27 Dec 1999 23:16:32 -0800 (PST) (envelope-from asmodai@wxs.nl) Received: from daemon.ninth-circle.org ([195.121.196.26]) by smtp02.wxs.nl (Netscape Messaging Server 3.61) with ESMTP id AAA46A5; Tue, 28 Dec 1999 08:16:29 +0100 Received: (from asmodai@localhost) by daemon.ninth-circle.org (8.9.3/8.9.3) id HAA92073; Tue, 28 Dec 1999 07:47:06 +0100 (CET) (envelope-from asmodai) Date: Tue, 28 Dec 1999 07:47:05 +0100 From: Jeroen Ruigrok/Asmodai To: Steve Price Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/lang/tcl82 Makefile ports/x11-toolkits/tk82 Makefile Message-ID: <19991228074705.D88079@daemon.ninth-circle.org> References: <199912271555.HAA17679@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <199912271555.HAA17679@freefall.freebsd.org>; from steve@FreeBSD.org on Mon, Dec 27, 1999 at 07:55:07AM -0800 Organisation: Ninth-Circle Enterprises Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk -On [19991227 20:00], Steve Price (steve@FreeBSD.org) wrote: >steve 1999/12/27 07:55:07 PST > > Modified files: > lang/tcl82 Makefile > x11-toolkits/tk82 Makefile > Log: > Thanks to a repository copy (by Satoshi) of pkg/INSTALL.{tcl,wi}sh > from the 8.0.x version of these ports, we are now one step closer to > finally being rid of them. You might want to be weary about removing 8.0. XF86Setup has been broken for me and a couple of other people using tcl/tk 8.2 and XFree 3.3.5. -- Jeroen Ruigrok van der Werven/Asmodai asmodai@[wxs.nl|bart.nl] Documentation nutter. *BSD: Technical excellence at its best... The BSD Programmer's Documentation Project De nihilo nihil... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 23:19:25 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 221E714FAE; Mon, 27 Dec 1999 23:19:24 -0800 (PST) (envelope-from msmith@FreeBSD.org) Received: (from msmith@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA03210; Mon, 27 Dec 1999 23:19:23 -0800 (PST) (envelope-from msmith@FreeBSD.org) Message-Id: <199912280719.XAA03210@freefall.freebsd.org> From: Mike Smith Date: Mon, 27 Dec 1999 23:19:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/common commands.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1999/12/27 23:19:23 PST Modified files: sys/boot/common commands.c Log: Correctly handle a user-requested abort in the middle of displaying a help subtopic. PR: kern/13196 Submitted by: MIHIRA Sanpei Yoshiro Revision Changes Path 1.13 +5 -3 src/sys/boot/common/commands.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 23:21:11 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 93077153CB; Mon, 27 Dec 1999 23:21:09 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: (from rwatson@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA03382; Mon, 27 Dec 1999 23:21:09 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Message-Id: <199912280721.XAA03382@freefall.freebsd.org> From: Robert Watson Date: Mon, 27 Dec 1999 23:21:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/net gethostbydns.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rwatson 1999/12/27 23:21:09 PST Modified files: lib/libc/net gethostbydns.c Log: Suppress vast quantities of unneeded warnings spewed by libc's gethostbydns on encountering a real-world SIG record during a lookup of another type. PR: bin/7352 Reviewed by: peter, eivind Revision Changes Path 1.26 +5 -4 src/lib/libc/net/gethostbydns.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 23:31: 0 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 158B1153EF; Mon, 27 Dec 1999 23:30:58 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA04145; Mon, 27 Dec 1999 23:30:57 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912280730.XAA04145@freefall.freebsd.org> From: Peter Wemm Date: Mon, 27 Dec 1999 23:30:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm swap_pager.c vm_swap.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/27 23:30:56 PST Modified files: sys/vm swap_pager.c vm_swap.c Log: Fix the swap backed vn case - this was broken by my rev 1.128 to swap_pager.c and related commits. Essentially swap_pager.c is backed out to before the changes, but swapdev_vp is converted into a real vnode with just VOP_STRATEGY(). It no longer abuses specfs vnops and no longer needs a dev_t and /dev/drum (or /dev/swapdev) for the intermediate layer. This essentially restores the vnode interface as the interface to the bottom of the swap pager, and vm_swap.c provides a clean vnode interface. This will need to be revisited when we swap to files (vnodes) - which is the other reason for keeping the vnode interface between the swap pager and the swap devices. OK'ed by: dillon Revision Changes Path 1.130 +9 -14 src/sys/vm/swap_pager.c 1.94 +43 -10 src/sys/vm/vm_swap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 23:32:38 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DA67715424; Mon, 27 Dec 1999 23:32:35 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA04377; Mon, 27 Dec 1999 23:32:35 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912280732.XAA04377@freefall.freebsd.org> From: Peter Wemm Date: Mon, 27 Dec 1999 23:32:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/vn vn.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/27 23:32:35 PST Modified files: sys/dev/vn vn.c Log: Fix a panic when doing non-multiples of PAGE_SIZE or misaligned transfers to a swap backed vn device. OK'ed by: dillon Revision Changes Path 1.105 +14 -2 src/sys/dev/vn/vn.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Dec 27 23:38:47 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2A7E014D7D; Mon, 27 Dec 1999 23:38:45 -0800 (PST) (envelope-from kato@FreeBSD.org) Received: (from kato@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA04834; Mon, 27 Dec 1999 23:38:44 -0800 (PST) (envelope-from kato@FreeBSD.org) Message-Id: <199912280738.XAA04834@freefall.freebsd.org> From: KATO Takenori Date: Mon, 27 Dec 1999 23:38:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/isa fd.c src/etc MAKEDEV Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1999/12/27 23:38:39 PST Modified files: sys/isa fd.c etc MAKEDEV Log: Added following modes: 5in HD 2 heads, 77 cylinders, 8 sectors/track, 1024 bytes/sector 5/3.5in DD 2 heads, 80 cylinders, 8 sectors/track, 512 bytes/sector Meanings of the rogrammer-readeble fd name were explained by Brian Fundakowski Feldman and Peter Wemm in hackers list and NOKUBI Hirotaka. Reviewed by: nyan Revision Changes Path 1.172 +22 -9 src/sys/isa/fd.c 1.229 +15 -1 src/etc/MAKEDEV To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 0:11:39 1999 Delivered-To: cvs-all@freebsd.org Received: from gndrsh.dnsmgr.net (GndRsh.dnsmgr.net [198.145.92.4]) by hub.freebsd.org (Postfix) with ESMTP id 3DB65151C7; Tue, 28 Dec 1999 00:11:33 -0800 (PST) (envelope-from freebsd@gndrsh.dnsmgr.net) Received: (from freebsd@localhost) by gndrsh.dnsmgr.net (8.9.3/8.9.3) id AAA69605; Tue, 28 Dec 1999 00:03:22 -0800 (PST) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <199912280803.AAA69605@gndrsh.dnsmgr.net> Subject: Re: cvs commit: ports/net/zebra Makefile ports/net/zebra/files md5 In-Reply-To: <19991223181337.L48740@florence.pavilion.net> from Josef Karthauser at "Dec 23, 1999 06:13:37 pm" To: joe@pavilion.net (Josef Karthauser) Date: Tue, 28 Dec 1999 00:03:21 -0800 (PST) Cc: joe@FreeBSD.org (Josef Karthauser), cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > On Thu, Dec 23, 1999 at 10:04:59AM -0800, Rodney W. Grimes wrote: > > > > It rather bothers me that zebra startup says it started ``ospfd'' > > when I have bgpd configured :-) > > > > 'Tis done. BTW Do you ospfd at all? I find that can't establish relationships > with machines on the local network unless there is a default route statically > set. The zebra guys seemed to imply that it was a bug in multicast routing > under FreeBSD. Any ideas? (Do I need MROUTING defined?) I have done some more digging on this problem tonight and the zebra folks probably said the right thing when the chalked this off as a bug in the multicast kernel code (I'll be looking at that now that I now know what the real problem is.) Here is what gave me the final push to go, yep this is a kernel bug (excert is from gated 3.5.11 src/krt_ipmulti_ttl0.c): /* The Deering multicast mods for the kernel require the existence of */ /* a default route (0.0.0.0), a default multicast route (224.0.0.0) or */ /* a specific multicast route to determine the default interface. */ /* This information is ignored since we explicitly set our interface */ /* when sending the packets, but lack of this information would prevent */ /* us from sending to the multicast address. To work around this we */ /* add our two multicast addresses to the routing table pointing at the */ /* loopback interface. If these were ever actually used we would get */ /* an error because the loopback interface does not support multicast, */ /* but since we do specify the interface before sending packets this */ /* should *never* happen. */ Now, if you want to use zebra w/ospfd, and don't want to have a default route the following 2 static routes in your zebra.conf file makes it work until I can find the real kernel bug: ! Static routes for broken Deering multicast code so that ospfd can send ! it's initial hello packets. ip route 224.0.0.5/32 127.0.0.1 ip route 224.0.0.6/32 127.0.0.1 Note that zebra does the wrong thing here too, it installs this as GATEWAY routes, not HOST routes, but hey, it don't matter in this case, we just need them in there to get things started, they aren't ever actually used to route a packet, _technically_ :-) -- Rod Grimes - KD7CAX @ CN85sl - (RWG25) rgrimes@gndrsh.dnsmgr.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 0:13:16 1999 Delivered-To: cvs-all@freebsd.org Received: from apollo.backplane.com (apollo.backplane.com [216.240.41.2]) by hub.freebsd.org (Postfix) with ESMTP id 95DD314CC1; Tue, 28 Dec 1999 00:13:13 -0800 (PST) (envelope-from dillon@apollo.backplane.com) Received: (from dillon@localhost) by apollo.backplane.com (8.9.3/8.9.1) id AAA37881; Tue, 28 Dec 1999 00:13:13 -0800 (PST) (envelope-from dillon) Date: Tue, 28 Dec 1999 00:13:13 -0800 (PST) From: Matthew Dillon Message-Id: <199912280813.AAA37881@apollo.backplane.com> To: Mike Smith , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern uipc_mbuf.c References: <199912280646.WAA01349@mass.cdrom.com> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk : :Note that if there's a reason why mbuf/mbcluster allocation should be :allowed to 'steal' from the others' memory pool, then this will need to :be backed out. There's probably also room for some rate-limited :warning messages in these checks. Suggestions always welcome. : :> msmith 1999/12/27 22:35:58 PST :> :> Modified files: :> sys/kern uipc_mbuf.c :> Log: :> Actively limit the allocation of mbufs to NMBUFS/nmbufs and mbuf clusters :> to NMBCLUSTERS/nmbclusters/kern.ipc.nmbclusters. :> :> Add a read-only sysctl kern.ipc.nmbufs matching kern.ipc.nmbclusters. :> :> Submitted by: Bosko Milekic :> :> Revision Changes Path :> 1.51 +23 -3 src/sys/kern/uipc_mbuf.c : :-- :\\ Give a man a fish, and you feed him for a day. \\ Mike Smith :\\ Tell him he should learn how to fish himself, \\ msmith@freebsd.org :\\ and he'll hate you for a lifetime. \\ msmith@cdrom.com Well, yes, there is: It's an issue of stability. If you run out of either you are dead in the water so you might as well steal, yes? If you don't do this you now have *two* hard limits instead of *one* that will adversely effect the machine if hit. Even though the defaults are hardwired, the packet mix depends on the use the machine is put to. With hardwired defaults the machine is never going to be able to fit the use perfectly. Stealing is a way to dynamically balance the two pools. Maybe not the best way, but better then nothing, at least while we continue to use hard limits. Both pools operate under the same interrupt handling restrictions so stealing is easy. -Matt Matthew Dillon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 0:17:19 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 181B4153BB; Tue, 28 Dec 1999 00:17:18 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA08303; Tue, 28 Dec 1999 00:17:17 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Message-Id: <199912280817.AAA08303@freefall.freebsd.org> From: Jun Kuriyama Date: Tue, 28 Dec 1999 00:17:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/ja/releases/3.4R Makefile errata.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1999/12/28 00:17:17 PST Added files: ja/releases/3.4R Makefile errata.sgml Log: Add new translation of 3.4R/errata.sgml. Submitted by: Hiroki Sato Reviewed by: susumu-w@ops.dti.ne.jp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 0:17:45 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5655E15424; Tue, 28 Dec 1999 00:17:42 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA08394; Tue, 28 Dec 1999 00:17:32 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Message-Id: <199912280817.AAA08394@freefall.freebsd.org> From: Jun Kuriyama Date: Tue, 28 Dec 1999 00:17:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/p5-File-Sync Makefile ports/devel/p5-File-Sync/files md5 ports/devel/p5-File-Sync/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1999/12/28 00:17:31 PST Modified files: devel/p5-File-Sync Makefile devel/p5-File-Sync/files md5 devel/p5-File-Sync/pkg PLIST Log: Update to v0.08. Update maintainer's address. Reminded by: distfile survey Revision Changes Path 1.6 +5 -5 ports/devel/p5-File-Sync/Makefile 1.2 +1 -1 ports/devel/p5-File-Sync/files/md5 1.6 +1 -0 ports/devel/p5-File-Sync/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 Dec 28 0:38: 5 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F3F8114F2B; Tue, 28 Dec 1999 00:38:03 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA10146; Tue, 28 Dec 1999 00:38:03 -0800 (PST) (envelope-from ru@FreeBSD.org) Message-Id: <199912280838.AAA10146@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 28 Dec 1999 00:38:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net rtsock.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ru 1999/12/28 00:38:02 PST Modified files: sys/net rtsock.c Log: Make cloning mask sockaddr (genmask) possible. PR: kern/3061 Reviewed by: wollman Revision Changes Path 1.42 +3 -2 src/sys/net/rtsock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 1:35: 2 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 68FBB1542E; Tue, 28 Dec 1999 01:35:00 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA14450; Tue, 28 Dec 1999 01:35:00 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Message-Id: <199912280935.BAA14450@freefall.freebsd.org> From: Sheldon Hearn Date: Tue, 28 Dec 1999 01:34:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/test test.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sheldonh 1999/12/28 01:34:59 PST Modified files: bin/test test.c Log: Take into account the fact that "[" may be called with a path, for example "/bin/[". Reported by: Vlad Skvortsov Reported by: Peter Jeremy Message-Id: 99Dec27.111307est.40321@border.alcanet.com.au Revision Changes Path 1.29 +7 -2 src/bin/test/test.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 1:36:34 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 93FE815439; Tue, 28 Dec 1999 01:36:32 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA14598; Tue, 28 Dec 1999 01:36:32 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Message-Id: <199912280936.BAA14598@freefall.freebsd.org> From: Sheldon Hearn Date: Tue, 28 Dec 1999 01:36:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/test test.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sheldonh 1999/12/28 01:36:32 PST Modified files: (Branch: RELENG_3) bin/test test.c Log: MFC rev 1.29: Allow "[" to be called with a path. Revision Changes Path 1.20.2.5 +7 -2 src/bin/test/test.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 1:56: 1 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A5C1A153EB; Tue, 28 Dec 1999 01:55:58 -0800 (PST) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA16028; Tue, 28 Dec 1999 01:55:58 -0800 (PST) (envelope-from asami@FreeBSD.org) Message-Id: <199912280955.BAA16028@freefall.freebsd.org> From: Satoshi Asami Date: Tue, 28 Dec 1999 01:55:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports INDEX Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1999/12/28 01:55:57 PST Modified files: . INDEX Log: New index, with 2,909 ports. This may be the last index of 1,999 (no, it's not the last one of the century of the millenium, not by a long shot). And 2,909 is a prime. (How fitting. :) Revision Changes Path 1.252 +537 -475 ports/INDEX To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 2:11:44 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 047711545A; Tue, 28 Dec 1999 02:11:40 -0800 (PST) (envelope-from dirk@FreeBSD.org) Received: (from dirk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA17530; Tue, 28 Dec 1999 02:11:40 -0800 (PST) (envelope-from dirk@FreeBSD.org) Message-Id: <199912281011.CAA17530@freefall.freebsd.org> From: Dirk Froemberg Date: Tue, 28 Dec 1999 02:11:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/apache13-php3/pkg PLIST PLIST.modssl ports/www/apache13-php4/pkg PLIST PLIST.modssl Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dirk 1999/12/28 02:11:40 PST Modified files: www/apache13-php3/pkg PLIST PLIST.modssl www/apache13-php4/pkg PLIST PLIST.modssl Log: Follow apache13 and take out configuration files of apache to avoid rare cases where user-edited are deleted. Revision Changes Path 1.24 +3 -4 ports/www/apache13-php3/pkg/PLIST 1.14 +3 -4 ports/www/apache13-php3/pkg/PLIST.modssl 1.25 +3 -4 ports/www/apache13-php4/pkg/PLIST 1.15 +3 -4 ports/www/apache13-php4/pkg/PLIST.modssl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 2:17:37 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D2456151C7; Tue, 28 Dec 1999 02:17:35 -0800 (PST) (envelope-from dirk@FreeBSD.org) Received: (from dirk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA17922; Tue, 28 Dec 1999 02:17:35 -0800 (PST) (envelope-from dirk@FreeBSD.org) Message-Id: <199912281017.CAA17922@freefall.freebsd.org> From: Dirk Froemberg Date: Tue, 28 Dec 1999 02:17:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/apache13-php3/scripts configure.php ports/www/apache13-php4/scripts configure.php Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dirk 1999/12/28 02:17:35 PST Modified files: www/apache13-php3/scripts configure.php www/apache13-php4/scripts configure.php Log: - add $FreeBSD$ - disable mhash: This option causes apache to be linked with -lc _and_ -lc_r. As a result apache crashes on startup. Revision Changes Path 1.68 +4 -0 ports/www/apache13-php3/scripts/configure.php 1.71 +4 -0 ports/www/apache13-php4/scripts/configure.php To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 2:21:41 1999 Delivered-To: cvs-all@freebsd.org Received: from cip12.melaten.rwth-aachen.de (cip12.melaten.RWTH-Aachen.DE [134.130.92.12]) by hub.freebsd.org (Postfix) with ESMTP id 86FEB15483; Tue, 28 Dec 1999 02:21:31 -0800 (PST) (envelope-from tg@melaten.rwth-aachen.de) Received: (from tg@localhost) by cip12.melaten.rwth-aachen.de (8.9.3/8.9.3) id LAA62745; Tue, 28 Dec 1999 11:24:37 +0100 (CET) (envelope-from tg@melaten.rwth-aachen.de) X-Authentication-Warning: cip12.melaten.rwth-aachen.de: tg set sender to tg@melaten.rwth-aachen.de using -f To: Steve Price Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/editors Makefile ports/editors/auctex Makefile ports/editors/auctex/files md5 ports/editors/auctex/patches patch-aa patch-ab ports/editors/auctex/pkg COMMENT DESCR MESSAGE PLIST References: <199912251546.HAA06587@freefall.freebsd.org> From: Thomas Gellekum In-Reply-To: Steve Price's message of "Sat, 25 Dec 1999 07:46:46 -0800 (PST)" Date: 28 Dec 1999 11:24:32 +0100 Message-ID: Lines: 16 User-Agent: Gnus/5.0802 (Gnus v5.8.2) XEmacs/20.4 (Emerald) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Steve Price writes: > auctex version 9.9p > An integrated environment for writing LaTeX using GNU Emacs. print/auctex? Apart from that, could you install versions for the different emacsen into different directories? Imagine sites that have both emacs and xemacs for their users. There should also be some mechanism for the batch processing of ports that Satoshi does. Lastly, lots of people still use xemacs20 so the dependencies are wrong for them. tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 3:40:17 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C799150BA; Tue, 28 Dec 1999 03:40:15 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA22715; Tue, 28 Dec 1999 03:40:15 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Message-Id: <199912281140.DAA22715@freefall.freebsd.org> From: Jun Kuriyama Date: Tue, 28 Dec 1999 03:40:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese Makefile ports/japanese/FAQ Makefile ports/japanese/FAQ/files md5 ports/japanese/FAQ/pkg COMMENT DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1999/12/28 03:40:15 PST Modified files: japanese Makefile Removed files: japanese/FAQ Makefile japanese/FAQ/files md5 japanese/FAQ/pkg COMMENT DESCR Log: Japanese FAQ package are made on doc/ja repository. Not objected by: maintainer Revision Changes Path 1.245 +1 -2 ports/japanese/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 3:40:47 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 839C014D2E; Tue, 28 Dec 1999 03:40:41 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA22838; Tue, 28 Dec 1999 03:40:41 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Message-Id: <199912281140.DAA22838@freefall.freebsd.org> From: Jun Kuriyama Date: Tue, 28 Dec 1999 03:40:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/p5-DBD-Pg Makefile ports/databases/p5-DBD-Pg/files md5 ports/databases/p5-DBD-Pg/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1999/12/28 03:40:41 PST Modified files: databases/p5-DBD-Pg Makefile databases/p5-DBD-Pg/files md5 databases/p5-DBD-Pg/pkg PLIST Log: Update to v0.93. No response from: maintainer Revision Changes Path 1.15 +6 -5 ports/databases/p5-DBD-Pg/Makefile 1.6 +1 -1 ports/databases/p5-DBD-Pg/files/md5 1.5 +2 -0 ports/databases/p5-DBD-Pg/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 Dec 28 3:42:37 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B322415426; Tue, 28 Dec 1999 03:42:32 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA22941; Tue, 28 Dec 1999 03:42:32 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Message-Id: <199912281142.DAA22941@freefall.freebsd.org> From: Jun Kuriyama Date: Tue, 28 Dec 1999 03:42:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1999/12/28 03:42:32 PST Modified files: . modules Log: Bye bye ja-FAQ port. Revision Changes Path 1.716 +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 Tue Dec 28 3:48:27 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F3AD914D2B; Tue, 28 Dec 1999 03:48:25 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA23405; Tue, 28 Dec 1999 03:48:25 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912281148.DAA23405@freefall.freebsd.org> From: Peter Wemm Date: Tue, 28 Dec 1999 03:48:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libstand stand.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/28 03:48:25 PST Modified files: lib/libstand stand.h Log: Use the ctype.h version of isascii() - it doesn't loose precision and think that 0x100 (int) is an ascii character. Submitted by: bde Revision Changes Path 1.17 +2 -2 src/lib/libstand/stand.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 4:29: 5 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3882114F8C; Tue, 28 Dec 1999 04:29:03 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA28517; Tue, 28 Dec 1999 04:29:03 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912281229.EAA28517@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Tue, 28 Dec 1999 04:29:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/gracer Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/28 04:29:02 PST Modified files: games/gracer Makefile Log: Correct NEWGCC requirement (NEW_GCC -> USE_NEWGCC) Found by: Juergen Lock Revision Changes Path 1.5 +2 -2 ports/games/gracer/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 4:52: 3 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 44A55153EF; Tue, 28 Dec 1999 04:52:01 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA30125; Tue, 28 Dec 1999 04:52:01 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912281252.EAA30125@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Tue, 28 Dec 1999 04:52:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/28 04:52:00 PST Modified files: en_US.ISO_8859-1/books/handbook/contrib chapter.sgml Log: Add Nick Johnson to addtional contributors for muse port Revision Changes Path 1.143 +5 -1 doc/en_US.ISO_8859-1/books/handbook/contrib/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 4:56: 7 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BBD8114F84; Tue, 28 Dec 1999 04:56:04 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: (from phantom@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA30409; Tue, 28 Dec 1999 04:56:04 -0800 (PST) (envelope-from phantom@FreeBSD.org) Message-Id: <199912281256.EAA30409@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 28 Dec 1999 04:55:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/man/man man.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phantom 1999/12/28 04:55:59 PST Modified files: gnu/usr.bin/man/man man.c Log: Better handling groff failures. If popen(ROFF_COMMAND) returns zero bytes then handle it as problem. This commit fixes problem with archiving empty files. PR: gnu/5767 Submitted by: Bill Fenner Revision Changes Path 1.37 +6 -4 src/gnu/usr.bin/man/man/man.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 6:10:27 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 977AB15426; Tue, 28 Dec 1999 06:10:24 -0800 (PST) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA35852; Tue, 28 Dec 1999 06:10:24 -0800 (PST) (envelope-from hoek@FreeBSD.org) Message-Id: <199912281410.GAA35852@freefall.freebsd.org> From: Tim Vanderhoek Date: Tue, 28 Dec 1999 06:10:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/locale islower.3 isupper.3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1999/12/28 06:10:23 PST Modified files: lib/libc/locale islower.3 isupper.3 Log: Add .Xrefs to tolower.3 and toupper.3, respectively. Revision Changes Path 1.6 +2 -1 src/lib/libc/locale/islower.3 1.7 +2 -1 src/lib/libc/locale/isupper.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 6:12: 4 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8852B14D67; Tue, 28 Dec 1999 06:12:01 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA35976; Tue, 28 Dec 1999 06:12:00 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Message-Id: <199912281412.GAA35976@freefall.freebsd.org> From: Jun Kuriyama Date: Tue, 28 Dec 1999 06:11:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/ja/releases Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1999/12/28 06:11:58 PST Modified files: ja/releases Makefile Log: Activate 3.4R subdir. Revision Changes Path 1.15 +3 -3 www/ja/releases/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 6:47: 6 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C4B3F14E29; Tue, 28 Dec 1999 06:47:04 -0800 (PST) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA92533; Tue, 28 Dec 1999 06:47:02 -0800 (PST) (envelope-from hoek@FreeBSD.org) Message-Id: <199912281447.GAA92533@freefall.freebsd.org> From: Tim Vanderhoek Date: Tue, 28 Dec 1999 06:47:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/string strrchr.3 strtok.3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1999/12/28 06:47:01 PST Modified files: lib/libc/string strrchr.3 strtok.3 Log: Avoid the potentially confusing term "a null pointer" and say "the NULL pointer" instead. The potential confusion arises because the string/*.3 pages use the term "null-terminated string" (which is permissable). Moreover, this also makes these two manpages more consistent with the other string/*.3 manpages. Revision Changes Path 1.4 +2 -2 src/lib/libc/string/strrchr.3 1.9 +3 -3 src/lib/libc/string/strtok.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 6:57:37 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DB66514A1B; Tue, 28 Dec 1999 06:57:34 -0800 (PST) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA93391; Tue, 28 Dec 1999 06:57:34 -0800 (PST) (envelope-from hoek@FreeBSD.org) Message-Id: <199912281457.GAA93391@freefall.freebsd.org> From: Tim Vanderhoek Date: Tue, 28 Dec 1999 06:57:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/string strcasecmp.3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1999/12/28 06:57:34 PST Modified files: lib/libc/string strcasecmp.3 Log: Add ".Xref tolower 3" since its internal use is inferred in DESCRIPTION. Revision Changes Path 1.6 +3 -2 src/lib/libc/string/strcasecmp.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 7:15: 3 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0017414EBE; Tue, 28 Dec 1999 07:15:00 -0800 (PST) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA95058; Tue, 28 Dec 1999 07:15:00 -0800 (PST) (envelope-from hoek@FreeBSD.org) Message-Id: <199912281515.HAA95058@freefall.freebsd.org> From: Tim Vanderhoek Date: Tue, 28 Dec 1999 07:15:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/stdlib malloc.3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1999/12/28 07:15:00 PST Modified files: lib/libc/stdlib malloc.3 Log: Add history: The reallocf() function first appeared in FreeBSD-3.0. See imp's 199808201619.KAA20970@harmony.village.org in freebsd-hackers (the reallocf.c cvs history mistakenly refers to freebsd-current). Revision Changes Path 1.25 +6 -1 src/lib/libc/stdlib/malloc.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 7:18:35 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2421414ED9; Tue, 28 Dec 1999 07:18:34 -0800 (PST) (envelope-from jasone@FreeBSD.org) Received: (from jasone@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA95413; Tue, 28 Dec 1999 07:18:33 -0800 (PST) (envelope-from jasone@FreeBSD.org) Message-Id: <199912281518.HAA95413@freefall.freebsd.org> From: Jason Evans Date: Tue, 28 Dec 1999 07:18:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/linuxthreads Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jasone 1999/12/28 07:18:33 PST Modified files: devel/linuxthreads Makefile Log: Somehow, I missed the Makefile when committing the updated linuxthreads port. PR: 15724 Revision Changes Path 1.6 +17 -22 ports/devel/linuxthreads/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 7:24: 4 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BBB7214DE7; Tue, 28 Dec 1999 07:24:02 -0800 (PST) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA95859; Tue, 28 Dec 1999 07:24:02 -0800 (PST) (envelope-from hoek@FreeBSD.org) Message-Id: <199912281524.HAA95859@freefall.freebsd.org> From: Tim Vanderhoek Date: Tue, 28 Dec 1999 07:24:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/compat-43 sigsetmask.2 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1999/12/28 07:24:02 PST Modified files: lib/libc/compat-43 sigsetmask.2 Log: Typo cops. Revision Changes Path 1.7 +2 -2 src/lib/libc/compat-43/sigsetmask.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 7:27:44 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 590B014D4A; Tue, 28 Dec 1999 07:27:40 -0800 (PST) (envelope-from bp@FreeBSD.org) Received: (from bp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA96211; Tue, 28 Dec 1999 07:27:40 -0800 (PST) (envelope-from bp@FreeBSD.org) Message-Id: <199912281527.HAA96211@freefall.freebsd.org> From: Boris Popov Date: Tue, 28 Dec 1999 07:27:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/msdosfs msdosfs_vfsops.c msdosfsmount.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bp 1999/12/28 07:27:39 PST Modified files: sys/msdosfs msdosfs_vfsops.c msdosfsmount.h Log: It is possible that number of sectors specified in the BPB will exceed FAT capacity. This will lead to kernel panic while other systems just limit number of clusters. PR: 4381, 15136 Reviewed by: phk Revision Changes Path 1.58 +15 -6 src/sys/msdosfs/msdosfs_vfsops.c 1.18 +1 -2 src/sys/msdosfs/msdosfsmount.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 7:34:27 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 62D3A14DE7; Tue, 28 Dec 1999 07:34:24 -0800 (PST) (envelope-from bp@FreeBSD.org) Received: (from bp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA96784; Tue, 28 Dec 1999 07:34:24 -0800 (PST) (envelope-from bp@FreeBSD.org) Message-Id: <199912281534.HAA96784@freefall.freebsd.org> From: Boris Popov Date: Tue, 28 Dec 1999 07:34:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/msdosfs msdosfs_vnops.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bp 1999/12/28 07:34:23 PST Modified files: sys/msdosfs msdosfs_vnops.c Log: Fix an overflow in the msdosfs_read() function which exposed on the files with size > 2GB. PR: 15639 Submitted by: Tim Kientzle Reviewed by: phk Revision Changes Path 1.92 +4 -4 src/sys/msdosfs/msdosfs_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 7:41:19 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B71C814E88; Tue, 28 Dec 1999 07:41:17 -0800 (PST) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA97590; Tue, 28 Dec 1999 07:41:17 -0800 (PST) (envelope-from hoek@FreeBSD.org) Message-Id: <199912281541.HAA97590@freefall.freebsd.org> From: Tim Vanderhoek Date: Tue, 28 Dec 1999 07:41:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/yorick/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1999/12/28 07:41:17 PST Modified files: lang/yorick/pkg PLIST Log: Add two missing files. Revision Changes Path 1.3 +2 -0 ports/lang/yorick/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 Dec 28 8:10:58 1999 Delivered-To: cvs-all@freebsd.org Received: from internat.freebsd.org (internat.freebsd.org [146.64.8.4]) by hub.freebsd.org (Postfix) with ESMTP id 671BA1548F; Tue, 28 Dec 1999 08:10:36 -0800 (PST) (envelope-from kris@internat.freebsd.org) Received: (from kris@localhost) by internat.freebsd.org (8.9.3/8.9.3) id SAA32541; Tue, 28 Dec 1999 18:10:33 +0200 (SAST) (envelope-from kris) Message-Id: <199912281610.SAA32541@internat.freebsd.org> From: Kris Kennaway Date: Tue, 28 Dec 1999 18:10:32 +0200 (SAST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/secure/lib Makefile src/secure/lib/libcrypto Makefile Makefile.inc opensslconf-alpha.h opensslconf-i386.h src/secure/lib/libssl Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kris 1999/12/28 18:10:32 SAST FreeBSD International Crypto Repository Modified files: secure/lib Makefile Added files: secure/lib/libcrypto Makefile Makefile.inc opensslconf-alpha.h opensslconf-i386.h secure/lib/libssl Makefile Log: Build infrastructure for OpenSSL (libcrypto, libssl). This is currently restricted to building on non-US sites due to RSA complications. Revision Changes Path 1.13 +5 -1 src/secure/lib/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 8:12:22 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 97D0114FDD; Tue, 28 Dec 1999 08:12:19 -0800 (PST) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA00304; Tue, 28 Dec 1999 08:12:19 -0800 (PST) (envelope-from hoek@FreeBSD.org) Message-Id: <199912281612.IAA00304@freefall.freebsd.org> From: Tim Vanderhoek Date: Tue, 28 Dec 1999 08:12:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/gtl/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1999/12/28 08:12:18 PST Modified files: misc/gtl/pkg DESCR Log: Add a DESCR and a WWW. Revision Changes Path 1.2 +7 -1 ports/misc/gtl/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 8:14:58 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AD62A14ED9; Tue, 28 Dec 1999 08:14:56 -0800 (PST) (envelope-from bp@FreeBSD.org) Received: (from bp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA00541; Tue, 28 Dec 1999 08:14:56 -0800 (PST) (envelope-from bp@FreeBSD.org) Message-Id: <199912281614.IAA00541@freefall.freebsd.org> From: Boris Popov Date: Tue, 28 Dec 1999 08:14:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/msdosfs msdosfs_vnops.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bp 1999/12/28 08:14:56 PST Modified files: sys/msdosfs msdosfs_vnops.c Log: Avoid to write garbage if uiomove fails. Revision Changes Path 1.93 +5 -1 src/sys/msdosfs/msdosfs_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 8:16:51 1999 Delivered-To: cvs-all@freebsd.org Received: from internat.freebsd.org (internat.freebsd.org [146.64.8.4]) by hub.freebsd.org (Postfix) with ESMTP id 1B7B414D1F; Tue, 28 Dec 1999 08:16:43 -0800 (PST) (envelope-from kris@internat.freebsd.org) Received: (from kris@localhost) by internat.freebsd.org (8.9.3/8.9.3) id SAA32714; Tue, 28 Dec 1999 18:16:35 +0200 (SAST) (envelope-from kris) Message-Id: <199912281616.SAA32714@internat.freebsd.org> From: Kris Kennaway Date: Tue, 28 Dec 1999 18:16:35 +0200 (SAST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/secure/usr.bin Makefile src/secure/usr.bin/openssl Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kris 1999/12/28 18:16:35 SAST FreeBSD International Crypto Repository Modified files: secure/usr.bin Makefile Added files: secure/usr.bin/openssl Makefile Log: Build infrastructure for openssl(1), a general-purpose crypto utility. Based on, but heavily modified from, the OpenBSD Makefile. Revision Changes Path 1.9 +5 -1 src/secure/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 Dec 28 8:22:57 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 36DF21532F; Tue, 28 Dec 1999 08:22:52 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA01991; Tue, 28 Dec 1999 08:22:52 -0800 (PST) (envelope-from kris@FreeBSD.org) Message-Id: <199912281622.IAA01991@freefall.freebsd.org> From: Kris Kennaway Date: Tue, 28 Dec 1999 08:22:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kris 1999/12/28 08:22:51 PST Modified files: . Makefile.inc1 Log: Build openssl properly during make world. Revision Changes Path 1.114 +5 -2 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 8:30:24 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9DF9A14FDD; Tue, 28 Dec 1999 08:30:14 -0800 (PST) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA04497; Tue, 28 Dec 1999 08:30:14 -0800 (PST) (envelope-from hoek@FreeBSD.org) Message-Id: <199912281630.IAA04497@freefall.freebsd.org> From: Tim Vanderhoek Date: Tue, 28 Dec 1999 08:30:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/gnapster/pkg COMMENT ports/audio/mpg123.el/pkg COMMENT ports/audio/timidity++-emacs/pkg COMMENT ports/audio/timidity++-gtk/pkg COMMENT ports/audio/timidity++-motif/pkg COMMENT ports/audio/timidity++-slang/pkg COMMENT ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1999/12/28 08:30:12 PST Modified files: audio/gnapster/pkg COMMENT audio/mpg123.el/pkg COMMENT audio/timidity++-emacs/pkg COMMENT audio/timidity++-gtk/pkg COMMENT audio/timidity++-motif/pkg COMMENT audio/timidity++-slang/pkg COMMENT audio/timidity++-tcltk/pkg COMMENT audio/timidity++-xaw/pkg COMMENT audio/timidity++-xskin/pkg COMMENT cad/qcad/pkg COMMENT chinese/arphicttf/pkg COMMENT chinese/autoconvert/pkg COMMENT chinese/cdict/pkg COMMENT databases/mysql322-client/../mysql322-server/pkg COMMENT.client databases/pxtools/pkg COMMENT deskutils/gnofin/pkg COMMENT devel/linuxthreads/pkg COMMENT devel/robodoc/pkg COMMENT editors/vim-lite/../vim5/pkg COMMENT editors/xemacs-mule-sumo/pkg COMMENT editors/xemacs-sumo-packages/pkg COMMENT emulators/bochs/pkg COMMENT games/actx/pkg COMMENT games/wmminichess/pkg COMMENT games/xracer/pkg COMMENT games/xshipwars-client/pkg COMMENT graphics/dia/pkg COMMENT graphics/gxanim/pkg COMMENT graphics/linux_glx/pkg COMMENT graphics/opendx-samples/pkg COMMENT graphics/pngcrush/pkg COMMENT irc/nethirc/pkg COMMENT japanese/lookup-mule/../lookup-mule/pkg COMMENT japanese/lyx/pkg COMMENT japanese/lyx-doc/pkg COMMENT japanese/timidity++-slang/pkg COMMENT japanese/timidity++-tcltk/pkg COMMENT japanese/xyagamo/pkg COMMENT lang/gawk/pkg COMMENT lang/librep/pkg COMMENT lang/p5-F77/pkg COMMENT misc/cassowary/pkg COMMENT misc/gtl/pkg COMMENT net/centericq/pkg COMMENT net/ncplib/pkg COMMENT net/poptop/pkg COMMENT net/tac_plus4/pkg COMMENT security/heimdal/pkg COMMENT security/keynote/pkg COMMENT sysutils/flexbackup/pkg COMMENT sysutils/lavaps/pkg COMMENT sysutils/obliterate/pkg COMMENT sysutils/star/pkg COMMENT sysutils/uwatch/pkg COMMENT textproc/p5-Text-CSV_XS/pkg COMMENT x11-toolkits/py-wxPython/pkg COMMENT x11-toolkits/wxgtk/pkg COMMENT x11-wm/epplets/pkg COMMENT Log: General comment cleanups. Revision Changes Path 1.2 +1 -1 ports/audio/gnapster/pkg/COMMENT 1.2 +1 -1 ports/audio/mpg123.el/pkg/COMMENT 1.2 +1 -1 ports/audio/timidity++-emacs/pkg/COMMENT 1.2 +1 -1 ports/audio/timidity++-gtk/pkg/COMMENT 1.3 +1 -1 ports/audio/timidity++-motif/pkg/COMMENT 1.2 +1 -1 ports/audio/timidity++-slang/pkg/COMMENT 1.2 +1 -1 ports/audio/timidity++-tcltk/pkg/COMMENT 1.2 +1 -1 ports/audio/timidity++-xaw/pkg/COMMENT 1.2 +1 -1 ports/audio/timidity++-xskin/pkg/COMMENT 1.2 +1 -1 ports/cad/qcad/pkg/COMMENT 1.2 +1 -1 ports/chinese/arphicttf/pkg/COMMENT 1.2 +1 -1 ports/chinese/autoconvert/pkg/COMMENT 1.2 +1 -1 ports/chinese/cdict/pkg/COMMENT 1.2 +1 -1 ports/databases/mysql322-client/../mysql322-server/pkg/COMMENT.client 1.2 +1 -1 ports/databases/pxtools/pkg/COMMENT 1.2 +1 -1 ports/deskutils/gnofin/pkg/COMMENT 1.2 +1 -1 ports/devel/linuxthreads/pkg/COMMENT 1.2 +1 -1 ports/devel/robodoc/pkg/COMMENT 1.4 +1 -1 ports/editors/vim-lite/../vim5/pkg/COMMENT 1.2 +1 -1 ports/editors/xemacs-mule-sumo/pkg/COMMENT 1.5 +1 -1 ports/editors/xemacs-sumo-packages/pkg/COMMENT 1.4 +1 -1 ports/emulators/bochs/pkg/COMMENT 1.4 +1 -1 ports/games/actx/pkg/COMMENT 1.2 +1 -1 ports/games/wmminichess/pkg/COMMENT 1.2 +1 -1 ports/games/xracer/pkg/COMMENT 1.2 +1 -1 ports/games/xshipwars-client/pkg/COMMENT 1.2 +1 -1 ports/graphics/dia/pkg/COMMENT 1.2 +1 -1 ports/graphics/gxanim/pkg/COMMENT 1.2 +1 -1 ports/graphics/linux_glx/pkg/COMMENT 1.2 +1 -1 ports/graphics/opendx-samples/pkg/COMMENT 1.2 +1 -1 ports/graphics/pngcrush/pkg/COMMENT 1.2 +1 -1 ports/irc/nethirc/pkg/COMMENT 1.2 +1 -1 ports/japanese/lookup-mule/../lookup-mule/pkg/COMMENT 1.4 +1 -1 ports/japanese/lyx/pkg/COMMENT 1.3 +1 -1 ports/japanese/lyx-doc/pkg/COMMENT 1.2 +1 -1 ports/japanese/timidity++-slang/pkg/COMMENT 1.2 +1 -1 ports/japanese/timidity++-tcltk/pkg/COMMENT 1.2 +1 -1 ports/japanese/xyagamo/pkg/COMMENT 1.3 +1 -1 ports/lang/gawk/pkg/COMMENT 1.2 +1 -1 ports/lang/librep/pkg/COMMENT 1.2 +1 -1 ports/lang/p5-F77/pkg/COMMENT 1.2 +1 -1 ports/misc/cassowary/pkg/COMMENT 1.2 +1 -1 ports/misc/gtl/pkg/COMMENT 1.2 +1 -1 ports/net/centericq/pkg/COMMENT 1.2 +1 -1 ports/net/ncplib/pkg/COMMENT 1.2 +1 -1 ports/net/poptop/pkg/COMMENT 1.7 +1 -1 ports/net/tac_plus4/pkg/COMMENT 1.3 +1 -1 ports/security/heimdal/pkg/COMMENT 1.2 +1 -1 ports/security/keynote/pkg/COMMENT 1.3 +1 -1 ports/sysutils/flexbackup/pkg/COMMENT 1.2 +1 -1 ports/sysutils/lavaps/pkg/COMMENT 1.2 +1 -1 ports/sysutils/obliterate/pkg/COMMENT 1.4 +1 -1 ports/sysutils/star/pkg/COMMENT 1.2 +1 -1 ports/sysutils/uwatch/pkg/COMMENT 1.2 +1 -1 ports/textproc/p5-Text-CSV_XS/pkg/COMMENT 1.2 +1 -1 ports/x11-toolkits/py-wxPython/pkg/COMMENT 1.3 +1 -1 ports/x11-toolkits/wxgtk/pkg/COMMENT 1.2 +1 -1 ports/x11-wm/epplets/pkg/COMMENT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 8:39: 5 1999 Delivered-To: cvs-all@freebsd.org Received: from anaconda.lovett.com (anaconda.lovett.com [216.60.121.168]) by hub.freebsd.org (Postfix) with ESMTP id E32B214BCC; Tue, 28 Dec 1999 08:38:59 -0800 (PST) (envelope-from ade@lovett.com) Received: from ade by anaconda.lovett.com with local (Exim 3.12 #1) id 122zeD-000Kzg-00; Tue, 28 Dec 1999 10:38:57 -0600 Date: Tue, 28 Dec 1999 10:38:57 -0600 From: Ade Lovett To: Jeroen Ruigrok/Asmodai Cc: Steve Price , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/lang/tcl82 Makefile ports/x11-toolkits/tk82 Makefile Message-ID: <19991228103857.E76705@lovett.com> References: <199912271555.HAA17679@freefall.freebsd.org> <19991228074705.D88079@daemon.ninth-circle.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <19991228074705.D88079@daemon.ninth-circle.org>; from asmodai@freebsd.org on Tue, Dec 28, 1999 at 07:47:05AM +0100 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Tue, Dec 28, 1999 at 07:47:05AM +0100, Jeroen Ruigrok/Asmodai wrote: > > You might want to be weary about removing 8.0. XF86Setup has been > broken for me and a couple of other people using tcl/tk 8.2 and XFree > 3.3.5. 8.0 almost certainly isn't going to go away any time soon - there are still a number of ports that are going to be difficult to port, since they use various features that have been removed and/or replaced in 8.2 Have you mentioned the XF86Setup/8.2 breakage to the XFree folks? Sounds like something they'd want to fix before releasing their 4.0 -aDe -- Ade Lovett, Austin, TX. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 8:39:25 1999 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 758) id ED622154F4; Tue, 28 Dec 1999 08:39:09 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 7E9F11CD816; Tue, 28 Dec 1999 08:39:09 -0800 (PST) (envelope-from kris@hub.freebsd.org) Date: Tue, 28 Dec 1999 08:39:09 -0800 (PST) From: Kris Kennaway To: cvs-all@freebsd.org, cvs-committers@freebsd.org Subject: Re: cvs commit: src/secure/usr.bin Makefile src/secure/usr.bin/openssl Makefile In-Reply-To: <199912281616.SAA32714@internat.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Tue, 28 Dec 1999, Kris Kennaway wrote: > Log: > Build infrastructure for openssl(1), a general-purpose crypto utility. > Based on, but heavily modified from, the OpenBSD Makefile. The OpenSSL stuff is currently only built if you have USA_RESIDENT == NO, because of bugs with the NO_RSA mode needed for compilation in the US. I've just seen patches on the openssl list which claim to fix this, so it shouldn't take much effort to do so. OpenBSD have sidestepped this problem since they don't have any RSA code in their openssl source, just function stubs (presumably the binaries they ship are built from outside the tree). I'll be fixing this when I get back to the US in early January, as well as hacking in RSAREF support so non-commercial users can use RSA (e.g. for OpenSSH support, which Mark or some other non-US citizen can now import into internat). I'm planning to import a neutered version of the internat code (minus the RSA and IDEA source) onto freefall when I get back, which is the one US people should be using, but in case they're using internat they still won't get an illegal binary out of it. This should work on both the alpha and i386, although there are no platform optimizations performed at present (e.g. assembler code for crypto algorithms). This would just involve some makefile hackery. Hopefully I've committed everything necessary for make world to not break :-) Enjoy! Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 8:42: 6 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C662515486; Tue, 28 Dec 1999 08:42:03 -0800 (PST) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA05720; Tue, 28 Dec 1999 08:42:03 -0800 (PST) (envelope-from hoek@FreeBSD.org) Message-Id: <199912281642.IAA05720@freefall.freebsd.org> From: Tim Vanderhoek Date: Tue, 28 Dec 1999 08:42:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/xemacs-sumo-packages/pkg COMMENT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1999/12/28 08:42:03 PST Modified files: editors/xemacs-sumo-packages/pkg COMMENT Log: Somebody spammed an earlier grammar fix to this file while doing an upgrade. Revision Changes Path 1.6 +1 -1 ports/editors/xemacs-sumo-packages/pkg/COMMENT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 8:47:45 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 17D0214E38; Tue, 28 Dec 1999 08:47:44 -0800 (PST) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA06350; Tue, 28 Dec 1999 08:47:43 -0800 (PST) (envelope-from hoek@FreeBSD.org) Message-Id: <199912281647.IAA06350@freefall.freebsd.org> From: Tim Vanderhoek Date: Tue, 28 Dec 1999 08:47:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/xemacs-mule/pkg COMMENT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1999/12/28 08:47:43 PST Modified files: editors/xemacs-mule/pkg COMMENT Log: Readablify a little. Revision Changes Path 1.4 +1 -1 ports/editors/xemacs-mule/pkg/COMMENT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 8:49:54 1999 Delivered-To: cvs-all@freebsd.org Received: from assaris.sics.se (dyna225-091.nada.kth.se [130.237.225.91]) by hub.freebsd.org (Postfix) with ESMTP id 2BAFC14E38; Tue, 28 Dec 1999 08:49:51 -0800 (PST) (envelope-from assar@assaris.sics.se) Received: (from assar@localhost) by assaris.sics.se (8.9.3/8.9.3) id RAA83838; Tue, 28 Dec 1999 17:50:09 +0100 (CET) (envelope-from assar) To: Robert Watson Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/net gethostbydns.c References: From: Assar Westerlund Date: 28 Dec 1999 17:50:07 +0100 In-Reply-To: owner-cvs-all-digest@FreeBSD.ORG's message of "Tue, 28 Dec 1999 08:30:28 -0800 (PST)" Message-ID: <5ld7rrhuww.fsf@assaris.sics.se> Lines: 21 User-Agent: Gnus/5.070098 (Pterodactyl Gnus v0.98) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Date: Mon, 27 Dec 1999 23:21:09 -0800 (PST) > From: Robert Watson > Subject: cvs commit: src/lib/libc/net gethostbydns.c > > rwatson 1999/12/27 23:21:09 PST > > Modified files: > lib/libc/net gethostbydns.c > Log: > Suppress vast quantities of unneeded warnings spewed by libc's gethostbydns > on encountering a real-world SIG record during a lookup of another type. > > PR: bin/7352 > Reviewed by: peter, eivind > > Revision Changes Path > 1.26 +5 -4 src/lib/libc/net/gethostbydns.c Can you close bin/15056 and also MFC this change? Thanks. /assar To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 9:17:50 1999 Delivered-To: cvs-all@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id 1BD8B14E8B for ; Tue, 28 Dec 1999 09:17:48 -0800 (PST) (envelope-from robert@cyrus.watson.org) Received: from fledge.watson.org (robert@fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.9.3/8.9.3) with SMTP id MAA47100; Tue, 28 Dec 1999 12:17:37 -0500 (EST) (envelope-from robert@cyrus.watson.org) Date: Tue, 28 Dec 1999 12:17:37 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org Reply-To: Robert Watson To: Assar Westerlund Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/net gethostbydns.c In-Reply-To: <5ld7rrhuww.fsf@assaris.sics.se> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On 28 Dec 1999, Assar Westerlund wrote: > > Date: Mon, 27 Dec 1999 23:21:09 -0800 (PST) > > From: Robert Watson > > Subject: cvs commit: src/lib/libc/net gethostbydns.c > > > > rwatson 1999/12/27 23:21:09 PST > > > > Modified files: > > lib/libc/net gethostbydns.c > > Log: > > Suppress vast quantities of unneeded warnings spewed by libc's gethostbydns > > on encountering a real-world SIG record during a lookup of another type. > > > > PR: bin/7352 > > Reviewed by: peter, eivind > > > > Revision Changes Path > > 1.26 +5 -4 src/lib/libc/net/gethostbydns.c > > Can you close bin/15056 and also MFC this change? Thanks. Assar, I went ahead and closed the PR, but have not yet MFC'd it. I plan to do so shortly. I noticed that your patch also ignores T_KEY, not just T_SIG -- have you been getting warnings about T_KEY also? I notice that on our test hosts (for which I wrote my second patch) there are no KEYs bound to hosts where A lookups occur. This suggests that the T_KEY ignore is also required... My original patch also ignored KEY. Robert N M Watson robert@fledge.watson.org http://www.watson.org/~robert/ PGP key fingerprint: AF B5 5F FF A6 4A 79 37 ED 5F 55 E9 58 04 6A B1 TIS Labs at Network Associates, Safeport Network Services To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 9:31:25 1999 Delivered-To: cvs-all@freebsd.org Received: from apollo.backplane.com (apollo.backplane.com [216.240.41.2]) by hub.freebsd.org (Postfix) with ESMTP id 3858714DF7; Tue, 28 Dec 1999 09:31:19 -0800 (PST) (envelope-from dillon@apollo.backplane.com) Received: (from dillon@localhost) by apollo.backplane.com (8.9.3/8.9.1) id JAA42073; Tue, 28 Dec 1999 09:31:18 -0800 (PST) (envelope-from dillon) Date: Tue, 28 Dec 1999 09:31:18 -0800 (PST) From: Matthew Dillon Message-Id: <199912281731.JAA42073@apollo.backplane.com> To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/vm swap_pager.c vm_swap.c References: <199912280730.XAA04145@freefall.freebsd.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk : This will need to be revisited when we swap to files (vnodes) - which : is the other reason for keeping the vnode interface between the swap pager : and the swap devices. We are closer to being able to do this then you think! The same vm_pager_strategy() stuff used to support swap backing store for the VN device is actually an almost completely generalized extension to the concept of a VM pager - it extends the VM pager subsystem by adding not only a strategy call for vm_object pagers (for which we implemented the one for OBJT_SWAP), but also by adding a vm_pager_page_unswapped() call to tie into on-the-fly swap deallocation. I may have to add a vm_pager_fork() entry point, but that should pretty much be it as far as the design goes. We could then create an OBJT_FILESWAP VM object type and use the newly extended VM pager API to implement it. The swap subsystem's radix tree has also been designed to potentially be operated in a dynamic fashion rather then static so we have the choice of either assigning a file to each vm_object layer (which results in creating a new file whenever you fork()), or managing swap within a single file shared across many forks (which requires its own instance of a radix tree for allocation management). The VM pager extension is also designed (originally designed) to eventually take over the I/O path for file I/O, replacing the VOP subsystem's reading and writing functions and tying the I/O directly into the vm_object, allowing us to do all sorts of very cool things. But that is still a year away at best. But we still have two significant problems: First we have a piecemeal fragmentation problem if we use a file for backing store due to the way UFS allocates blocks, and second we still have a number of low-memory deadlock issues due to the extra non-deterministic allocation overhead that occurs when writing to a file. It's possible to simulate most of how a file-backed swap subsystem would work by using mmap() with the new MAP_NOSYNC flag. The only things it can't handle automatically would be fork() and deallocation of underlying file blocks. -Matt Matthew Dillon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 10: 8:14 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1EC8515492; Tue, 28 Dec 1999 10:08:12 -0800 (PST) (envelope-from deischen@FreeBSD.org) Received: (from deischen@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA14459; Tue, 28 Dec 1999 10:08:11 -0800 (PST) (envelope-from deischen@FreeBSD.org) Message-Id: <199912281808.KAA14459@freefall.freebsd.org> From: Daniel Eischen Date: Tue, 28 Dec 1999 10:08:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/uthread uthread_sig.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk deischen 1999/12/28 10:08:11 PST Modified files: lib/libc_r/uthread uthread_sig.c Log: Don't wakeup threads when there is a process signal and no installed handler. Thread-to-thread signals (pthread_signal) are treated differently than process signals; a pthread_signal can wakeup a blocked thread if a signal handler is not installed for that signal. Found by: ACE tests Revision Changes Path 1.23 +38 -24 src/lib/libc_r/uthread/uthread_sig.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 10:11:29 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A566015492; Tue, 28 Dec 1999 10:11:27 -0800 (PST) (envelope-from jasone@FreeBSD.org) Received: (from jasone@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA14771; Tue, 28 Dec 1999 10:11:27 -0800 (PST) (envelope-from jasone@FreeBSD.org) Message-Id: <199912281811.KAA14771@freefall.freebsd.org> From: Jason Evans Date: Tue, 28 Dec 1999 10:11:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/linuxthreads/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jasone 1999/12/28 10:11:26 PST Modified files: devel/linuxthreads/patches patch-aa Log: Make __pthread_attr_init() pthread_attr_init(). Submitted by: "Russell L. Carter" Revision Changes Path 1.4 +86 -80 ports/devel/linuxthreads/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 10:12:16 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6621414C47; Tue, 28 Dec 1999 10:12:14 -0800 (PST) (envelope-from deischen@FreeBSD.org) Received: (from deischen@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA14834; Tue, 28 Dec 1999 10:12:14 -0800 (PST) (envelope-from deischen@FreeBSD.org) Message-Id: <199912281812.KAA14834@freefall.freebsd.org> From: Daniel Eischen Date: Tue, 28 Dec 1999 10:12:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/uthread uthread_init.c uthread_create.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk deischen 1999/12/28 10:12:08 PST Modified files: lib/libc_r/uthread uthread_init.c uthread_create.c Log: Change stack allocation algorithm to make better use of memory (it was leaving an unused block). Also protect the global stack pointer from context changes while fiddling with it. Revision Changes Path 1.20 +6 -8 src/lib/libc_r/uthread/uthread_init.c 1.22 +16 -16 src/lib/libc_r/uthread/uthread_create.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 10:13: 8 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D256414A20; Tue, 28 Dec 1999 10:13:05 -0800 (PST) (envelope-from deischen@FreeBSD.org) Received: (from deischen@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA14972; Tue, 28 Dec 1999 10:13:05 -0800 (PST) (envelope-from deischen@FreeBSD.org) Message-Id: <199912281813.KAA14972@freefall.freebsd.org> From: Daniel Eischen Date: Tue, 28 Dec 1999 10:13:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/uthread uthread_detach.c uthread_fork.c uthread_gc.c uthread_poll.c uthread_priority_queue.c uthread_setschedparam.c uthread_socketpair.c uthread_spec.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk deischen 1999/12/28 10:13:05 PST Modified files: lib/libc_r/uthread uthread_detach.c uthread_fork.c uthread_gc.c uthread_poll.c uthread_priority_queue.c uthread_setschedparam.c uthread_socketpair.c uthread_spec.c Log: -Wall and minor style(9) cleanups. Revision Changes Path 1.11 +1 -2 src/lib/libc_r/uthread/uthread_detach.c 1.16 +10 -10 src/lib/libc_r/uthread/uthread_fork.c 1.11 +2 -3 src/lib/libc_r/uthread/uthread_gc.c 1.5 +2 -2 src/lib/libc_r/uthread/uthread_poll.c 1.4 +2 -2 src/lib/libc_r/uthread/uthread_priority_queue.c 1.5 +2 -2 src/lib/libc_r/uthread/uthread_setschedparam.c 1.7 +2 -1 src/lib/libc_r/uthread/uthread_socketpair.c 1.14 +2 -2 src/lib/libc_r/uthread/uthread_spec.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 11:13:39 1999 Delivered-To: cvs-all@freebsd.org Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.133]) by hub.freebsd.org (Postfix) with ESMTP id 7DCD715498; Tue, 28 Dec 1999 11:13:32 -0800 (PST) (envelope-from mark@grondar.za) Received: from grondar.za (localhost [127.0.0.1]) by gratis.grondar.za (8.10.0.Beta6/8.10.0.Beta6) with ESMTP id dBSJDR343120; Tue, 28 Dec 1999 21:13:28 +0200 (SAST) Message-Id: <199912281913.dBSJDR343120@gratis.grondar.za> To: Kris Kennaway Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/secure/lib Makefile src/secure/lib/libcrypto Makefile Makefile.inc opensslconf-alpha.h opensslconf-i386.h src/secure/lib/libssl Makefile References: <199912281610.SAA32541@internat.freebsd.org> In-Reply-To: <199912281610.SAA32541@internat.freebsd.org> ; from Kris Kennaway "Tue, 28 Dec 1999 18:10:32 +0200." Date: Tue, 28 Dec 1999 21:13:27 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > kris 1999/12/28 18:10:32 SAST > > FreeBSD International Crypto Repository > > Modified files: > secure/lib Makefile > Added files: > secure/lib/libcrypto Makefile Makefile.inc opensslconf-alpha.h > opensslconf-i386.h > secure/lib/libssl Makefile > Log: > Build infrastructure for OpenSSL (libcrypto, libssl). This is currently > restricted to building on non-US sites due to RSA complications. Please add as much of this as possible to Freefall as well, suitably protected by .if exists() constructs. Thanks! 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 Tue Dec 28 11:14:24 1999 Delivered-To: cvs-all@freebsd.org Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.133]) by hub.freebsd.org (Postfix) with ESMTP id 5338815498; Tue, 28 Dec 1999 11:14:16 -0800 (PST) (envelope-from mark@grondar.za) Received: from grondar.za (localhost [127.0.0.1]) by gratis.grondar.za (8.10.0.Beta6/8.10.0.Beta6) with ESMTP id dBSJEB343137; Tue, 28 Dec 1999 21:14:11 +0200 (SAST) Message-Id: <199912281914.dBSJEB343137@gratis.grondar.za> To: Kris Kennaway Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/secure/usr.bin Makefile src/secure/usr.bin/openssl Makefile References: <199912281616.SAA32714@internat.freebsd.org> In-Reply-To: <199912281616.SAA32714@internat.freebsd.org> ; from Kris Kennaway "Tue, 28 Dec 1999 18:16:35 +0200." Date: Tue, 28 Dec 1999 21:14:11 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > kris 1999/12/28 18:16:35 SAST > > FreeBSD International Crypto Repository > > Modified files: > secure/usr.bin Makefile > Added files: > secure/usr.bin/openssl Makefile > Log: > Build infrastructure for openssl(1), a general-purpose crypto utility. > Based on, but heavily modified from, the OpenBSD Makefile. Freefall also, please... 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 Tue Dec 28 11:15:58 1999 Delivered-To: cvs-all@freebsd.org Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.133]) by hub.freebsd.org (Postfix) with ESMTP id A048615060; Tue, 28 Dec 1999 11:15:49 -0800 (PST) (envelope-from mark@grondar.za) Received: from grondar.za (localhost [127.0.0.1]) by gratis.grondar.za (8.10.0.Beta6/8.10.0.Beta6) with ESMTP id dBSJFd343172; Tue, 28 Dec 1999 21:15:39 +0200 (SAST) Message-Id: <199912281915.dBSJFd343172@gratis.grondar.za> To: Kris Kennaway Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/secure/lib Makefile src/secure/lib/libcrypto Makefile Makefile.inc opensslconf-alpha.h opensslconf-i386.h src/secure/lib/libssl Makefile References: <199912281610.SAA32541@internat.freebsd.org> In-Reply-To: <199912281610.SAA32541@internat.freebsd.org> ; from Kris Kennaway "Tue, 28 Dec 1999 18:10:32 +0200." Date: Tue, 28 Dec 1999 21:15:39 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > kris 1999/12/28 18:10:32 SAST > > FreeBSD International Crypto Repository > > Modified files: > secure/lib Makefile > Added files: > secure/lib/libcrypto Makefile Makefile.inc opensslconf-alpha.h > opensslconf-i386.h > secure/lib/libssl Makefile > Log: > Build infrastructure for OpenSSL (libcrypto, libssl). This is currently > restricted to building on non-US sites due to RSA complications. Please add as much of this as possible to Freefall as well, suitably protected by .if exists() constructs. Thanks! 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 Tue Dec 28 12:23:44 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9704114E9A; Tue, 28 Dec 1999 12:23:40 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA26405; Tue, 28 Dec 1999 12:23:22 -0800 (PST) (envelope-from billf@FreeBSD.org) Message-Id: <199912282023.MAA26405@freefall.freebsd.org> From: Bill Fumerola Date: Tue, 28 Dec 1999 12:23:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/bottlerocket/files md5 ports/misc/bottlerocket/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1999/12/28 12:23:22 PST Modified files: misc/bottlerocket/files md5 Added files: misc/bottlerocket/patches patch-aa Log: Upgrade port to 0.04c, respect CFLAGS. Approved by: msmith (MAINTAINER) Revision Changes Path 1.2 +1 -1 ports/misc/bottlerocket/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 Dec 28 12:27:32 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C796015502; Tue, 28 Dec 1999 12:27:29 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA26863; Tue, 28 Dec 1999 12:27:24 -0800 (PST) (envelope-from billf@FreeBSD.org) Message-Id: <199912282027.MAA26863@freefall.freebsd.org> From: Bill Fumerola Date: Tue, 28 Dec 1999 12:27:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/bottlerocket Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1999/12/28 12:27:24 PST Modified files: misc/bottlerocket Makefile Log: If brains were dynamite, CVS couldn't blow its nose. See ports/misc/bottlerocket/files/md5:1.2 for the correct cvs log. Revision Changes Path 1.3 +3 -3 ports/misc/bottlerocket/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 13: 4:19 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C40A14EE9; Tue, 28 Dec 1999 13:04:17 -0800 (PST) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA29217; Tue, 28 Dec 1999 13:00:26 -0800 (PST) (envelope-from jkh@FreeBSD.org) Message-Id: <199912282100.NAA29217@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Tue, 28 Dec 1999 13:00:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/mount mount.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1999/12/28 13:00:26 PST Modified files: (Branch: RELENG_3) sbin/mount mount.c Log: MFC: eliminate trailing slashes in mount targets. Revision Changes Path 1.28.2.5 +2 -1 src/sbin/mount/mount.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 13:38:48 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F326A15039; Tue, 28 Dec 1999 13:38:45 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA32587; Tue, 28 Dec 1999 13:38:14 -0800 (PST) (envelope-from obrien@FreeBSD.org) Message-Id: <199912282138.NAA32587@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 28 Dec 1999 13:38:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/periodic/daily 200.backup-passwd 210.backup-aliases Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1999/12/28 13:38:13 PST Modified files: etc/periodic/daily 200.backup-passwd 210.backup-aliases Log: Use the *much* more readable unified diff format. Revision Changes Path 1.4 +3 -3 src/etc/periodic/daily/200.backup-passwd 1.3 +2 -2 src/etc/periodic/daily/210.backup-aliases To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 13:45:22 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E6A7814BCC; Tue, 28 Dec 1999 13:45:18 -0800 (PST) (envelope-from nik@FreeBSD.org) Received: (from nik@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA33402; Tue, 28 Dec 1999 13:45:18 -0800 (PST) (envelope-from nik@FreeBSD.org) Message-Id: <199912282145.NAA33402@freefall.freebsd.org> From: Nik Clayton Date: Tue, 28 Dec 1999 13:45:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/tutorials index.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nik 1999/12/28 13:45:18 PST Modified files: en/tutorials index.sgml Log: Remove the links to the 'make world' tutorial, it's been integrated into the Handbook. Revision Changes Path 1.11 +2 -5 www/en/tutorials/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 13:47:52 1999 Delivered-To: cvs-all@freebsd.org Received: from m0.cs.berkeley.edu (m0.CS.Berkeley.EDU [128.32.45.176]) by hub.freebsd.org (Postfix) with ESMTP id 2550114D8F; Tue, 28 Dec 1999 13:47:48 -0800 (PST) (envelope-from asami@stampede.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca41-199.ix.netcom.com [209.111.208.199]) by m0.cs.berkeley.edu (8.9.3/8.9.3) with ESMTP id NAA85506; Tue, 28 Dec 1999 13:47:24 -0800 (PST) (envelope-from asami@stampede.cs.berkeley.edu) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id NAA55828; Tue, 28 Dec 1999 13:46:38 -0800 (PST) To: Steve Price Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/java Makefile ports/java/starlogo Makefile ports/java/starlogo/files md5 ports/java/starlogo/patches patch-aa ports/java/starlogo/pkg COMMENT DESCR PLIST References: <199912270146.RAA88159@freefall.freebsd.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 28 Dec 1999 13:46:27 -0800 In-Reply-To: Steve Price's message of "Sun, 26 Dec 1999 17:46:01 -0800 (PST)" Message-ID: Lines: 10 X-Mailer: Gnus v5.7/Emacs 20.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * The Logo programming language written in Java I can't access their homepage (it says "your client doesn't have permission"), but if this is a Logo implementation in Java, it should be put along with other Logo ports, i.e., in "lang". If it's an extension with Java support (or something like that), I think it's fine here. -PW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 13:49: 6 1999 Delivered-To: cvs-all@freebsd.org Received: from m0.cs.berkeley.edu (m0.CS.Berkeley.EDU [128.32.45.176]) by hub.freebsd.org (Postfix) with ESMTP id 40B3F14EE9; Tue, 28 Dec 1999 13:49:04 -0800 (PST) (envelope-from asami@stampede.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca41-199.ix.netcom.com [209.111.208.199]) by m0.cs.berkeley.edu (8.9.3/8.9.3) with ESMTP id NAA85549; Tue, 28 Dec 1999 13:48:32 -0800 (PST) (envelope-from asami@stampede.cs.berkeley.edu) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id NAA55845; Tue, 28 Dec 1999 13:47:31 -0800 (PST) To: Steve Price Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/textproc Makefile ports/textproc/pstotext Makefile ports/textproc/pstotext/files md5 ports/textproc/pstotext/patches patch-aa ports/textproc/pstotext/pkg COMMENT DESCR PLIST References: <199912270207.SAA90799@freefall.freebsd.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 28 Dec 1999 13:47:21 -0800 In-Reply-To: Steve Price's message of "Sun, 26 Dec 1999 18:07:45 -0800 (PST)" Message-ID: Lines: 9 X-Mailer: Gnus v5.7/Emacs 20.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Adding pstotext version 2.1 * A PostScript to text converter. We generally put all PostScript-related stuff in "print". (Maybe we should make a new category "postscript"? There are a lot of them....) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 13:52:46 1999 Delivered-To: cvs-all@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 92132154D2; Tue, 28 Dec 1999 13:52:42 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (root@d60-025.leach.ucdavis.edu [169.237.60.25]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id NAA08220; Tue, 28 Dec 1999 13:52:41 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id NAA06566; Tue, 28 Dec 1999 13:52:41 -0800 (PST) (envelope-from obrien) Date: Tue, 28 Dec 1999 13:52:41 -0800 From: "David O'Brien" To: Kris Kennaway Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin Makefile src/usr.bin/fpr Makefile fpr.1 fpr.c src/usr.bin/fsplit Makefile fsplit.1 fsplit.c Message-ID: <19991228135241.B6358@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <199912221430.GAA46215@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <199912221430.GAA46215@freefall.freebsd.org>; from kris@FreeBSD.org on Wed, Dec 22, 1999 at 06:30:43AM -0800 X-Operating-System: FreeBSD 4.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Removed files: > usr.bin/fpr Makefile fpr.1 fpr.c > usr.bin/fsplit Makefile fsplit.1 fsplit.c > Log: > Say goodbye to some crufty old fortran code. I believe the opinion was removing these would be fine *_IF_* ports of them were made. I may have missed it, but I fail to see where you committed ports of these. -- -- David (obrien@NUXI.com) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 14: 8:17 1999 Delivered-To: cvs-all@freebsd.org Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.95.76.54]) by hub.freebsd.org (Postfix) with ESMTP id 0A0A015539; Tue, 28 Dec 1999 14:08:03 -0800 (PST) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.9.3/8.9.3) id OAA80330; Tue, 28 Dec 1999 14:03:54 -0800 (PST) (envelope-from sgk) From: Steve Kargl Message-Id: <199912282203.OAA80330@troutmask.apl.washington.edu> Subject: Re: cvs commit: src/usr.bin Makefile src/usr.bin/fpr Makefile fpr.1 fpr.c src/usr.bin/fsplit Makefile fsplit.1 fsplit.c In-Reply-To: <19991228135241.B6358@dragon.nuxi.com> from "David O'Brien" at "Dec 28, 1999 01:52:41 pm" To: obrien@FreeBSD.ORG Date: Tue, 28 Dec 1999 14:03:54 -0800 (PST) Cc: kris@FreeBSD.ORG (Kris Kennaway), cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk David O'Brien wrote: > > Removed files: > > usr.bin/fpr Makefile fpr.1 fpr.c > > usr.bin/fsplit Makefile fsplit.1 fsplit.c > > Log: > > Say goodbye to some crufty old fortran code. > > I believe the opinion was removing these would be fine *_IF_* ports of > them were made. I may have missed it, but I fail to see where you > committed ports of these. > ports/devel/fortran-utils There is an outstanding PR about fsplit. That PR contains a patch which fixes several buffer overflow problems. -- Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 14:13: 9 1999 Delivered-To: cvs-all@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 559891551E; Tue, 28 Dec 1999 14:12:26 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (root@d60-025.leach.ucdavis.edu [169.237.60.25]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id OAA08280; Tue, 28 Dec 1999 14:09:00 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id OAA06665; Tue, 28 Dec 1999 14:09:00 -0800 (PST) (envelope-from obrien) Date: Tue, 28 Dec 1999 14:09:00 -0800 From: "David O'Brien" To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.sbin/chown Makefile Message-ID: <19991228140900.C6358@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <199912140619.WAA18072@gndrsh.dnsmgr.net> <199912140706.XAA13555@apollo.backplane.com> <19991219145446.A69938@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <19991219145446.A69938@dragon.nuxi.com>; from obrien@FreeBSD.ORG on Sun, Dec 19, 1999 at 02:54:46PM -0800 X-Operating-System: FreeBSD 4.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, Dec 19, 1999 at 02:54:46PM -0800, David O'Brien wrote: > I'll be reverting this. But it will take a week or so. I'm still going to do this, but it will be after 1st of the year. Sorry. -- -- David (obrien@NUXI.com) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 14:18:31 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E5A914D9E; Tue, 28 Dec 1999 14:18:29 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA35997; Tue, 28 Dec 1999 14:14:43 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912282214.OAA35997@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Tue, 28 Dec 1999 14:14:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/28 14:14:42 PST Modified files: en_US.ISO_8859-1/books/handbook/contrib chapter.sgml Log: Add Yuuki SAWADA for his enfle port Revision Changes Path 1.144 +6 -2 doc/en_US.ISO_8859-1/books/handbook/contrib/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 14:27:26 1999 Delivered-To: cvs-all@freebsd.org Received: from assaris.sics.se (dyna225-091.nada.kth.se [130.237.225.91]) by hub.freebsd.org (Postfix) with ESMTP id BB52F14A07 for ; Tue, 28 Dec 1999 14:27:22 -0800 (PST) (envelope-from assar@assaris.sics.se) Received: (from assar@localhost) by assaris.sics.se (8.9.3/8.9.3) id XAA86020; Tue, 28 Dec 1999 23:24:42 +0100 (CET) (envelope-from assar) To: Robert Watson Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/net gethostbydns.c References: From: Assar Westerlund Date: 28 Dec 1999 23:24:40 +0100 In-Reply-To: Robert Watson's message of "Tue, 28 Dec 1999 12:17:37 -0500 (EST)" Message-ID: <5l66xiln4n.fsf@assaris.sics.se> Lines: 15 User-Agent: Gnus/5.070098 (Pterodactyl Gnus v0.98) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Robert Watson writes: > I went ahead and closed the PR, but have not yet MFC'd it. I plan to do > so shortly. Great. > I noticed that your patch also ignores T_KEY, not just T_SIG -- have you > been getting warnings about T_KEY also? No, I've only been getting warnings on T_SIG. But my reading of section 3.5 in RFC2535 seems to say that KEY rr can also be included in responses. I'm not quite if you can also get back NXT RR? I think that will only happen when you query for an unexisting name. /assar To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 14:32:29 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AF62115579; Tue, 28 Dec 1999 14:32:25 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA37550; Tue, 28 Dec 1999 14:32:25 -0800 (PST) (envelope-from obrien@FreeBSD.org) Message-Id: <199912282232.OAA37550@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 28 Dec 1999 14:32:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/gasp/doc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1999/12/28 14:32:25 PST Added files: gnu/usr.bin/binutils/gasp/doc Makefile Log: Build and install the GASP info page. Unfortunately there is no manpage. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 14:35:20 1999 Delivered-To: cvs-all@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id A34D0155BA; Tue, 28 Dec 1999 14:35:14 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (root@d60-025.leach.ucdavis.edu [169.237.60.25]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id OAA08442; Tue, 28 Dec 1999 14:35:14 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id OAA06886; Tue, 28 Dec 1999 14:35:11 -0800 (PST) (envelope-from obrien) Date: Tue, 28 Dec 1999 14:35:10 -0800 From: "David O'Brien" To: Doug Rabson Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/objformat Makefile Message-ID: <19991228143510.D6358@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from dfr@nlsystems.com on Fri, Dec 24, 1999 at 05:41:26PM +0000 X-Operating-System: FreeBSD 4.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Fri, Dec 24, 1999 at 05:41:26PM +0000, Doug Rabson wrote: > > > Doh! I knew there was something I forgot to commit.. > > > > It must have been gasp.info :-). > > I don't think its worth the space. Even glide stopped using gasp for Glide > 3. But if we have the util installed, we should have matching docs for it. -- -- David (obrien@NUXI.com) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 15:18:37 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C118915510; Tue, 28 Dec 1999 15:18:35 -0800 (PST) (envelope-from msmith@FreeBSD.org) Received: (from msmith@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA41533; Tue, 28 Dec 1999 15:18:35 -0800 (PST) (envelope-from msmith@FreeBSD.org) Message-Id: <199912282318.PAA41533@freefall.freebsd.org> From: Mike Smith Date: Tue, 28 Dec 1999 15:18:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet tcp_subr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1999/12/28 15:18:35 PST Modified files: sys/netinet tcp_subr.c Log: Make tcp_drain() actually do something. When invoked (usually as a desperation measure in low-memory situations), walk the tcpbs and flush the reassembly queues. This behaviour is currently controlled by the debug.do_tcpdrain sysctl (defaults to on). Submitted by: Bosko Milekic Reviewed by: wollman Revision Changes Path 1.65 +30 -1 src/sys/netinet/tcp_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 15:47:20 1999 Delivered-To: cvs-all@freebsd.org Received: from emmi.physik.TU-Berlin.DE (emmi.physik.TU-Berlin.DE [130.149.160.103]) by hub.freebsd.org (Postfix) with ESMTP id E2693154E6; Tue, 28 Dec 1999 15:47:15 -0800 (PST) (envelope-from ibex@emmi.physik.TU-Berlin.DE) Received: (from ibex@localhost) by emmi.physik.TU-Berlin.DE (8.9.3/8.9.3) id AAA09345; Wed, 29 Dec 1999 00:47:13 +0100 (CET) (envelope-from ibex) Date: Wed, 29 Dec 1999 00:47:13 +0100 From: Dirk Froemberg To: Kris Kennaway Cc: cvs-all@freebsd.org, cvs-committers@freebsd.org Subject: Re: cvs commit: src/secure/usr.bin Makefile src/secure/usr.bin/openssl Makefile Message-ID: <19991229004713.A9128@physik.TU-Berlin.DE> References: <199912281616.SAA32714@internat.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from kris@hub.freebsd.org on Tue, Dec 28, 1999 at 08:39:09AM -0800 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Hi Kris! On Tue, Dec 28, 1999 at 08:39:09AM -0800, Kris Kennaway wrote: > On Tue, 28 Dec 1999, Kris Kennaway wrote: > > > Log: > > Build infrastructure for openssl(1), a general-purpose crypto utility. > > Based on, but heavily modified from, the OpenBSD Makefile. > > [...] > Hopefully I've committed everything necessary for make world to not break > :-) Enjoy! Works fine for me. But what about the openssl port and the ports depending on/using the openssl port, now? Will this be merged into RELENG_3? If not we'll have to surround dependecies to openssl by something like .if !exists(/usr/lib/libcrypto.so) || !exists(/usr/lib/libssl.so) LIB_DEPENDS= crypto.1:${PORTSDIR}/security/openssl .endif and skip building of the openssl port if openssl is already in the base system .if exists(/usr/lib/libcrypto.so) && exists(/usr/lib/libssl.so) FORBIDDEN= "openssl already in the base system" .endif Any thoughts? Regards Dirk -- Dirk Froemberg FreeBSD: The Power to Serve! http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 15:58:37 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 57C5514EE5; Tue, 28 Dec 1999 15:58:36 -0800 (PST) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA49264; Tue, 28 Dec 1999 15:58:36 -0800 (PST) (envelope-from jim@FreeBSD.org) Message-Id: <199912282358.PAA49264@freefall.freebsd.org> From: Jim Mock Date: Tue, 28 Dec 1999 15:58:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/gaim/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jim 1999/12/28 15:58:36 PST Added files: net/gaim/patches patch-aa Log: Fix a crash on -STABLE with a SIGFPE error which would happen every few seconds after startup. Submitted by: Vivek Khera To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 16:28:17 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A5DFF14EE5; Tue, 28 Dec 1999 16:28:15 -0800 (PST) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA62730; Tue, 28 Dec 1999 16:28:15 -0800 (PST) (envelope-from jim@FreeBSD.org) Message-Id: <199912290028.QAA62730@freefall.freebsd.org> From: Jim Mock Date: Tue, 28 Dec 1999 16:28:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/wmbiff/patches patch-ab Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jim 1999/12/28 16:28:15 PST Added files: mail/wmbiff/patches patch-ab Log: Fix coredump that occurred if the MAIL environment variable is not set. Submitted by: Erwan Arzur To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 16:38:59 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 81CB614E60; Tue, 28 Dec 1999 16:38:55 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA67274; Tue, 28 Dec 1999 16:38:55 -0800 (PST) (envelope-from obrien@FreeBSD.org) Message-Id: <199912290038.QAA67274@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 28 Dec 1999 16:38:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/gasp Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1999/12/28 16:38:52 PST Modified files: gnu/usr.bin/binutils/gasp Makefile Log: Hookup the info docs. Revision Changes Path 1.4 +3 -1 src/gnu/usr.bin/binutils/gasp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 16:46:54 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F15515557; Tue, 28 Dec 1999 16:46:52 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA69900; Tue, 28 Dec 1999 16:46:51 -0800 (PST) (envelope-from imp@FreeBSD.org) Message-Id: <199912290046.QAA69900@freefall.freebsd.org> From: Warner Losh Date: Tue, 28 Dec 1999 16:46:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/seahaven/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk imp 1999/12/28 16:46:50 PST Added files: games/seahaven/patches patch-aa Log: Don't divide by zero when starting with no wins/losses. PR: 14176 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 17:11:33 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 67DCF1500A; Tue, 28 Dec 1999 17:11:30 -0800 (PST) (envelope-from msmith@FreeBSD.org) Received: (from msmith@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA73381; Tue, 28 Dec 1999 17:11:30 -0800 (PST) (envelope-from msmith@FreeBSD.org) Message-Id: <199912290111.RAA73381@freefall.freebsd.org> From: Mike Smith Date: Tue, 28 Dec 1999 17:11:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc MAKEDEV Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1999/12/28 17:11:29 PST Modified files: etc MAKEDEV Log: Add support for building the 'mlx?' devices, which will be used by the upcoming 'mlxcontrol' utility. Revision Changes Path 1.230 +10 -2 src/etc/MAKEDEV To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 17:33:40 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B0AA714C95; Tue, 28 Dec 1999 17:33:35 -0800 (PST) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA74671; Tue, 28 Dec 1999 17:33:35 -0800 (PST) (envelope-from jim@FreeBSD.org) Message-Id: <199912290133.RAA74671@freefall.freebsd.org> From: Jim Mock Date: Tue, 28 Dec 1999 17:33:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-clocks/wmtz Makefile ports/x11-clocks/wmtz/files md5 ports/x11-clocks/wmtz/patches patch-aa patch-ab Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jim 1999/12/28 17:33:35 PST Modified files: x11-clocks/wmtz Makefile x11-clocks/wmtz/files md5 x11-clocks/wmtz/patches patch-aa patch-ab Log: Update to version 0.5 Revision Changes Path 1.7 +3 -3 ports/x11-clocks/wmtz/Makefile 1.3 +1 -1 ports/x11-clocks/wmtz/files/md5 1.3 +13 -14 ports/x11-clocks/wmtz/patches/patch-aa 1.2 +11 -13 ports/x11-clocks/wmtz/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 Tue Dec 28 17:37:42 1999 Delivered-To: cvs-all@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id 7C94615527 for ; Tue, 28 Dec 1999 17:37:40 -0800 (PST) (envelope-from robert@cyrus.watson.org) Received: from fledge.watson.org (robert@fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.9.3/8.9.3) with SMTP id UAA49103; Tue, 28 Dec 1999 20:37:38 -0500 (EST) (envelope-from robert@cyrus.watson.org) Date: Tue, 28 Dec 1999 20:37:38 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org Reply-To: Robert Watson To: Assar Westerlund Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/net gethostbydns.c In-Reply-To: <5l66xiln4n.fsf@assaris.sics.se> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On 28 Dec 1999, Assar Westerlund wrote: > Robert Watson writes: > > I went ahead and closed the PR, but have not yet MFC'd it. I plan to d= o > > so shortly. >=20 > Great. >=20 > > I noticed that your patch also ignores T_KEY, not just T_SIG -- have yo= u > > been getting warnings about T_KEY also? >=20 > No, I've only been getting warnings on T_SIG. But my reading of > section 3.5 in RFC2535 seems to say that KEY rr can also be included > in responses. I'm not quite if you can also get back NXT RR? I think > that will only happen when you query for an unexisting name. The DNSsec people around TIS that I asked seem to think that KEY records only come in the Additional Records section of the packet, so shouldn't (?) cause warnings, unlike the SIG records that come in the Answer section. I'll assume its ok, and see if any warnings happen :-). As you point out, NXT's only come in the event of a failed lookup,=A0and I haven't seen any warnings for that. On the other hand, NXT isn't implemented much/at all/correctly in existing name servers. There were some privacy concerns expressed about NXT walking, but I'm not sure that's really an issue.=20 Robert N M Watson=20 robert@fledge.watson.org http://www.watson.org/~robert/ PGP key fingerprint: AF B5 5F FF A6 4A 79 37 ED 5F 55 E9 58 04 6A B1 TIS Labs at Network Associates, Safeport Network Services To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 17:49:15 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D528C14F0D; Tue, 28 Dec 1999 17:49:12 -0800 (PST) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA75836; Tue, 28 Dec 1999 17:49:12 -0800 (PST) (envelope-from jkh@FreeBSD.org) Message-Id: <199912290149.RAA75836@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Tue, 28 Dec 1999 17:49:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/sysinstall dist.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1999/12/28 17:49:12 PST Modified files: release/sysinstall dist.c Log: Only print "couldn't install distributions" popup if any actual distributions were found to go along with the residual mask value. Revision Changes Path 1.161 +6 -4 src/release/sysinstall/dist.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 17:50:13 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1C11915567; Tue, 28 Dec 1999 17:50:12 -0800 (PST) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA75957; Tue, 28 Dec 1999 17:50:12 -0800 (PST) (envelope-from jkh@FreeBSD.org) Message-Id: <199912290150.RAA75957@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Tue, 28 Dec 1999 17:50:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/sysinstall dist.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1999/12/28 17:50:11 PST Modified files: (Branch: RELENG_3) release/sysinstall dist.c Log: MFC: check distribution list. Revision Changes Path 1.132.2.21 +6 -4 src/release/sysinstall/dist.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 18:47: 5 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C7E3214FB3; Tue, 28 Dec 1999 18:47:03 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA80193; Tue, 28 Dec 1999 18:47:03 -0800 (PST) (envelope-from billf@FreeBSD.org) Message-Id: <199912290247.SAA80193@freefall.freebsd.org> From: Bill Fumerola Date: Tue, 28 Dec 1999 18:47:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci pcisupport.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1999/12/28 18:47:03 PST Modified files: sys/pci pcisupport.c Log: Add the Id for the NeoMagic 256ZX, the display from which I'm seeing this.. Revision Changes Path 1.140 +3 -1 src/sys/pci/pcisupport.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 18:50:45 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 757EC15144; Tue, 28 Dec 1999 18:50:43 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA80466; Tue, 28 Dec 1999 18:50:43 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912290250.SAA80466@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Tue, 28 Dec 1999 18:50:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/archivers/makeself Makefile ports/archivers/makeself/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/28 18:50:43 PST Modified files: archivers/makeself Makefile archivers/makeself/files md5 Log: Update port to 1.5.3 PR: 15755 Submitted by: Maintainer Revision Changes Path 1.2 +10 -4 ports/archivers/makeself/Makefile 1.3 +1 -1 ports/archivers/makeself/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 Dec 28 19:37: 0 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E67E150FB; Tue, 28 Dec 1999 19:36:59 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA83973; Tue, 28 Dec 1999 19:36:58 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912290336.TAA83973@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Tue, 28 Dec 1999 19:36:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/28 19:36:58 PST Modified files: . modules Log: p5-DBD-CSV --> ports/databases/p5-DBD-CSV Revision Changes Path 1.717 +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 Dec 28 19:37:43 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AB01814D27; Tue, 28 Dec 1999 19:37:41 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA84028; Tue, 28 Dec 1999 19:37:41 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912290337.TAA84028@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Tue, 28 Dec 1999 19:37:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/p5-DBD-CSV - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/28 19:37:40 PST ports/databases/p5-DBD-CSV - Imported sources Update of /home/ncvs/ports/databases/p5-DBD-CSV In directory freefall.freebsd.org:/c/users/jedgar/work/p5-DBD-CSV Log Message: Perl module for accessing comma-separated values (CSV) via DBD PR: 12903 Submitted by: Dirk Meyer Status: Vendor Tag: DMEYER Release Tags: v_0_1022 N ports/databases/p5-DBD-CSV/Makefile N ports/databases/p5-DBD-CSV/files/md5 N ports/databases/p5-DBD-CSV/pkg/COMMENT N ports/databases/p5-DBD-CSV/pkg/DESCR N ports/databases/p5-DBD-CSV/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 19:38:44 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3677915079; Tue, 28 Dec 1999 19:38:43 -0800 (PST) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA84113; Tue, 28 Dec 1999 19:38:43 -0800 (PST) (envelope-from jkh@FreeBSD.org) Message-Id: <199912290338.TAA84113@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Tue, 28 Dec 1999 19:38:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en includes.sgml where.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1999/12/28 19:38:42 PST Modified files: en includes.sgml where.sgml Log: 3.3 -> 3.4 Revision Changes Path 1.32 +3 -3 www/en/includes.sgml 1.41 +4 -6 www/en/where.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 19:39:33 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B3311500A; Tue, 28 Dec 1999 19:39:31 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA84237; Tue, 28 Dec 1999 19:39:30 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912290339.TAA84237@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Tue, 28 Dec 1999 19:39:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/28 19:39:30 PST Modified files: databases Makefile Log: Activate p5-DBD-CSV Revision Changes Path 1.50 +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 Tue Dec 28 19:46:58 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0169714BCD; Tue, 28 Dec 1999 19:46:56 -0800 (PST) (envelope-from cg@FreeBSD.org) Received: (from cg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA84953; Tue, 28 Dec 1999 19:46:55 -0800 (PST) (envelope-from cg@FreeBSD.org) Message-Id: <199912290346.TAA84953@freefall.freebsd.org> From: Cameron Grant Date: Tue, 28 Dec 1999 19:46:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/isa ad1816.c mss.c sb.c src/sys/dev/sound/pci aureal.c csapcm.c es137x.c t4dwave.c src/sys/dev/sound/pcm channel.c channel.h datatypes.h dsp.c sound.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk cg 1999/12/28 19:46:55 PST Modified files: sys/dev/sound/isa ad1816.c mss.c sb.c sys/dev/sound/pci aureal.c csapcm.c es137x.c t4dwave.c sys/dev/sound/pcm channel.c channel.h datatypes.h dsp.c sound.h Log: - latest 2ndbuffer patch - make chn_setdir work for rec on isa cards - note: es1371 does not irq in smp Submitted by: tanimura Revision Changes Path 1.7 +2 -1 src/sys/dev/sound/isa/ad1816.c 1.40 +2 -1 src/sys/dev/sound/isa/mss.c 1.45 +3 -1 src/sys/dev/sound/isa/sb.c 1.6 +2 -1 src/sys/dev/sound/pci/aureal.c 1.4 +2 -1 src/sys/dev/sound/pci/csapcm.c 1.8 +3 -2 src/sys/dev/sound/pci/es137x.c 1.6 +2 -1 src/sys/dev/sound/pci/t4dwave.c 1.15 +360 -143 src/sys/dev/sound/pcm/channel.c 1.5 +9 -4 src/sys/dev/sound/pcm/channel.h 1.8 +3 -1 src/sys/dev/sound/pcm/datatypes.h 1.13 +101 -53 src/sys/dev/sound/pcm/dsp.c 1.8 +5 -3 src/sys/dev/sound/pcm/sound.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 20:25: 8 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 56CAC14E46; Tue, 28 Dec 1999 20:25:03 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA87666; Tue, 28 Dec 1999 20:25:03 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912290425.UAA87666@freefall.freebsd.org> From: Peter Wemm Date: Tue, 28 Dec 1999 20:25:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys _posix.h acct.h acl.h aio.h buf.h bus.h callout.h cdio.h chio.h clist.h conf.h cons.h consio.h ctype.h devicestat.h dirent.h disklabel.h diskslice.h dkstat.h dmap.h domain.h errno.h exec.h extattr.h fbio.h fcntl.h file.h filedesc.h ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/28 20:25:03 PST Modified files: sys/sys _posix.h acct.h acl.h aio.h buf.h bus.h callout.h cdio.h chio.h clist.h conf.h cons.h consio.h ctype.h devicestat.h dirent.h disklabel.h diskslice.h dkstat.h dmap.h domain.h errno.h exec.h extattr.h fbio.h fcntl.h file.h filedesc.h imgact.h imgact_aout.h imgact_elf.h inflate.h ioccom.h ioctl.h ipc.h jail.h kbio.h kernel.h ktrace.h linker.h malloc.h mbuf.h md5.h memrange.h mman.h module.h mount.h msg.h msgbuf.h mtio.h namei.h param.h pipe.h poll.h proc.h protosw.h ptrace.h queue.h resource.h resourcevar.h rman.h rtprio.h select.h sem.h shm.h signal.h signalvar.h snoop.h socket.h socketvar.h soundcard.h stat.h sysctl.h sysent.h syslog.h tablet.h termios.h time.h timepps.h times.h timex.h tty.h types.h ucred.h uio.h un.h user.h utsname.h vmmeter.h vnode.h wait.h Log: Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL" is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come. Revision Changes Path 1.6 +3 -3 src/sys/sys/_posix.h 1.12 +3 -3 src/sys/sys/acct.h 1.2 +4 -4 src/sys/sys/acl.h 1.12 +2 -2 src/sys/sys/aio.h 1.87 +7 -7 src/sys/sys/buf.h 1.30 +3 -3 src/sys/sys/bus.h 1.15 +3 -3 src/sys/sys/callout.h 1.21 +2 -2 src/sys/sys/cdio.h 1.15 +2 -2 src/sys/sys/chio.h 1.10 +2 -2 src/sys/sys/clist.h 1.102 +4 -4 src/sys/sys/conf.h 1.23 +3 -3 src/sys/sys/cons.h 1.3 +2 -2 src/sys/sys/consio.h 1.2 +3 -3 src/sys/sys/ctype.h 1.9 +2 -2 src/sys/sys/devicestat.h 1.11 +2 -2 src/sys/sys/dirent.h 1.49 +5 -5 src/sys/sys/disklabel.h 1.35 +4 -4 src/sys/sys/diskslice.h 1.12 +2 -2 src/sys/sys/dkstat.h 1.7 +2 -2 src/sys/sys/dmap.h 1.14 +2 -2 src/sys/sys/domain.h 1.14 +3 -3 src/sys/sys/errno.h 1.26 +2 -2 src/sys/sys/exec.h 1.2 +3 -3 src/sys/sys/extattr.h 1.9 +2 -2 src/sys/sys/fbio.h 1.9 +7 -7 src/sys/sys/fcntl.h 1.22 +4 -4 src/sys/sys/file.h 1.18 +2 -2 src/sys/sys/filedesc.h 1.22 +2 -2 src/sys/sys/imgact.h 1.13 +3 -3 src/sys/sys/imgact_aout.h 1.17 +3 -3 src/sys/sys/imgact_elf.h 1.11 +3 -3 src/sys/sys/inflate.h 1.9 +3 -3 src/sys/sys/ioccom.h 1.9 +2 -2 src/sys/sys/ioctl.h 1.15 +4 -4 src/sys/sys/ipc.h 1.6 +4 -4 src/sys/sys/jail.h 1.5 +2 -2 src/sys/sys/kbio.h 1.61 +3 -3 src/sys/sys/kernel.h 1.19 +4 -4 src/sys/sys/ktrace.h 1.17 +6 -6 src/sys/sys/linker.h 1.48 +5 -5 src/sys/sys/malloc.h 1.42 +3 -3 src/sys/sys/mbuf.h 1.13 +2 -2 src/sys/sys/md5.h 1.4 +3 -1 src/sys/sys/memrange.h 1.28 +3 -3 src/sys/sys/mman.h 1.14 +4 -4 src/sys/sys/module.h 1.88 +6 -6 src/sys/sys/mount.h 1.10 +5 -5 src/sys/sys/msg.h 1.13 +2 -2 src/sys/sys/msgbuf.h 1.20 +4 -4 src/sys/sys/mtio.h 1.28 +3 -3 src/sys/sys/namei.h 1.58 +7 -7 src/sys/sys/param.h 1.16 +2 -2 src/sys/sys/pipe.h 1.6 +3 -3 src/sys/sys/poll.h 1.98 +4 -4 src/sys/sys/proc.h 1.28 +5 -5 src/sys/sys/protosw.h 1.10 +4 -4 src/sys/sys/ptrace.h 1.32 +3 -3 src/sys/sys/queue.h 1.12 +3 -3 src/sys/sys/resource.h 1.15 +2 -2 src/sys/sys/resourcevar.h 1.4 +5 -5 src/sys/sys/rman.h 1.9 +3 -3 src/sys/sys/rtprio.h 1.6 +2 -2 src/sys/sys/select.h 1.20 +5 -5 src/sys/sys/sem.h 1.14 +4 -4 src/sys/sys/shm.h 1.23 +2 -2 src/sys/sys/signal.h 1.32 +3 -3 src/sys/sys/signalvar.h 1.14 +5 -3 src/sys/sys/snoop.h 1.36 +3 -3 src/sys/sys/socket.h 1.45 +3 -3 src/sys/sys/socketvar.h 1.33 +2 -2 src/sys/sys/soundcard.h 1.20 +6 -6 src/sys/sys/stat.h 1.79 +6 -6 src/sys/sys/sysctl.h 1.27 +3 -3 src/sys/sys/sysent.h 1.19 +5 -5 src/sys/sys/syslog.h 1.9 +2 -2 src/sys/sys/tablet.h 1.13 +3 -3 src/sys/sys/termios.h 1.42 +7 -7 src/sys/sys/time.h 1.12 +4 -4 src/sys/sys/timepps.h 1.6 +2 -2 src/sys/sys/times.h 1.12 +5 -3 src/sys/sys/timex.h 1.53 +4 -4 src/sys/sys/tty.h 1.38 +7 -7 src/sys/sys/types.h 1.14 +3 -3 src/sys/sys/ucred.h 1.11 +4 -4 src/sys/sys/uio.h 1.17 +4 -4 src/sys/sys/un.h 1.24 +5 -5 src/sys/sys/user.h 1.7 +3 -3 src/sys/sys/utsname.h 1.21 +2 -2 src/sys/sys/vmmeter.h 1.108 +5 -5 src/sys/sys/vnode.h 1.11 +2 -2 src/sys/sys/wait.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 20:28: 5 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 74DEA1510E; Tue, 28 Dec 1999 20:28:02 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA88091; Tue, 28 Dec 1999 20:28:02 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912290428.UAA88091@freefall.freebsd.org> From: Peter Wemm Date: Tue, 28 Dec 1999 20:28:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha genassym.c ieee_float.c src/sys/alpha/include asm.h clock.h cpu.h cpuconf.h cpufunc.h elf.h fpu.h in_cksum.h intrcnt.h ioctl_fd.h pmap.h profile.h prom.h ptrace.h reg.h sysarch.h types.h src/sys/alpha/include/pc ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/28 20:28:02 PST Modified files: sys/alpha/alpha genassym.c ieee_float.c sys/alpha/include asm.h clock.h cpu.h cpuconf.h cpufunc.h elf.h fpu.h in_cksum.h intrcnt.h ioctl_fd.h pmap.h profile.h prom.h ptrace.h reg.h sysarch.h types.h sys/alpha/include/pc vesa.h Log: Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL" is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come. Revision Changes Path 1.11 +3 -3 src/sys/alpha/alpha/genassym.c 1.7 +2 -2 src/sys/alpha/alpha/ieee_float.c 1.6 +3 -3 src/sys/alpha/include/asm.h 1.5 +3 -3 src/sys/alpha/include/clock.h 1.12 +4 -4 src/sys/alpha/include/cpu.h 1.5 +3 -2 src/sys/alpha/include/cpuconf.h 1.6 +3 -3 src/sys/alpha/include/cpufunc.h 1.9 +3 -3 src/sys/alpha/include/elf.h 1.4 +2 -2 src/sys/alpha/include/fpu.h 1.3 +3 -3 src/sys/alpha/include/in_cksum.h 1.3 +2 -2 src/sys/alpha/include/intrcnt.h 1.3 +2 -2 src/sys/alpha/include/ioctl_fd.h 1.6 +7 -7 src/sys/alpha/include/pmap.h 1.4 +3 -3 src/sys/alpha/include/profile.h 1.5 +3 -3 src/sys/alpha/include/prom.h 1.4 +3 -3 src/sys/alpha/include/ptrace.h 1.7 +2 -2 src/sys/alpha/include/reg.h 1.4 +3 -3 src/sys/alpha/include/sysarch.h 1.11 +2 -2 src/sys/alpha/include/types.h 1.3 +3 -3 src/sys/alpha/include/pc/vesa.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 20:33:22 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 732DE14F13; Tue, 28 Dec 1999 20:33:18 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA88685; Tue, 28 Dec 1999 20:33:18 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912290433.UAA88685@freefall.freebsd.org> From: Peter Wemm Date: Tue, 28 Dec 1999 20:33:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/boot/dosboot dirent.h disklabe.h fs.h inode.h quota.h types.h src/sys/i386/conf Makefile.i386 src/sys/i386/i386 genassym.c src/sys/i386/include apm_bios.h bootinfo.h clock.h cpu.h cpufunc.h cronyx.h elf.h endian.h ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/28 20:33:17 PST Modified files: sys/i386/boot/dosboot dirent.h disklabe.h fs.h inode.h quota.h types.h sys/i386/conf Makefile.i386 sys/i386/i386 genassym.c sys/i386/include apm_bios.h bootinfo.h clock.h cpu.h cpufunc.h cronyx.h elf.h endian.h globals.h if_wavelan_ieee.h in_cksum.h ioctl_fd.h ioctl_meteor.h npx.h pcb.h pcb_ext.h pcvt_ioctl.h perfmon.h pmap.h profile.h ptrace.h random.h reg.h segments.h smp.h spigot.h sysarch.h tss.h types.h sys/i386/include/pc vesa.h sys/i386/isa atapi.h intr_machdep.h isa_device.h isa_dma.h loran.c wdreg.h Log: Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL" is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come. Revision Changes Path 1.2 +3 -1 src/sys/i386/boot/dosboot/dirent.h 1.8 +4 -4 src/sys/i386/boot/dosboot/disklabe.h 1.6 +2 -2 src/sys/i386/boot/dosboot/fs.h 1.7 +2 -2 src/sys/i386/boot/dosboot/inode.h 1.6 +2 -2 src/sys/i386/boot/dosboot/quota.h 1.6 +2 -2 src/sys/i386/boot/dosboot/types.h 1.170 +3 -5 src/sys/i386/conf/Makefile.i386 1.84 +3 -3 src/sys/i386/i386/genassym.c 1.27 +4 -4 src/sys/i386/include/apm_bios.h 1.14 +2 -2 src/sys/i386/include/bootinfo.h 1.38 +3 -3 src/sys/i386/include/clock.h 1.42 +2 -2 src/sys/i386/include/cpu.h 1.93 +4 -4 src/sys/i386/include/cpufunc.h 1.9 +4 -2 src/sys/i386/include/cronyx.h 1.9 +3 -3 src/sys/i386/include/elf.h 1.18 +3 -3 src/sys/i386/include/endian.h 1.5 +3 -3 src/sys/i386/include/globals.h 1.4 +2 -2 src/sys/i386/include/if_wavelan_ieee.h 1.7 +3 -3 src/sys/i386/include/in_cksum.h 1.13 +2 -2 src/sys/i386/include/ioctl_fd.h 1.11 +3 -1 src/sys/i386/include/ioctl_meteor.h 1.17 +2 -2 src/sys/i386/include/npx.h 1.32 +2 -2 src/sys/i386/include/pcb.h 1.4 +2 -2 src/sys/i386/include/pcb_ext.h 1.13 +2 -2 src/sys/i386/include/pcvt_ioctl.h 1.7 +4 -4 src/sys/i386/include/perfmon.h 1.65 +6 -6 src/sys/i386/include/pmap.h 1.20 +7 -7 src/sys/i386/include/profile.h 1.9 +3 -3 src/sys/i386/include/ptrace.h 1.18 +3 -3 src/sys/i386/include/random.h 1.21 +2 -2 src/sys/i386/include/reg.h 1.24 +3 -3 src/sys/i386/include/segments.h 1.49 +3 -3 src/sys/i386/include/smp.h 1.5 +3 -2 src/sys/i386/include/spigot.h 1.13 +3 -3 src/sys/i386/include/sysarch.h 1.11 +2 -2 src/sys/i386/include/tss.h 1.19 +2 -2 src/sys/i386/include/types.h 1.7 +3 -3 src/sys/i386/include/pc/vesa.h 1.18 +2 -1 src/sys/i386/isa/atapi.h 1.19 +3 -3 src/sys/i386/isa/intr_machdep.h 1.65 +4 -4 src/sys/i386/isa/isa_device.h 1.3 +3 -3 src/sys/i386/isa/isa_dma.h 1.25 +5 -5 src/sys/i386/isa/loran.c 1.30 +3 -3 src/sys/i386/isa/wdreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 20:34:34 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B00814EF6; Tue, 28 Dec 1999 20:34:32 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA88820; Tue, 28 Dec 1999 20:34:32 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912290434.UAA88820@freefall.freebsd.org> From: Peter Wemm Date: Tue, 28 Dec 1999 20:34:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/cam/scsi scsi_all.c scsi_all.h scsi_sa.c scsi_targetio.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/28 20:34:31 PST Modified files: sys/cam/scsi scsi_all.c scsi_all.h scsi_sa.c scsi_targetio.h Log: Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL" is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come. Revision Changes Path 1.12 +11 -11 src/sys/cam/scsi/scsi_all.c 1.10 +6 -6 src/sys/cam/scsi/scsi_all.h 1.43 +5 -5 src/sys/cam/scsi/scsi_sa.c 1.5 +2 -2 src/sys/cam/scsi/scsi_targetio.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 20:35:55 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D8F814CEA; Tue, 28 Dec 1999 20:35:51 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA89190; Tue, 28 Dec 1999 20:35:51 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912290435.UAA89190@freefall.freebsd.org> From: Peter Wemm Date: Tue, 28 Dec 1999 20:35:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/aic7xxx 93cx6.h src/sys/dev/dpt dpt.h src/sys/dev/fb fbreg.h vgareg.h src/sys/dev/iicbus if_ic.c src/sys/dev/kbd atkbdcreg.h atkbdreg.h kbdreg.h src/sys/dev/mii miivar.h src/sys/dev/ppbus immio.c lpbb.c lpt.c ppi.h vpo.c ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/28 20:35:49 PST Modified files: sys/dev/aic7xxx 93cx6.h sys/dev/dpt dpt.h sys/dev/fb fbreg.h vgareg.h sys/dev/iicbus if_ic.c sys/dev/kbd atkbdcreg.h atkbdreg.h kbdreg.h sys/dev/mii miivar.h sys/dev/ppbus immio.c lpbb.c lpt.c ppi.h vpo.c vpoio.c sys/dev/sound/pcm sound.h sys/dev/usb usb.h sys/dev/vinum vinumext.h vinumhdr.h vinumparser.c vinumutil.c vinumvar.h Log: Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL" is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come. Revision Changes Path 1.3 +3 -3 src/sys/dev/aic7xxx/93cx6.h 1.8 +3 -3 src/sys/dev/dpt/dpt.h 1.6 +3 -3 src/sys/dev/fb/fbreg.h 1.4 +3 -3 src/sys/dev/fb/vgareg.h 1.8 +3 -3 src/sys/dev/iicbus/if_ic.c 1.4 +3 -3 src/sys/dev/kbd/atkbdcreg.h 1.5 +3 -3 src/sys/dev/kbd/atkbdreg.h 1.8 +3 -3 src/sys/dev/kbd/kbdreg.h 1.3 +3 -3 src/sys/dev/mii/miivar.h 1.9 +5 -5 src/sys/dev/ppbus/immio.c 1.9 +3 -3 src/sys/dev/ppbus/lpbb.c 1.10 +5 -5 src/sys/dev/ppbus/lpt.c 1.5 +2 -2 src/sys/dev/ppbus/ppi.h 1.18 +7 -7 src/sys/dev/ppbus/vpo.c 1.9 +5 -5 src/sys/dev/ppbus/vpoio.c 1.9 +6 -6 src/sys/dev/sound/pcm/sound.h 1.17 +3 -3 src/sys/dev/usb/usb.h 1.23 +3 -3 src/sys/dev/vinum/vinumext.h 1.16 +4 -4 src/sys/dev/vinum/vinumhdr.h 1.19 +4 -4 src/sys/dev/vinum/vinumparser.c 1.14 +4 -4 src/sys/dev/vinum/vinumutil.c 1.29 +2 -2 src/sys/dev/vinum/vinumvar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 20:38:44 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 90E0414D4C; Tue, 28 Dec 1999 20:38:41 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA89482; Tue, 28 Dec 1999 20:38:41 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912290438.UAA89482@freefall.freebsd.org> From: Peter Wemm Date: Tue, 28 Dec 1999 20:38:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net bpf.h bpf_filter.c bridge.h ethernet.h hostcache.h if.h if_arp.h if_atm.h if_dl.h if_media.h if_sppp.h if_var.h if_vlan_var.h netisr.h pfkeyv2.h radix.c radix.h raw_cb.h route.h slcompress.c zlib.c zlib.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/28 20:38:40 PST Modified files: sys/net bpf.h bpf_filter.c bridge.h ethernet.h hostcache.h if.h if_arp.h if_atm.h if_dl.h if_media.h if_sppp.h if_var.h if_vlan_var.h netisr.h pfkeyv2.h radix.c radix.h raw_cb.h route.h slcompress.c zlib.c zlib.h Log: Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL" is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come. Revision Changes Path 1.20 +3 -3 src/sys/net/bpf.h 1.17 +12 -12 src/sys/net/bpf_filter.c 1.3 +3 -2 src/sys/net/bridge.h 1.12 +3 -3 src/sys/net/ethernet.h 1.4 +3 -3 src/sys/net/hostcache.h 1.58 +5 -5 src/sys/net/if.h 1.14 +2 -2 src/sys/net/if_arp.h 1.4 +1 -6 src/sys/net/if_atm.h 1.9 +3 -3 src/sys/net/if_dl.h 1.9 +3 -3 src/sys/net/if_media.h 1.16 +2 -2 src/sys/net/if_sppp.h 1.18 +5 -5 src/sys/net/if_var.h 1.5 +4 -4 src/sys/net/if_vlan_var.h 1.19 +2 -2 src/sys/net/netisr.h 1.2 +3 -3 src/sys/net/pfkeyv2.h 1.20 +3 -3 src/sys/net/radix.c 1.16 +3 -3 src/sys/net/radix.h 1.12 +2 -2 src/sys/net/raw_cb.h 1.35 +2 -2 src/sys/net/route.h 1.16 +2 -2 src/sys/net/slcompress.c 1.10 +5 -5 src/sys/net/zlib.c 1.7 +2 -2 src/sys/net/zlib.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 20:41: 8 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5BEB314D2C; Tue, 28 Dec 1999 20:41:06 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA89753; Tue, 28 Dec 1999 20:41:06 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912290441.UAA89753@freefall.freebsd.org> From: Peter Wemm Date: Tue, 28 Dec 1999 20:41:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet icmp_var.h if_ether.h if_fddi.h igmp_var.h in.h in_hostcache.h in_pcb.h in_systm.h in_var.h ip_dummynet.h ip_ecn.h ip_fw.h ip_icmp.h ip_mroute.h ip_var.h tcp_debug.h tcp_seq.h tcp_timer.h tcp_var.h udp_var.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/28 20:41:05 PST Modified files: sys/netinet icmp_var.h if_ether.h if_fddi.h igmp_var.h in.h in_hostcache.h in_pcb.h in_systm.h in_var.h ip_dummynet.h ip_ecn.h ip_fw.h ip_icmp.h ip_mroute.h ip_var.h tcp_debug.h tcp_seq.h tcp_timer.h tcp_var.h udp_var.h Log: Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL" is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come. Revision Changes Path 1.15 +3 -3 src/sys/netinet/icmp_var.h 1.24 +2 -2 src/sys/netinet/if_ether.h 1.8 +2 -2 src/sys/netinet/if_fddi.h 1.17 +2 -2 src/sys/netinet/igmp_var.h 1.47 +4 -4 src/sys/netinet/in.h 1.3 +3 -3 src/sys/netinet/in_hostcache.h 1.32 +3 -3 src/sys/netinet/in_pcb.h 1.9 +2 -2 src/sys/netinet/in_systm.h 1.33 +4 -4 src/sys/netinet/in_var.h 1.8 +3 -3 src/sys/netinet/ip_dummynet.h 1.2 +2 -2 src/sys/netinet/ip_ecn.h 1.45 +3 -3 src/sys/netinet/ip_fw.h 1.16 +2 -2 src/sys/netinet/ip_icmp.h 1.17 +3 -3 src/sys/netinet/ip_mroute.h 1.50 +3 -3 src/sys/netinet/ip_var.h 1.9 +2 -2 src/sys/netinet/tcp_debug.h 1.11 +3 -3 src/sys/netinet/tcp_seq.h 1.18 +3 -3 src/sys/netinet/tcp_timer.h 1.55 +3 -3 src/sys/netinet/tcp_var.h 1.22 +2 -2 src/sys/netinet/udp_var.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 20:46:26 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AA4B1150EA; Tue, 28 Dec 1999 20:46:22 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA90490; Tue, 28 Dec 1999 20:46:22 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912290446.UAA90490@freefall.freebsd.org> From: Peter Wemm Date: Tue, 28 Dec 1999 20:46:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netatalk aarp.h at_var.h ddp_var.h src/sys/netgraph netgraph.h ng_message.h src/sys/netinet6 ah.h ah6.h esp.h esp6.h in6_pcb.h ip6_ecn.h ipsec.h ipsec6.h pim6_var.h tcp6_var.h udp6_var.h src/sys/netipx ipx_if.h ipx_ip.h ipx_pcb.h ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/28 20:46:22 PST Modified files: sys/netatalk aarp.h at_var.h ddp_var.h sys/netgraph netgraph.h ng_message.h sys/netinet6 ah.h ah6.h esp.h esp6.h in6_pcb.h ip6_ecn.h ipsec.h ipsec6.h pim6_var.h tcp6_var.h udp6_var.h sys/netipx ipx_if.h ipx_ip.h ipx_pcb.h ipx_var.h spx.h spx_debug.h sys/netkey key.h key_debug.c key_debug.h keydb.h keysock.h sys/netnatm natm.h sys/netncp ncp_conn.h ncp_crypt.c ncp_nls.h ncp_rq.h sys/netns idp_var.h ns.h ns_error.h ns_if.h ns_pcb.h spp_timer.h spp_var.h Log: Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL" is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come. Revision Changes Path 1.3 +3 -1 src/sys/netatalk/aarp.h 1.10 +3 -1 src/sys/netatalk/at_var.h 1.4 +3 -1 src/sys/netatalk/ddp_var.h 1.6 +2 -2 src/sys/netgraph/netgraph.h 1.4 +3 -3 src/sys/netgraph/ng_message.h 1.2 +3 -3 src/sys/netinet6/ah.h 1.2 +3 -3 src/sys/netinet6/ah6.h 1.2 +3 -3 src/sys/netinet6/esp.h 1.2 +3 -3 src/sys/netinet6/esp6.h 1.2 +3 -3 src/sys/netinet6/in6_pcb.h 1.2 +2 -2 src/sys/netinet6/ip6_ecn.h 1.3 +7 -7 src/sys/netinet6/ipsec.h 1.3 +3 -3 src/sys/netinet6/ipsec6.h 1.2 +3 -3 src/sys/netinet6/pim6_var.h 1.2 +4 -4 src/sys/netinet6/tcp6_var.h 1.3 +3 -3 src/sys/netinet6/udp6_var.h 1.11 +3 -3 src/sys/netipx/ipx_if.h 1.14 +3 -3 src/sys/netipx/ipx_ip.h 1.15 +3 -3 src/sys/netipx/ipx_pcb.h 1.14 +3 -3 src/sys/netipx/ipx_var.h 1.16 +3 -3 src/sys/netipx/spx.h 1.12 +4 -4 src/sys/netipx/spx_debug.h 1.5 +3 -3 src/sys/netkey/key.h 1.9 +11 -17 src/sys/netkey/key_debug.c 1.5 +5 -5 src/sys/netkey/key_debug.h 1.2 +3 -3 src/sys/netkey/keydb.h 1.3 +3 -3 src/sys/netkey/keysock.h 1.3 +2 -5 src/sys/netnatm/natm.h 1.3 +3 -3 src/sys/netncp/ncp_conn.h 1.3 +3 -3 src/sys/netncp/ncp_crypt.c 1.4 +4 -4 src/sys/netncp/ncp_nls.h 1.3 +4 -4 src/sys/netncp/ncp_rq.h 1.10 +2 -2 src/sys/netns/idp_var.h 1.13 +2 -2 src/sys/netns/ns.h 1.10 +2 -2 src/sys/netns/ns_error.h 1.12 +2 -2 src/sys/netns/ns_if.h 1.11 +2 -2 src/sys/netns/ns_pcb.h 1.9 +2 -2 src/sys/netns/spp_timer.h 1.11 +2 -2 src/sys/netns/spp_var.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 20:50:23 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A9851554D; Tue, 28 Dec 1999 20:50:20 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA91166; Tue, 28 Dec 1999 20:50:20 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912290450.UAA91166@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Tue, 28 Dec 1999 20:50:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/lincvs Makefile ports/devel/lincvs/files md5 ports/devel/lincvs/pkg DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/28 20:50:19 PST Modified files: devel/lincvs Makefile devel/lincvs/files md5 devel/lincvs/pkg DESCR PLIST Log: Update port to 0.2.3 Revision Changes Path 1.2 +6 -9 ports/devel/lincvs/Makefile 1.2 +1 -1 ports/devel/lincvs/files/md5 1.2 +1 -1 ports/devel/lincvs/pkg/DESCR 1.2 +0 -3 ports/devel/lincvs/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 Dec 28 20:55:19 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 80A4315119; Tue, 28 Dec 1999 20:55:14 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA92044; Tue, 28 Dec 1999 20:55:14 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912290455.UAA92044@freefall.freebsd.org> From: Peter Wemm Date: Tue, 28 Dec 1999 20:55:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/common isapnp.h src/sys/cam cam.h cam_ccb.h cam_conf.h cam_debug.h cam_extend.h cam_periph.h cam_queue.h cam_sim.h cam_xpt.h cam_xpt_periph.h cam_xpt_sim.h src/sys/coda coda.h src/sys/crypto sha1.h src/sys/crypto/des ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/28 20:55:13 PST Modified files: sys/boot/common isapnp.h sys/cam cam.h cam_ccb.h cam_conf.h cam_debug.h cam_extend.h cam_periph.h cam_queue.h cam_sim.h cam_xpt.h cam_xpt_periph.h cam_xpt_sim.h sys/coda coda.h sys/crypto sha1.h sys/crypto/des des_locl.h sys/isa isavar.h pnpreg.h pnpvar.h sys/isofs/cd9660 cd9660_node.h iso.h sys/kern inflate.c md5c.c subr_blist.c sys/libkern mcount.c sys/miscfs/fdesc fdesc.h sys/miscfs/kernfs kernfs.h sys/miscfs/nullfs null.h sys/miscfs/portal portal.h sys/miscfs/procfs procfs.h sys/miscfs/umapfs umap.h sys/miscfs/union union.h sys/modules/linux Makefile sys/modules/svr4 Makefile sys/msdosfs denode.h direntry.h fat.h msdosfsmount.h sys/nfs nfs.h nfsmount.h nfsnode.h nqnfs.h sys/nwfs nwfs.h nwfs_mount.h sys/pc98/pc98 pc98_machdep.h sys/pccard cardinfo.h sys/pci if_mn.c ncr.c sys/posix4 aio.h mqueue.h sched.h semaphore.h sys/ufs/ffs ffs_subr.c sys/ufs/ufs inode.h quota.h ufsmount.h sys/vm pmap.h swap_pager.h vm.h vm_extern.h vm_map.h vm_object.h vm_page.h vm_pageout.h vm_pager.h vm_param.h vnode_pager.h Log: Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL" is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come. Revision Changes Path 1.5 +4 -4 src/sys/boot/common/isapnp.h 1.5 +5 -5 src/sys/cam/cam.h 1.12 +2 -2 src/sys/cam/cam_ccb.h 1.3 +3 -3 src/sys/cam/cam_conf.h 1.6 +6 -6 src/sys/cam/cam_debug.h 1.3 +3 -3 src/sys/cam/cam_extend.h 1.6 +3 -3 src/sys/cam/cam_periph.h 1.6 +3 -3 src/sys/cam/cam_queue.h 1.4 +3 -3 src/sys/cam/cam_sim.h 1.3 +3 -3 src/sys/cam/cam_xpt.h 1.3 +3 -3 src/sys/cam/cam_xpt_periph.h 1.6 +3 -3 src/sys/cam/cam_xpt_sim.h 1.9 +4 -4 src/sys/coda/coda.h 1.2 +2 -2 src/sys/crypto/sha1.h 1.2 +2 -2 src/sys/crypto/des/des_locl.h 1.15 +3 -3 src/sys/isa/isavar.h 1.3 +2 -2 src/sys/isa/pnpreg.h 1.4 +3 -3 src/sys/isa/pnpvar.h 1.20 +3 -3 src/sys/isofs/cd9660/cd9660_node.h 1.19 +3 -3 src/sys/isofs/cd9660/iso.h 1.14 +10 -10 src/sys/kern/inflate.c 1.17 +3 -3 src/sys/kern/md5c.c 1.5 +4 -4 src/sys/kern/subr_blist.c 1.16 +10 -10 src/sys/libkern/mcount.c 1.8 +3 -3 src/sys/miscfs/fdesc/fdesc.h 1.13 +3 -3 src/sys/miscfs/kernfs/kernfs.h 1.11 +3 -3 src/sys/miscfs/nullfs/null.h 1.7 +3 -3 src/sys/miscfs/portal/portal.h 1.32 +3 -3 src/sys/miscfs/procfs/procfs.h 1.13 +3 -3 src/sys/miscfs/umapfs/umap.h 1.17 +3 -3 src/sys/miscfs/union/union.h 1.33 +3 -3 src/sys/modules/linux/Makefile 1.10 +4 -4 src/sys/modules/svr4/Makefile 1.20 +3 -3 src/sys/msdosfs/denode.h 1.15 +3 -3 src/sys/msdosfs/direntry.h 1.9 +3 -3 src/sys/msdosfs/fat.h 1.19 +3 -3 src/sys/msdosfs/msdosfsmount.h 1.52 +5 -5 src/sys/nfs/nfs.h 1.17 +3 -3 src/sys/nfs/nfsmount.h 1.32 +4 -4 src/sys/nfs/nfsnode.h 1.20 +2 -2 src/sys/nfs/nqnfs.h 1.3 +3 -3 src/sys/nwfs/nwfs.h 1.5 +3 -3 src/sys/nwfs/nwfs_mount.h 1.8 +4 -2 src/sys/pc98/pc98/pc98_machdep.h 1.15 +2 -2 src/sys/pccard/cardinfo.h 1.8 +3 -3 src/sys/pci/if_mn.c 1.154 +10 -10 src/sys/pci/ncr.c 1.6 +4 -4 src/sys/posix4/aio.h 1.4 +3 -2 src/sys/posix4/mqueue.h 1.4 +4 -3 src/sys/posix4/sched.h 1.5 +3 -2 src/sys/posix4/semaphore.h 1.25 +2 -2 src/sys/ufs/ffs/ffs_subr.c 1.28 +3 -3 src/sys/ufs/ufs/inode.h 1.15 +4 -4 src/sys/ufs/ufs/quota.h 1.17 +3 -3 src/sys/ufs/ufs/ufsmount.h 1.33 +3 -3 src/sys/vm/pmap.h 1.28 +2 -2 src/sys/vm/swap_pager.h 1.16 +2 -2 src/sys/vm/vm.h 1.46 +3 -3 src/sys/vm/vm_extern.h 1.53 +2 -2 src/sys/vm/vm_map.h 1.63 +5 -5 src/sys/vm/vm_object.h 1.75 +3 -3 src/sys/vm/vm_page.h 1.26 +2 -2 src/sys/vm/vm_pageout.h 1.24 +2 -2 src/sys/vm/vm_pager.h 1.13 +3 -3 src/sys/vm/vm_param.h 1.14 +2 -2 src/sys/vm/vnode_pager.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 20:57:33 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B7EDB15188; Tue, 28 Dec 1999 20:57:31 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA92184; Tue, 28 Dec 1999 20:57:31 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912290457.UAA92184@freefall.freebsd.org> From: Peter Wemm Date: Tue, 28 Dec 1999 20:57:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.kmod.mk Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/28 20:57:30 PST Modified files: share/mk bsd.kmod.mk Log: Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL" is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come. Revision Changes Path 1.71 +2 -2 src/share/mk/bsd.kmod.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 21: 0: 5 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F06F815573; Tue, 28 Dec 1999 21:00:02 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA92489; Tue, 28 Dec 1999 21:00:02 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912290500.VAA92489@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Tue, 28 Dec 1999 21:00:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/pxtools Makefile ports/databases/pxtools/files md5 ports/databases/pxtools/patches patch-aa patch-ab patch-ac patch-ad Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/28 21:00:01 PST Modified files: databases/pxtools Makefile databases/pxtools/files md5 Removed files: databases/pxtools/patches patch-aa patch-ab patch-ac patch-ad Log: Update port to 0.0.5 Revision Changes Path 1.2 +3 -3 ports/databases/pxtools/Makefile 1.2 +1 -1 ports/databases/pxtools/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 Dec 28 21: 0:47 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C203115046; Tue, 28 Dec 1999 21:00:45 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA92555; Tue, 28 Dec 1999 21:00:45 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912290500.VAA92555@freefall.freebsd.org> From: Peter Wemm Date: Tue, 28 Dec 1999 21:00:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include/rpc des_crypt.h svc.h xdr.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/28 21:00:45 PST Modified files: include/rpc des_crypt.h svc.h xdr.h Log: Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL" is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come. Revision Changes Path 1.2 +2 -1 src/include/rpc/des_crypt.h 1.16 +2 -2 src/include/rpc/svc.h 1.14 +2 -2 src/include/rpc/xdr.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 21: 1:23 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C9AAF14C0E; Tue, 28 Dec 1999 21:01:21 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA92602; Tue, 28 Dec 1999 21:01:21 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912290501.VAA92602@freefall.freebsd.org> From: Peter Wemm Date: Tue, 28 Dec 1999 21:01:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include dirent.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/28 21:01:21 PST Modified files: include dirent.h Log: Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL" is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come. Revision Changes Path 1.7 +3 -3 src/include/dirent.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 21: 4:26 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 453B71554D; Tue, 28 Dec 1999 21:04:24 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA92905; Tue, 28 Dec 1999 21:04:24 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912290504.VAA92905@freefall.freebsd.org> From: Peter Wemm Date: Tue, 28 Dec 1999 21:04:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gmon mcount.c src/lib/libc/rpc auth_unix.c svc_auth.c src/lib/libkvm kvm_file.c src/lib/libmd md5c.c src/lib/libstand stand.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/28 21:04:22 PST Modified files: lib/libc/gmon mcount.c lib/libc/rpc auth_unix.c svc_auth.c lib/libkvm kvm_file.c lib/libmd md5c.c lib/libstand stand.h Log: Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL" is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come. Revision Changes Path 1.17 +11 -11 src/lib/libc/gmon/mcount.c 1.12 +4 -4 src/lib/libc/rpc/auth_unix.c 1.7 +6 -1 src/lib/libc/rpc/svc_auth.c 1.10 +3 -3 src/lib/libkvm/kvm_file.c 1.11 +3 -3 src/lib/libmd/md5c.c 1.18 +3 -3 src/lib/libstand/stand.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 21: 5:41 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0D10E15079; Tue, 28 Dec 1999 21:05:36 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA93025; Tue, 28 Dec 1999 21:05:35 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912290505.VAA93025@freefall.freebsd.org> From: Peter Wemm Date: Tue, 28 Dec 1999 21:05:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/fstat fstat.c src/usr.bin/ipcs ipcs.c src/usr.bin/kdump kdump.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/28 21:05:34 PST Modified files: usr.bin/fstat fstat.c usr.bin/ipcs ipcs.c usr.bin/kdump kdump.c Log: Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL" is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come. Revision Changes Path 1.20 +3 -3 src/usr.bin/fstat/fstat.c 1.12 +2 -2 src/usr.bin/ipcs/ipcs.c 1.17 +3 -3 src/usr.bin/kdump/kdump.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 21: 8: 1 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C2BD814DED; Tue, 28 Dec 1999 21:07:59 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA93247; Tue, 28 Dec 1999 21:07:59 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912290507.VAA93247@freefall.freebsd.org> From: Peter Wemm Date: Tue, 28 Dec 1999 21:07:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/pcvt/set2061 ICD2061Aalt.c src/usr.sbin/pstat pstat.c src/usr.sbin/ypbind yp_ping.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/28 21:07:58 PST Modified files: usr.sbin/pcvt/set2061 ICD2061Aalt.c usr.sbin/pstat pstat.c usr.sbin/ypbind yp_ping.c Log: Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL" is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come. Revision Changes Path 1.5 +3 -1 src/usr.sbin/pcvt/set2061/ICD2061Aalt.c 1.48 +3 -3 src/usr.sbin/pstat/pstat.c 1.6 +2 -2 src/usr.sbin/ypbind/yp_ping.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 21:30: 8 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F11ED150FE; Tue, 28 Dec 1999 21:30:03 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA94967; Tue, 28 Dec 1999 21:30:03 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912290530.VAA94967@freefall.freebsd.org> From: Peter Wemm Date: Tue, 28 Dec 1999 21:30:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/linuxthreads/files clone.S Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/28 21:30:03 PST Modified files: devel/linuxthreads/files clone.S Log: Add #define _KERNEL around #include of - this is to avoid the C-style externs in this assembler file. (!) Revision Changes Path 1.2 +2 -0 ports/devel/linuxthreads/files/clone.S To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 21:32:42 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 21A4D14C84; Tue, 28 Dec 1999 21:32:40 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA95137; Tue, 28 Dec 1999 21:32:40 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912290532.VAA95137@freefall.freebsd.org> From: Peter Wemm Date: Tue, 28 Dec 1999 21:32:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/skip Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/28 21:32:39 PST Modified files: security/skip Makefile Log: Update the BROKEN message (for -current) to also list _KERNEL as a reason. Revision Changes Path 1.15 +2 -2 ports/security/skip/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 21:34: 2 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AE28114FC2; Tue, 28 Dec 1999 21:33:59 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA95282; Tue, 28 Dec 1999 21:33:59 -0800 (PST) (envelope-from billf@FreeBSD.org) Message-Id: <199912290533.VAA95282@freefall.freebsd.org> From: Bill Fumerola Date: Tue, 28 Dec 1999 21:33:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci pcisupport.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1999/12/28 21:33:59 PST Modified files: sys/pci pcisupport.c Log: Add the Texas Instruments PCI14xx pccard/cardbus controllers device ids. Revision Changes Path 1.141 +9 -1 src/sys/pci/pcisupport.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 21:35:28 1999 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id E224D14FC2; Tue, 28 Dec 1999 21:35:24 -0800 (PST) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id WAA42149; Tue, 28 Dec 1999 22:35:23 -0700 (MST) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id WAA68642; Tue, 28 Dec 1999 22:35:23 -0700 (MST) Message-Id: <199912290535.WAA68642@harmony.village.org> To: Bill Fumerola Subject: Re: cvs commit: src/sys/pci pcisupport.c Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Tue, 28 Dec 1999 21:33:59 PST." <199912290533.VAA95282@freefall.freebsd.org> References: <199912290533.VAA95282@freefall.freebsd.org> Date: Tue, 28 Dec 1999 22:35:23 -0700 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In message <199912290533.VAA95282@freefall.freebsd.org> Bill Fumerola writes: : Add the Texas Instruments PCI14xx pccard/cardbus controllers device ids. These should be added to pcic_p.c, no? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 21:37:16 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 05BBE15079; Tue, 28 Dec 1999 21:37:15 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA95530; Tue, 28 Dec 1999 21:37:14 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912290537.VAA95530@freefall.freebsd.org> From: Peter Wemm Date: Tue, 28 Dec 1999 21:37:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vnode_if.sh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/28 21:37:14 PST Removed files: sys/kern vnode_if.sh Log: Remove vnode_if.sh - it's a perl script. This stayed around for a while because bsd.kmod.mk is usually out of sync with kernel source. However bsd.kmod.mk has to be updated now because of the _KERNEL change so there is no need to keep this (pre-repo copy) version around. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 21:38: 3 1999 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id EA5DC14EC7; Tue, 28 Dec 1999 21:37:57 -0800 (PST) (envelope-from billf@chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 31D321C4D; Wed, 29 Dec 1999 00:37:06 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by jade.chc-chimes.com (Postfix) with ESMTP id 2CB7A3847; Wed, 29 Dec 1999 00:37:06 -0500 (EST) Date: Wed, 29 Dec 1999 00:37:06 -0500 (EST) From: Bill Fumerola To: Bill Fumerola Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci pcisupport.c In-Reply-To: <199912290533.VAA95282@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Tue, 28 Dec 1999, Bill Fumerola wrote: > Modified files: > sys/pci pcisupport.c > Log: > Add the Texas Instruments PCI14xx pccard/cardbus controllers device ids. This has the 1410 1420 and 1451, however they have removed the datasheet for the 1450. If anyone has this controller, please send me a boot -v. Thanks, -- - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 21:39:15 1999 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id 3F64B14CEE; Tue, 28 Dec 1999 21:39:12 -0800 (PST) (envelope-from billf@chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 677221C4D; Wed, 29 Dec 1999 00:38:20 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by jade.chc-chimes.com (Postfix) with ESMTP id 62D113847; Wed, 29 Dec 1999 00:38:20 -0500 (EST) Date: Wed, 29 Dec 1999 00:38:20 -0500 (EST) From: Bill Fumerola To: Warner Losh Cc: Bill Fumerola , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci pcisupport.c In-Reply-To: <199912290535.WAA68642@harmony.village.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Tue, 28 Dec 1999, Warner Losh wrote: > These should be added to pcic_p.c, no? Moved or added? I forgot (didn't know, actually) about this file. Educate me. :-> -- - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 21:43:52 1999 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 0669314C2C; Tue, 28 Dec 1999 21:43:45 -0800 (PST) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id WAA42201; Tue, 28 Dec 1999 22:43:43 -0700 (MST) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id WAA68827; Tue, 28 Dec 1999 22:43:42 -0700 (MST) Message-Id: <199912290543.WAA68827@harmony.village.org> To: Bill Fumerola Subject: Re: cvs commit: src/sys/pci pcisupport.c Cc: Bill Fumerola , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Wed, 29 Dec 1999 00:38:20 EST." References: Date: Tue, 28 Dec 1999 22:43:42 -0700 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In message Bill Fumerola writes: : > These should be added to pcic_p.c, no? : : Moved or added? I forgot (didn't know, actually) about this file. : : Educate me. :-> Moved. pcic_p is designed to put the cardbus bridge into legacy mode so that the pcic isa driver can cope. card bus bridges generally need to be added to that file. This is with the old pccard stuff, but the life of the old pccard code is uncertain at this point so it is best to keep updating it. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 21:44:21 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 604A014C84; Tue, 28 Dec 1999 21:44:19 -0800 (PST) (envelope-from cg@FreeBSD.org) Received: (from cg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA96070; Tue, 28 Dec 1999 21:44:19 -0800 (PST) (envelope-from cg@FreeBSD.org) Message-Id: <199912290544.VAA96070@freefall.freebsd.org> From: Cameron Grant Date: Tue, 28 Dec 1999 21:44:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/pci es137x.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk cg 1999/12/28 21:44:18 PST Modified files: sys/dev/sound/pci es137x.c Log: make es1373 chips with ac97 2.1 work on troublesome motherboards Submitted by: Russell Cattelan Revision Changes Path 1.9 +26 -20 src/sys/dev/sound/pci/es137x.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 21:52:34 1999 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id 1FB6115028; Tue, 28 Dec 1999 21:52:32 -0800 (PST) (envelope-from billf@chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 7AE911C4D; Wed, 29 Dec 1999 00:51:42 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by jade.chc-chimes.com (Postfix) with ESMTP id 6B4873847; Wed, 29 Dec 1999 00:51:42 -0500 (EST) Date: Wed, 29 Dec 1999 00:51:42 -0500 (EST) From: Bill Fumerola To: Warner Losh Cc: Bill Fumerola , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci pcisupport.c In-Reply-To: <199912290543.WAA68827@harmony.village.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Tue, 28 Dec 1999, Warner Losh wrote: > Moved. Okay, give me 10 minutes.. > pcic_p is designed to put the cardbus bridge into legacy mode so that > the pcic isa driver can cope. card bus bridges generally need to be > added to that file. Well, this one evidently doesn't: I'm writing the e-mail over a card plugged into it. > This is with the old pccard stuff, but the life of the old pccard code > is uncertain at this point so it is best to keep updating it. Well, I just don't want this going back to being an unreckognized controller when the old code gets axed. -- - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 21:53:53 1999 Delivered-To: cvs-all@freebsd.org Received: from overcee.netplex.com.au (overcee.netplex.com.au [202.12.86.7]) by hub.freebsd.org (Postfix) with ESMTP id 059F31511C; Tue, 28 Dec 1999 21:53:49 -0800 (PST) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 463A81CA0; Wed, 29 Dec 1999 13:53:42 +0800 (WST) (envelope-from peter@netplex.com.au) X-Mailer: exmh version 2.1.1 10/15/1999 To: Warner Losh Cc: Bill Fumerola , Bill Fumerola , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci pcisupport.c In-Reply-To: Message from Warner Losh of "Tue, 28 Dec 1999 22:43:42 MST." <199912290543.WAA68827@harmony.village.org> Date: Wed, 29 Dec 1999 13:53:42 +0800 From: Peter Wemm Message-Id: <19991229055342.463A81CA0@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Warner Losh wrote: > In message Bil l Fumerola writes: > : > These should be added to pcic_p.c, no? > : > : Moved or added? I forgot (didn't know, actually) about this file. > : > : Educate me. :-> > > Moved. Added actually. :-) chip matches with a very low priority, so it catches it if the pcic_p stuff isn't loaded. On the other hand, it will match with "unknown PCI-Cardbus bridge" without the changes, so I guess it doesn't really matter all that much. Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 22: 8:11 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1EEB814C84; Tue, 28 Dec 1999 22:08:10 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA97350; Tue, 28 Dec 1999 22:08:10 -0800 (PST) (envelope-from obrien@FreeBSD.org) Message-Id: <199912290608.WAA97350@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 28 Dec 1999 22:08:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/vim5 Makefile ports/editors/vim5/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1999/12/28 22:08:09 PST Modified files: editors/vim5 Makefile editors/vim5/files md5 Log: Update to version 5.6a patchlevel 12 Revision Changes Path 1.63 +16 -14 ports/editors/vim5/Makefile 1.38 +14 -60 ports/editors/vim5/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 Dec 28 22:37: 4 1999 Delivered-To: cvs-all@freebsd.org Received: from 1Cust34.tnt1.washington.dc.da.uu.net (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id EACFA15170; Tue, 28 Dec 1999 22:36:59 -0800 (PST) (envelope-from green@FreeBSD.org) Date: Wed, 29 Dec 1999 01:36:57 -0500 (EST) From: Brian Fundakowski Feldman X-Sender: green@green.dyndns.org To: Cameron Grant Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/sound/isa ad1816.c mss.c sb.c src/sys/dev/sound/pci aureal.c csapcm.c es137x.c t4dwave.c src/sys/dev/sound/pcm channel.c channel.h datatypes.h dsp.c sound.h In-Reply-To: <199912290346.TAA84953@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Tue, 28 Dec 1999, Cameron Grant wrote: > cg 1999/12/28 19:46:55 PST > > Log: > - latest 2ndbuffer patch > - make chn_setdir work for rec on isa cards > - note: es1371 does not irq in smp > > Submitted by: tanimura Great job, both of you! Everything works great with newpcm now, even Snes9X :) RealPlayer's G2's sound works, ESD works, and I can finally forget about VoxWare! sbc0: at port 0x220-0x22f irq 5 drq 1 flags 0x16 on isa0 sbc0: setting card to irq 5, drq 1, 6 pcm0: on sbc0 -- Brian Fundakowski Feldman \ FreeBSD: The Power to Serve! / green@FreeBSD.org `------------------------------' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 23: 3:46 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A72D155C0; Tue, 28 Dec 1999 23:03:43 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA22062; Tue, 28 Dec 1999 23:03:43 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290703.XAA22062@freefall.freebsd.org> From: Steve Price Date: Tue, 28 Dec 1999 23:03:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/balsa Makefile ports/mail/balsa/patches patch-al patch-am patch-an patch-ao patch-ap patch-ah ports/mail/balsa/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/28 23:03:42 PST Modified files: mail/balsa Makefile mail/balsa/pkg PLIST Added files: mail/balsa/patches patch-al patch-am patch-an patch-ao patch-ap Removed files: mail/balsa/patches patch-ah Log: * Fixed CONFIGURE_ARGS * Fixed install path of help files * Added fixes for I18N by Clive Lin PR: 15753 Submitted by: KATO Tsuguru Revision Changes Path 1.14 +3 -2 ports/mail/balsa/Makefile 1.5 +13 -13 ports/mail/balsa/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 Dec 28 23: 6:35 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 413D715579; Tue, 28 Dec 1999 23:06:30 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA22402; Tue, 28 Dec 1999 23:06:29 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290706.XAA22402@freefall.freebsd.org> From: Steve Price Date: Tue, 28 Dec 1999 23:06:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/cyrus-sasl Makefile ports/security/cyrus-sasl/patches patch-ae patch-af patch-aa patch-ab patch-ac ports/security/cyrus-sasl/pkg DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/28 23:06:29 PST Modified files: security/cyrus-sasl Makefile security/cyrus-sasl/patches patch-aa patch-ab security/cyrus-sasl/pkg DESCR PLIST Added files: security/cyrus-sasl/patches patch-ae patch-af Removed files: security/cyrus-sasl/patches patch-ac Log: Use OpenSSL instaed of librc4 so this port's package can be exported. Also incorporate Garrett Wollman's kerberos fixes. PR: 15732 Submitted by: maintainer Revision Changes Path 1.2 +24 -24 ports/security/cyrus-sasl/Makefile 1.2 +1037 -22 ports/security/cyrus-sasl/patches/patch-aa 1.2 +33 -19 ports/security/cyrus-sasl/patches/patch-ab 1.2 +25 -0 ports/security/cyrus-sasl/pkg/DESCR 1.2 +6 -2 ports/security/cyrus-sasl/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 Dec 28 23: 8:58 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 691A81511E; Tue, 28 Dec 1999 23:08:56 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA22658; Tue, 28 Dec 1999 23:08:56 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290708.XAA22658@freefall.freebsd.org> From: Steve Price Date: Tue, 28 Dec 1999 23:08:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/28 23:08:55 PST Modified files: . modules Log: libungif -> ports/graphics/libungif Revision Changes Path 1.718 +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 Dec 28 23:10:24 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3EF4B1516D; Tue, 28 Dec 1999 23:10:22 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA22958; Tue, 28 Dec 1999 23:10:22 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290710.XAA22958@freefall.freebsd.org> From: Steve Price Date: Tue, 28 Dec 1999 23:10:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/libungif Makefile ports/graphics/libungif/files md5 ports/graphics/libungif/pkg DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/28 23:10:21 PST Modified files: graphics/libungif Makefile graphics/libungif/files md5 graphics/libungif/pkg DESCR PLIST Log: Update to version 4.1.0 of libungif after repository copy. PR: 15719 Submitted by: KATO Tsuguru Revision Changes Path 1.11 +20 -11 ports/graphics/libungif/Makefile 1.4 +5 -1 ports/graphics/libungif/files/md5 1.3 +5 -12 ports/graphics/libungif/pkg/DESCR 1.8 +51 -51 ports/graphics/libungif/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 Dec 28 23:11:24 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C61821511E; Tue, 28 Dec 1999 23:11:22 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA23115; Tue, 28 Dec 1999 23:11:22 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290711.XAA23115@freefall.freebsd.org> From: Steve Price Date: Tue, 28 Dec 1999 23:11:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/28 23:11:22 PST Modified files: graphics Makefile Log: Add the libungif port. Revision Changes Path 1.166 +2 -1 ports/graphics/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 23:11:53 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9B2EF15195; Tue, 28 Dec 1999 23:11:51 -0800 (PST) (envelope-from shin@FreeBSD.org) Received: (from shin@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA23208; Tue, 28 Dec 1999 23:11:51 -0800 (PST) (envelope-from shin@FreeBSD.org) Message-Id: <199912290711.XAA23208@freefall.freebsd.org> From: Yoshinobu Inoue Date: Tue, 28 Dec 1999 23:11:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk shin 1999/12/28 23:11:51 PST Modified files: usr.sbin Makefile Log: Forgot to add newly added udp and raw IPv6 apps to usr.sbin SUBDIR. They are confirmed to be buildable and seems to be working. Revision Changes Path 1.175 +9 -1 src/usr.sbin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 23:13: 1 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F5BD15170; Tue, 28 Dec 1999 23:12:59 -0800 (PST) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA23330; Tue, 28 Dec 1999 23:12:59 -0800 (PST) (envelope-from green@FreeBSD.org) Message-Id: <199912290712.XAA23330@freefall.freebsd.org> From: Brian Feldman Date: Tue, 28 Dec 1999 23:12:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/snes9x/patches patch-aa patch-ab patch-ac patch-ad patch-af patch-ag patch-ah patch-ae Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk green 1999/12/28 23:12:58 PST Modified files: emulators/snes9x/patches patch-ae Added files: emulators/snes9x/patches patch-aa patch-ab patch-ac patch-ad patch-af patch-ag patch-ah Log: Snes9X needs to _not_ have USE_THREADS auto-defined for FreeBSD in unix/unix.cpp to build, especially when the Makefile does not have it defined. Also, along with this, split the patches out into the customary one-file-per-patch chunks. I'm not ${MAINTAINER}, but nacai does not mind my working on the port :) Revision Changes Path 1.4 +5 -543 ports/emulators/snes9x/patches/patch-ae To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 23:13:37 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0DC1F14D26; Tue, 28 Dec 1999 23:13:35 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA23391; Tue, 28 Dec 1999 23:13:34 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290713.XAA23391@freefall.freebsd.org> From: Steve Price Date: Tue, 28 Dec 1999 23:13:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/amanda Makefile ports/misc/amanda/pkg INSTALL Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/28 23:13:34 PST Modified files: misc/amanda Makefile Added files: misc/amanda/pkg INSTALL Log: Fix a potential root exploit in runtar that would allow any user to run tar as root. PR: 15577 Submitted by: AnarCat Revision Changes Path 1.15 +2 -1 ports/misc/amanda/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 23:21:43 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D52DA154C1; Tue, 28 Dec 1999 23:21:39 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA24502; Tue, 28 Dec 1999 23:21:39 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290721.XAA24502@freefall.freebsd.org> From: Steve Price Date: Tue, 28 Dec 1999 23:21:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules ports/editors Makefile ports/editors/auctex Makefile ports/editors/auctex/files md5 ports/editors/auctex/patches patch-aa patch-ab ports/editors/auctex/pkg COMMENT DESCR MESSAGE PLIST ports/print ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/28 23:21:38 PST Modified files: . modules editors Makefile print Makefile Added files: print/auctex Makefile print/auctex/files md5 print/auctex/patches patch-aa patch-ab print/auctex/pkg COMMENT DESCR MESSAGE PLIST Removed files: editors/auctex Makefile editors/auctex/files md5 editors/auctex/patches patch-aa patch-ab editors/auctex/pkg COMMENT DESCR MESSAGE PLIST Log: Moving the auctex port from editors to print. Revision Changes Path 1.719 +2 -2 CVSROOT/modules 1.100 +1 -2 ports/editors/Makefile 1.101 +2 -1 ports/print/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 23:27: 7 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 31C69155AE; Tue, 28 Dec 1999 23:27:05 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA25186; Tue, 28 Dec 1999 23:27:04 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290727.XAA25186@freefall.freebsd.org> From: Steve Price Date: Tue, 28 Dec 1999 23:27:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules ports/print Makefile ports/print/pstotext Makefile ports/print/pstotext/files md5 ports/print/pstotext/patches patch-aa ports/print/pstotext/pkg COMMENT DESCR PLIST ports/textproc Makefile ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/28 23:27:04 PST Modified files: . modules print Makefile textproc Makefile Added files: print/pstotext Makefile print/pstotext/files md5 print/pstotext/patches patch-aa print/pstotext/pkg COMMENT DESCR PLIST Removed files: textproc/pstotext Makefile textproc/pstotext/files md5 textproc/pstotext/patches patch-aa textproc/pstotext/pkg COMMENT DESCR PLIST Log: Moving the pstotext port from textproc to print. Revision Changes Path 1.720 +2 -2 CVSROOT/modules 1.102 +2 -1 ports/print/Makefile 1.80 +1 -2 ports/textproc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 23:30:52 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8FD50155AC; Tue, 28 Dec 1999 23:30:49 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA25781; Tue, 28 Dec 1999 23:30:49 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290730.XAA25781@freefall.freebsd.org> From: Steve Price Date: Tue, 28 Dec 1999 23:30:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules ports/java Makefile ports/java/starlogo Makefile ports/java/starlogo/files md5 ports/java/starlogo/patches patch-aa ports/java/starlogo/pkg COMMENT DESCR PLIST ports/lang Makefile ports/lang/starlogo ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/28 23:30:48 PST Modified files: . modules java Makefile lang Makefile Added files: lang/starlogo Makefile lang/starlogo/files md5 lang/starlogo/patches patch-aa lang/starlogo/pkg COMMENT DESCR PLIST Removed files: java/starlogo Makefile java/starlogo/files md5 java/starlogo/patches patch-aa java/starlogo/pkg COMMENT DESCR PLIST Log: Moving the starlogo port from java to lang. Revision Changes Path 1.721 +2 -2 CVSROOT/modules 1.7 +1 -2 ports/java/Makefile 1.157 +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 Tue Dec 28 23:33: 9 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BA92814CFB; Tue, 28 Dec 1999 23:33:07 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA26032; Tue, 28 Dec 1999 23:33:07 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290733.XAA26032@freefall.freebsd.org> From: Steve Price Date: Tue, 28 Dec 1999 23:33:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/procmail/patches patch-ae Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/28 23:33:06 PST Added files: mail/procmail/patches patch-ae Log: Remove comment about running 'make install-suid' since we do that already as part of a normal install. PR: 12934 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 23:38:46 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B15AE14E60; Tue, 28 Dec 1999 23:38:44 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA26957; Tue, 28 Dec 1999 23:38:44 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290738.XAA26957@freefall.freebsd.org> From: Steve Price Date: Tue, 28 Dec 1999 23:38:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/shells/bash2/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/28 23:38:44 PST Modified files: shells/bash2/patches patch-aa Log: Use --entry instead of --defentry so this port doesn't fail on older versions of FreeBSD. PR: 12746 Revision Changes Path 1.4 +1 -1 ports/shells/bash2/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 23:42:19 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8379715028; Tue, 28 Dec 1999 23:42:17 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA27519; Tue, 28 Dec 1999 23:42:16 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290742.XAA27519@freefall.freebsd.org> From: Steve Price Date: Tue, 28 Dec 1999 23:42:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/jsdk Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/28 23:42:16 PST Modified files: java/jsdk Makefile Log: Either this port's distfile is no longer avaiable or the URL to grab it is incorrect. Either way mark it BROKEN until it is found or upgraded. Revision Changes Path 1.7 +3 -1 ports/java/jsdk/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 23:44:49 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AE24A155C2; Tue, 28 Dec 1999 23:44:47 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA27789; Tue, 28 Dec 1999 23:44:47 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290744.XAA27789@freefall.freebsd.org> From: Steve Price Date: Tue, 28 Dec 1999 23:44:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/comms/rzsz Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/28 23:44:46 PST Modified files: comms/rzsz Makefile Log: I'm not allowed to host this distfile. As Satoshi's request I asked the author and this is what he said. "The current version of rzsz 3.xx should always be downloaded from the Omen web site. Previous versions are obsolete and not supported." Revision Changes Path 1.33 +4 -3 ports/comms/rzsz/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 23:47:45 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8DA3C15028; Tue, 28 Dec 1999 23:47:42 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA28100; Tue, 28 Dec 1999 23:47:42 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290747.XAA28100@freefall.freebsd.org> From: Steve Price Date: Tue, 28 Dec 1999 23:47:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/iv/patches patch-bj patch-bk patch-bl patch-bm patch-bn patch-bo patch-bp patch-bq patch-br patch-bs patch-bt patch-bu patch-bv patch-bw patch-bx patch-by patch-bz patch-ca patch-cb patch-cc patch-cd patch-ce patch-cf ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/28 23:47:41 PST Modified files: x11-toolkits/iv/patches patch-aa patch-ar patch-bd patch-bg patch-bi Added files: x11-toolkits/iv/patches patch-bj patch-bk patch-bl patch-bm patch-bn patch-bo patch-bp patch-bq patch-br patch-bs patch-bt patch-bu patch-bv patch-bw patch-bx patch-by patch-bz patch-ca patch-cb patch-cc patch-cd patch-ce patch-cf patch-cg patch-ch patch-ci patch-cj patch-ck patch-cl Removed files: x11-toolkits/iv/patches patch-be Log: After several hours of doinking with this port, it finally compiles on -current again. Revision Changes Path 1.6 +18 -4 ports/x11-toolkits/iv/patches/patch-aa 1.2 +12 -2 ports/x11-toolkits/iv/patches/patch-ar 1.2 +35 -2 ports/x11-toolkits/iv/patches/patch-bd 1.2 +44 -3 ports/x11-toolkits/iv/patches/patch-bg 1.2 +10 -3 ports/x11-toolkits/iv/patches/patch-bi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Dec 28 23:48:54 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BD7814D43; Tue, 28 Dec 1999 23:48:52 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA28223; Tue, 28 Dec 1999 23:48:52 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290748.XAA28223@freefall.freebsd.org> From: Steve Price Date: Tue, 28 Dec 1999 23:48:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/ncurses/patches patch-ac Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/28 23:48:52 PST Added files: devel/ncurses/patches patch-ac Log: Get this to compile on -current again. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 0:13:19 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F41C5151CC; Wed, 29 Dec 1999 00:13:16 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA35046; Wed, 29 Dec 1999 00:13:16 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290813.AAA35046@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 00:13:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/converters/recode Makefile ports/converters/recode/files md5 ports/converters/recode/patches patch-aa patch-ab ports/converters/recode/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 00:13:16 PST Modified files: converters/recode Makefile converters/recode/files md5 converters/recode/pkg PLIST Added files: converters/recode/patches patch-aa patch-ab Log: Update to version 3.5. PR: 12891 Submitted by: Dmitry S. Sivachenko From: Steve Price Date: Wed, 29 Dec 1999 00:15:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/stat/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 00:15:06 PST Added files: sysutils/stat/patches patch-aa Log: Terminate buffer so we don't print garbage. PR: 12761 Submitted by: Aaron Smith To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 0:16:57 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 60B4F1516C; Wed, 29 Dec 1999 00:16:54 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA37208; Wed, 29 Dec 1999 00:16:54 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290816.AAA37208@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 00:16:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/majordomo/patches patch-ab Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 00:16:53 PST Modified files: mail/majordomo/patches patch-ab Log: Fix regex handling of uptime(1) load averages. PR: 12737 Submitted by: andrew@ugh.net.au Revision Changes Path 1.6 +12 -4 ports/mail/majordomo/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 Wed Dec 29 0:18:46 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B712155C0; Wed, 29 Dec 1999 00:18:44 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA38364; Wed, 29 Dec 1999 00:18:43 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290818.AAA38364@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 00:18:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/p5-Pg Makefile ports/databases/p5-Pg/files md5 ports/databases/p5-Pg/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 00:18:43 PST Modified files: databases/p5-Pg Makefile databases/p5-Pg/files md5 Removed files: databases/p5-Pg/patches patch-aa Log: Update to version 1.8.1. PR: 12726 Submitted by: Palle Girgensohn Revision Changes Path 1.19 +6 -5 ports/databases/p5-Pg/Makefile 1.4 +1 -1 ports/databases/p5-Pg/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 0:21:15 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 10A5F155D4; Wed, 29 Dec 1999 00:21:14 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA39928; Wed, 29 Dec 1999 00:21:13 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290821.AAA39928@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 00:21:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/mtools/patches patch-2 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 00:21:13 PST Modified files: emulators/mtools/patches patch-2 Log: mkdosfs has been renamed to newfs_msdos. PR: 12700 Submitted by: Phillip Musumeci Revision Changes Path 1.6 +6 -6 ports/emulators/mtools/patches/patch-2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 0:22:56 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 05FBE1511C; Wed, 29 Dec 1999 00:22:55 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA41752; Wed, 29 Dec 1999 00:22:54 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290822.AAA41752@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 00:22:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/sp Makefile ports/textproc/sp/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 00:22:54 PST Modified files: textproc/sp Makefile textproc/sp/pkg PLIST Log: Don't install config.h.orig anymore. PR: 12675 Submitted by: John Baldwin Revision Changes Path 1.13 +3 -2 ports/textproc/sp/Makefile 1.5 +0 -1 ports/textproc/sp/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 Dec 29 0:25:53 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8D7EF155E6; Wed, 29 Dec 1999 00:25:51 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA45331; Wed, 29 Dec 1999 00:25:51 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290825.AAA45331@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 00:25:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/docproj Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 00:25:51 PST Modified files: textproc/docproj Makefile Log: Since jade is a superset of the sp port, we really don't both in this port. I've done a complete doc build and all's well. This has the added benefit that we can now resume building -current snapshots of FreeBSD/Alpha with full docs, because the sp port is broken badly on the Alpha. PR: 12674 Submitted by: JOhn Baldwin Revision Changes Path 1.19 +1 -2 ports/textproc/docproj/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 0:27:46 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A97E015579; Wed, 29 Dec 1999 00:27:44 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA46636; Wed, 29 Dec 1999 00:27:44 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290827.AAA46636@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 00:27:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/windowmaker/patches patch-aj Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 00:27:44 PST Added files: x11-wm/windowmaker/patches patch-aj Log: Toss in a better mult-byte character support. PR: 12637 Submitted by: Yuan-Chen Cheng To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 0:32:36 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F9361511C; Wed, 29 Dec 1999 00:32:34 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA49684; Wed, 29 Dec 1999 00:32:33 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290832.AAA49684@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 00:32:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/popper/patches patch-am Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 00:32:32 PST Added files: mail/popper/patches patch-am Log: Better error message when the connecting client's IP address is unresolvable. PR: 12618 Submitted by: Mikhail Teterin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 0:35:10 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7558E155E1; Wed, 29 Dec 1999 00:35:08 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA50782; Wed, 29 Dec 1999 00:35:08 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290835.AAA50782@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 00:35:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/transproxy Makefile ports/www/transproxy/files md5 ports/www/transproxy/patches patch-aa patch-ab ports/www/transproxy/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 00:35:08 PST Modified files: www/transproxy Makefile www/transproxy/files md5 www/transproxy/patches patch-aa www/transproxy/pkg COMMENT DESCR PLIST Removed files: www/transproxy/patches patch-ab Log: Update to version 1.0. Submitted by: John Saunders Revision Changes Path 1.6 +10 -12 ports/www/transproxy/Makefile 1.2 +1 -1 ports/www/transproxy/files/md5 1.2 +37 -22 ports/www/transproxy/patches/patch-aa 1.3 +1 -1 ports/www/transproxy/pkg/COMMENT 1.2 +12 -14 ports/www/transproxy/pkg/DESCR 1.2 +2 -0 ports/www/transproxy/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 Dec 29 0:37:54 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CE9A1155AF; Wed, 29 Dec 1999 00:37:52 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA51257; Wed, 29 Dec 1999 00:37:52 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290837.AAA51257@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 00:37:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/cyrus Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 00:37:52 PST Modified files: mail/cyrus Makefile Log: Make sure all the directories needed by this port are created on install. PR: 12584 Submitted by: Adrian Filipi-Martin Revision Changes Path 1.25 +22 -2 ports/mail/cyrus/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 0:39:22 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8633B1516C; Wed, 29 Dec 1999 00:39:20 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA51482; Wed, 29 Dec 1999 00:39:20 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290839.AAA51482@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 00:39:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/xfig Makefile ports/graphics/xfig/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 00:39:20 PST Modified files: graphics/xfig Makefile graphics/xfig/patches patch-aa Log: Add a WANT_GS_SUPPORT flag so that users can build this port with ghostscript if they want. PR: 12571 Revision Changes Path 1.30 +10 -1 ports/graphics/xfig/Makefile 1.8 +2 -11 ports/graphics/xfig/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 0:42:38 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 894F71560C; Wed, 29 Dec 1999 00:42:35 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA51960; Wed, 29 Dec 1999 00:42:35 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290842.AAA51960@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 00:42:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/kcfonts/patches patch-ab patch-aa ports/chinese/kcfonts/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 00:42:35 PST Modified files: chinese/kcfonts/patches patch-aa chinese/kcfonts/pkg PLIST Added files: chinese/kcfonts/patches patch-ab Log: Fix error message on pkg_add(1) and add fonts.alias to make X-locale program use these fonts automatically. PR: 12271 Submitted by: Yuan-Chen Cheng Revision Changes Path 1.2 +7 -6 ports/chinese/kcfonts/patches/patch-aa 1.4 +4 -2 ports/chinese/kcfonts/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 Dec 29 0:47:58 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A2029155AF; Wed, 29 Dec 1999 00:47:55 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA52382; Wed, 29 Dec 1999 00:47:55 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290847.AAA52382@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 00:47:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/shells/bash2/patches patch-af Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 00:47:55 PST Added files: shells/bash2/patches patch-af Log: Don't coredump under certain conditions where the pid > 32000. PR: 12174 Submitted by: Dirk Meyer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 0:52:15 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2665C155CD; Wed, 29 Dec 1999 00:52:13 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA52758; Wed, 29 Dec 1999 00:52:13 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290852.AAA52758@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 00:52:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/archivers/hpack.non-usa.only Makefile ports/archivers/hpack.non-usa.only/patches patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-aj patch-ak patch-al patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 00:52:12 PST Modified files: archivers/hpack.non-usa.only Makefile Added files: archivers/hpack.non-usa.only/patches patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-aj patch-ak patch-al Removed files: archivers/hpack.non-usa.only/patches patch-aa Log: Honor PREFIX and split up patches one patch for each file. PR: 12056 Submitted by: Nick Hibma Revision Changes Path 1.12 +6 -1 ports/archivers/hpack.non-usa.only/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 0:54:25 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 06BC71511C; Wed, 29 Dec 1999 00:54:23 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA53125; Wed, 29 Dec 1999 00:54:22 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290854.AAA53125@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 00:54:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/octave Makefile ports/math/octave/files md5 ports/math/octave/patches patch-ae patch-af patch-ac patch-ad ports/math/octave/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 00:54:22 PST Modified files: math/octave Makefile math/octave/files md5 math/octave/patches patch-ae patch-af math/octave/pkg PLIST Removed files: math/octave/patches patch-ac patch-ad Log: Update to version 2.0.14. PR: 11504 Submitted by: nakai@tsl.pe.u-tokyo.ac.jp Revision Changes Path 1.24 +7 -5 ports/math/octave/Makefile 1.8 +1 -1 ports/math/octave/files/md5 1.2 +13 -3 ports/math/octave/patches/patch-ae 1.2 +12 -12 ports/math/octave/patches/patch-af 1.22 +194 -16 ports/math/octave/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 Dec 29 1: 9:49 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E0705155CD; Wed, 29 Dec 1999 01:09:46 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA54635; Wed, 29 Dec 1999 01:09:46 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290909.BAA54635@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 01:09:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/gperf Makefile ports/devel/gperf/files md5 ports/devel/gperf/patches patch-aa ports/devel/gperf/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 01:09:41 PST Modified files: devel Makefile Added files: devel/gperf Makefile devel/gperf/files md5 devel/gperf/patches patch-aa devel/gperf/pkg COMMENT DESCR PLIST Log: Adding gperf version 2.7 Generates perfect hash functions for sets of keywords. PR: 12904 Submitted by: Dirk Meyer Revision Changes Path 1.243 +2 -1 ports/devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 1:12:37 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D2D6D14FC2; Wed, 29 Dec 1999 01:12:35 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA54906; Wed, 29 Dec 1999 01:12:35 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290912.BAA54906@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 01:12:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators Makefile ports/emulators/twin Makefile ports/emulators/twin/files md5 ports/emulators/twin/patches patch-aa patch-ab patch-ac patch-ad patch-ae patch-af ports/emulators/twin/pkg COMMENT DESCR PLIST sorted Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 01:12:35 PST Modified files: emulators Makefile Added files: emulators/twin Makefile emulators/twin/files md5 emulators/twin/patches patch-aa patch-ab patch-ac patch-ad patch-ae patch-af emulators/twin/pkg COMMENT DESCR PLIST sorted Log: Adding twin version 19990616. Willows toolkit for migrating and developing Windows applications. PR: 12503 Submitted by: Pedro F. Giffuni Revision Changes Path 1.41 +2 -1 ports/emulators/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 1:16:10 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DB84D14EE5; Wed, 29 Dec 1999 01:16:06 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA55239; Wed, 29 Dec 1999 01:16:06 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290916.BAA55239@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 01:16:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java Makefile ports/java/jdbcpool Makefile ports/java/jdbcpool/files md5 ports/java/jdbcpool/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 01:16:06 PST Modified files: java Makefile Added files: java/jdbcpool Makefile java/jdbcpool/files md5 java/jdbcpool/pkg COMMENT DESCR PLIST Log: Adding jdbcpool version 0.94. Implements a JDBC connection pool. PR: 12523 Submitted by: Jose Marques Revision Changes Path 1.8 +2 -1 ports/java/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 1:19:42 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F3CF14C95; Wed, 29 Dec 1999 01:19:40 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA55608; Wed, 29 Dec 1999 01:19:39 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290919.BAA55608@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 01:19:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang Makefile ports/lang/cu-prolog Makefile ports/lang/cu-prolog/files md5 ports/lang/cu-prolog/patches patch-aa patch-ab patch-ac patch-ad patch-ae ports/lang/cu-prolog/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 01:19:39 PST Modified files: lang Makefile Added files: lang/cu-prolog Makefile lang/cu-prolog/files md5 lang/cu-prolog/patches patch-aa patch-ab patch-ac patch-ad patch-ae lang/cu-prolog/pkg COMMENT DESCR PLIST Log: Adding cu-prolog version 3.94. An Experimental constraint logic programming language. PR: 12536 Submitted by: Issei Suzuki Revision Changes Path 1.158 +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 Wed Dec 29 1:25:53 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4511814E45; Wed, 29 Dec 1999 01:25:51 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA56320; Wed, 29 Dec 1999 01:25:50 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290925.BAA56320@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 01:25:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www Makefile ports/www/cgic Makefile ports/www/cgic/files md5 ports/www/cgic/patches patch-aa ports/www/cgic/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 01:25:49 PST Modified files: www Makefile Added files: www/cgic Makefile www/cgic/files md5 www/cgic/patches patch-aa www/cgic/pkg COMMENT DESCR PLIST Log: Add cgic version 1.06. An ANSI C library for CGI programming. PR: 12835 Submitted by: Andrey Zakhvatov Revision Changes Path 1.175 +3 -2 ports/www/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 1:29:10 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 96BF514C28; Wed, 29 Dec 1999 01:29:07 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA56608; Wed, 29 Dec 1999 01:29:07 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290929.BAA56608@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 01:29:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc Makefile ports/misc/kcd Makefile ports/misc/kcd/files md5 ports/misc/kcd/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 01:29:06 PST Modified files: misc Makefile Added files: misc/kcd Makefile misc/kcd/files md5 misc/kcd/pkg COMMENT DESCR PLIST Log: Adding kcd version 4.11.1. A pogram that allows one to change direcotries in full-screen visual mode. PR: 12666 Submitted by: Andrey Zakhvatov Revision Changes Path 1.254 +2 -1 ports/misc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 1:36:20 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F39214F0F; Wed, 29 Dec 1999 01:36:18 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA57167; Wed, 29 Dec 1999 01:36:17 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290936.BAA57167@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 01:36:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc Makefile ports/misc/hello Makefile ports/misc/hello/files md5 ports/misc/hello/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 01:36:17 PST Modified files: misc Makefile Added files: misc/hello Makefile misc/hello/files md5 misc/hello/pkg COMMENT DESCR PLIST Log: Adding hello version 1.3.1. A utility for saying hello to the world and read email. PR: 12787 Submitted by: Peter Shipley Revision Changes Path 1.255 +2 -1 ports/misc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 1:37:42 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7484C150C7; Wed, 29 Dec 1999 01:37:40 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA57279; Wed, 29 Dec 1999 01:37:40 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912290937.BAA57279@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 01:37:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 01:37:39 PST Modified files: . modules Log: cgic -> ports/www/cgic cu-prolog -> ports/lang/cu-prolog hello -> ports/misc/hello jdbcpool -> ports/java/jdbcpool kcd -> ports/misc/kcd port_gperf -> ports/devel/gperf twin -> ports/emulators/twin Revision Changes Path 1.722 +8 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 1:46:12 1999 Delivered-To: cvs-all@freebsd.org Received: from gndrsh.dnsmgr.net (GndRsh.dnsmgr.net [198.145.92.4]) by hub.freebsd.org (Postfix) with ESMTP id 35F4A14C28; Wed, 29 Dec 1999 01:46:08 -0800 (PST) (envelope-from freebsd@gndrsh.dnsmgr.net) Received: (from freebsd@localhost) by gndrsh.dnsmgr.net (8.9.3/8.9.3) id BAA72365; Wed, 29 Dec 1999 01:46:06 -0800 (PST) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <199912290946.BAA72365@gndrsh.dnsmgr.net> Subject: Re: cvs commit: ports/misc/amanda Makefile ports/misc/amanda/pkg INSTALL In-Reply-To: <199912290713.XAA23391@freefall.freebsd.org> from Steve Price at "Dec 28, 1999 11:13:34 pm" To: steve@FreeBSD.org (Steve Price) Date: Wed, 29 Dec 1999 01:46:05 -0800 (PST) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > steve 1999/12/28 23:13:34 PST > > Modified files: > misc/amanda Makefile > Added files: > misc/amanda/pkg INSTALL > Log: > Fix a potential root exploit in runtar that would allow any user to run > tar as root. Is this also applicable to amanda24, or is it an amanda (2.3?) thing only? -- Rod Grimes - KD7CAX @ CN85sl - (RWG25) rgrimes@gndrsh.dnsmgr.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 1:54:49 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 201AA15198; Wed, 29 Dec 1999 01:54:47 -0800 (PST) (envelope-from msmith@FreeBSD.org) Received: (from msmith@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA58160; Wed, 29 Dec 1999 01:54:47 -0800 (PST) (envelope-from msmith@FreeBSD.org) Message-Id: <199912290954.BAA58160@freefall.freebsd.org> From: Mike Smith Date: Wed, 29 Dec 1999 01:54:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/i386/libi386 biosmem.c bootinfo.c i386_copy.c libi386.h time.c src/sys/boot/i386/loader main.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1999/12/29 01:54:46 PST Modified files: sys/boot/i386/libi386 biosmem.c bootinfo.c i386_copy.c libi386.h time.c sys/boot/i386/loader main.c Log: Substantially revamp the way that we determine the amount of memory available for our use. Use the same search order for BIOS memory size functions as the kernel will later use. Allow the loader to use all of the detected physical memory (this will greatly help people trying to load enormous memory disk images). More correctly handle running out of memory when loading an object. Use the end of base memory for the top of the heap, rather than blindly hoping that there is 384k left. Add copyrights to a couple of files I forgot. Revision Changes Path 1.4 +91 -38 src/sys/boot/i386/libi386/biosmem.c 1.23 +3 -3 src/sys/boot/i386/libi386/bootinfo.c 1.8 +35 -6 src/sys/boot/i386/libi386/i386_copy.c 1.11 +4 -3 src/sys/boot/i386/libi386/libi386.h 1.3 +26 -2 src/sys/boot/i386/libi386/time.c 1.16 +5 -5 src/sys/boot/i386/loader/main.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 2:27:22 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A725A14D30; Wed, 29 Dec 1999 02:27:20 -0800 (PST) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA60373; Wed, 29 Dec 1999 02:27:20 -0800 (PST) (envelope-from tg@FreeBSD.org) Message-Id: <199912291027.CAA60373@freefall.freebsd.org> From: Thomas Gellekum Date: Wed, 29 Dec 1999 02:27:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/shells/pdksh Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk tg 1999/12/29 02:27:19 PST Modified files: shells/pdksh Makefile Log: Update /etc/shells after installation. PR: 15685 Submitted by: foxfair Revision Changes Path 1.21 +8 -1 ports/shells/pdksh/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 3: 1:32 1999 Delivered-To: cvs-all@freebsd.org Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 3C5E2155C2; Wed, 29 Dec 1999 03:01:25 -0800 (PST) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 3.11 #1) id 123Gr3-00049u-00; Wed, 29 Dec 1999 13:01:21 +0200 From: Sheldon Hearn To: Thomas Gellekum Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/shells/pdksh Makefile In-reply-to: Your message of "Wed, 29 Dec 1999 02:27:19 PST." <199912291027.CAA60373@freefall.freebsd.org> Date: Wed, 29 Dec 1999 13:01:20 +0200 Message-ID: <15989.946465280@axl.noc.iafrica.com> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Wed, 29 Dec 1999 02:27:19 PST, Thomas Gellekum wrote: > Modified files: > shells/pdksh Makefile > Log: > Update /etc/shells after installation. Um, wouldn't this be better done as a pkg/INSTALL script so that it works for the package as well? Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 3:13:31 1999 Delivered-To: cvs-all@freebsd.org Received: from cip12.melaten.rwth-aachen.de (cip12.melaten.RWTH-Aachen.DE [134.130.92.12]) by hub.freebsd.org (Postfix) with ESMTP id 472C614DC2; Wed, 29 Dec 1999 03:13:28 -0800 (PST) (envelope-from tg@melaten.rwth-aachen.de) Received: (from tg@localhost) by cip12.melaten.rwth-aachen.de (8.9.3/8.9.3) id MAA76072; Wed, 29 Dec 1999 12:14:02 +0100 (CET) (envelope-from tg@melaten.rwth-aachen.de) X-Authentication-Warning: cip12.melaten.rwth-aachen.de: tg set sender to tg@melaten.rwth-aachen.de using -f To: Sheldon Hearn Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/shells/pdksh Makefile References: <15989.946465280@axl.noc.iafrica.com> From: Thomas Gellekum In-Reply-To: Sheldon Hearn's message of "Wed, 29 Dec 1999 13:01:20 +0200" Date: 29 Dec 1999 12:13:43 +0100 Message-ID: Lines: 15 User-Agent: Gnus/5.0802 (Gnus v5.8.2) XEmacs/20.4 (Emerald) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Sheldon Hearn writes: > On Wed, 29 Dec 1999 02:27:19 PST, Thomas Gellekum wrote: > > > Modified files: > > shells/pdksh Makefile > > Log: > > Update /etc/shells after installation. > > Um, wouldn't this be better done as a pkg/INSTALL script so that it > works for the package as well? Doesn't the @exec in pkg/PLIST work for you? tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 3:22:53 1999 Delivered-To: cvs-all@freebsd.org Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 0B06215610; Wed, 29 Dec 1999 03:22:48 -0800 (PST) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 3.11 #1) id 123HAL-0004Of-00; Wed, 29 Dec 1999 13:21:17 +0200 From: Sheldon Hearn To: Thomas Gellekum Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/shells/pdksh Makefile In-reply-to: Your message of "29 Dec 1999 12:13:43 +0100." Date: Wed, 29 Dec 1999 13:21:17 +0200 Message-ID: <16904.946466477@axl.noc.iafrica.com> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On 29 Dec 1999 12:13:43 +0100, Thomas Gellekum wrote: > Doesn't the @exec in pkg/PLIST work for you? Duh, yes it does. :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 4:21: 4 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EA44C14E76; Wed, 29 Dec 1999 04:21:02 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA70746; Wed, 29 Dec 1999 04:21:02 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912291221.EAA70746@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Wed, 29 Dec 1999 04:21:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/cftp Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/29 04:21:02 PST Modified files: ftp/cftp Makefile Log: Update MASTER_SITES Revision Changes Path 1.7 +2 -2 ports/ftp/cftp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 4:22: 5 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D790A14CBE; Wed, 29 Dec 1999 04:22:03 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA70820; Wed, 29 Dec 1999 04:22:03 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912291222.EAA70820@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Wed, 29 Dec 1999 04:22:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/libgnugetopt Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/29 04:22:03 PST Modified files: devel/libgnugetopt Makefile Log: Update MASTER_SITES Revision Changes Path 1.5 +2 -2 ports/devel/libgnugetopt/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 4:33: 5 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AD6F914BC3; Wed, 29 Dec 1999 04:33:03 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA71446; Wed, 29 Dec 1999 04:33:03 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912291233.EAA71446@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Wed, 29 Dec 1999 04:33:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/29 04:33:03 PST Modified files: . modules Log: chpp --> ports/textproc/chpp Revision Changes Path 1.723 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 4:34: 5 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 63F5314D2C; Wed, 29 Dec 1999 04:34:01 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA71492; Wed, 29 Dec 1999 04:33:59 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912291233.EAA71492@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Wed, 29 Dec 1999 04:33:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/chpp - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/29 04:33:58 PST ports/textproc/chpp - Imported sources Update of /home/ncvs/ports/textproc/chpp In directory freefall.freebsd.org:/c/users/jedgar/work/chpp Log Message: This is a port of chpp, non-intrusive full-featured text preprocessor. PR: 13541 Submitted by: Andrey Zakhvatov Status: Vendor Tag: ZAKHVATOV Release Tags: v_0_3_5 N ports/textproc/chpp/Makefile N ports/textproc/chpp/files/md5 N ports/textproc/chpp/patches/patch-aa N ports/textproc/chpp/pkg/PLIST N ports/textproc/chpp/pkg/COMMENT N ports/textproc/chpp/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 Wed Dec 29 4:35:33 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CB0A214BEA; Wed, 29 Dec 1999 04:35:30 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA71561; Wed, 29 Dec 1999 04:35:08 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912291235.EAA71561@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Wed, 29 Dec 1999 04:35:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/29 04:35:08 PST Modified files: textproc Makefile Log: Activate chpp Revision Changes Path 1.81 +2 -1 ports/textproc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 4:45: 4 1999 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 758) id 0B25E14BC4; Wed, 29 Dec 1999 04:45:02 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id ED7571CD81E; Wed, 29 Dec 1999 04:45:01 -0800 (PST) (envelope-from kris@hub.freebsd.org) Date: Wed, 29 Dec 1999 04:45:01 -0800 (PST) From: Kris Kennaway To: Dirk Froemberg Cc: cvs-all@freebsd.org, cvs-committers@freebsd.org Subject: Re: cvs commit: src/secure/usr.bin Makefile src/secure/usr.bin/openssl Makefile In-Reply-To: <19991229004713.A9128@physik.TU-Berlin.DE> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Wed, 29 Dec 1999, Dirk Froemberg wrote: > Works fine for me. Glad to hear it. > But what about the openssl port and the ports depending on/using the > openssl port, now? > > Will this be merged into RELENG_3? If not we'll have to surround > dependecies to openssl by something like > > .if !exists(/usr/lib/libcrypto.so) || !exists(/usr/lib/libssl.so) > LIB_DEPENDS= crypto.1:${PORTSDIR}/security/openssl Hmm. I have no immediate plans to MFC because it's not something we've discussed, but I don't see any reason why it couldn't be once everything is stabilized. Does LIB_DEPENDS pick up libraries in /usr/lib? If not, that would probably be the best way out of this: in the 4.0 case the dependency would always succeed and the port would never be built. Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 4:46:17 1999 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 758) id 67E6814C8D; Wed, 29 Dec 1999 04:46:15 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 561D91CD81E; Wed, 29 Dec 1999 04:46:15 -0800 (PST) (envelope-from kris@hub.freebsd.org) Date: Wed, 29 Dec 1999 04:46:15 -0800 (PST) From: Kris Kennaway To: Mark Murray Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/secure/lib Makefile src/secure/lib/libcrypto Makefile Makefile.inc opensslconf-alpha.h opensslconf-i386.h src/secure/lib/libssl Makefile In-Reply-To: <199912281915.dBSJFd343172@gratis.grondar.za> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Tue, 28 Dec 1999, Mark Murray wrote: > Please add as much of this as possible to Freefall as well, suitably > protected by .if exists() constructs. Yep, will do. My time is limited between now and new year, so I'll do this when I get back to the US next week. Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 4:49:31 1999 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 758) id 5D57214C84; Wed, 29 Dec 1999 04:49:29 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 4D1111CD81E; Wed, 29 Dec 1999 04:49:29 -0800 (PST) (envelope-from kris@hub.freebsd.org) Date: Wed, 29 Dec 1999 04:49:29 -0800 (PST) From: Kris Kennaway To: David O'Brien Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin Makefile src/usr.bin/fpr Makefile fpr.1 fpr.c src/usr.bin/fsplit Makefile fsplit.1 fsplit.c In-Reply-To: <19991228135241.B6358@dragon.nuxi.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Tue, 28 Dec 1999, David O'Brien wrote: > I believe the opinion was removing these would be fine *_IF_* ports of > them were made. I may have missed it, but I fail to see where you > committed ports of these. The port commit went through shortly thereafter - you must have just missed it (devel/fortran-utils). Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 4:54:31 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A794314E44; Wed, 29 Dec 1999 04:54:26 -0800 (PST) (envelope-from shin@FreeBSD.org) Received: (from shin@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA72961; Wed, 29 Dec 1999 04:53:22 -0800 (PST) (envelope-from shin@FreeBSD.org) Message-Id: <199912291253.EAA72961@freefall.freebsd.org> From: Yoshinobu Inoue Date: Wed, 29 Dec 1999 04:53:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk shin 1999/12/29 04:53:22 PST Modified files: usr.sbin Makefile Log: Sorry, ndp command is not exist yet. Specified by: Anders Andersson Revision Changes Path 1.176 +1 -2 src/usr.sbin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 4:59: 4 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0DCB0150A2; Wed, 29 Dec 1999 04:59:01 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA73481; Wed, 29 Dec 1999 04:59:00 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912291259.EAA73481@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Wed, 29 Dec 1999 04:59:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/rfc Makefile ports/misc/rfc/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/29 04:59:00 PST Modified files: misc/rfc Makefile misc/rfc/files md5 Log: Update port to 2.2 * Add -r (perl regexp) option Revision Changes Path 1.4 +3 -3 ports/misc/rfc/Makefile 1.4 +1 -1 ports/misc/rfc/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 5:11:42 1999 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 758) id 8DC3714F55; Wed, 29 Dec 1999 05:11:39 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 7BEAE1CD81E; Wed, 29 Dec 1999 05:11:39 -0800 (PST) (envelope-from kris@hub.freebsd.org) Date: Wed, 29 Dec 1999 05:11:39 -0800 (PST) From: Kris Kennaway To: Steve Price Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/devel Makefile ports/devel/gperf Makefile ports/devel/gperf/files md5 ports/devel/gperf/patches patch-aa ports/devel/gperf/pkg COMMENT DESCR PLIST In-Reply-To: <199912290909.BAA54635@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Wed, 29 Dec 1999, Steve Price wrote: > Log: > Adding gperf version 2.7 > Generates perfect hash functions for sets of keywords. This should actually be imported into the base tree (replacing our ancient version).. I've been running with this in my tree with no ill effects for about 6 months now - if no-one gets there first I'll do it myself some time in the new year. Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 5:15: 4 1999 Delivered-To: cvs-all@freebsd.org Received: from emmi.physik.TU-Berlin.DE (emmi.physik.TU-Berlin.DE [130.149.160.103]) by hub.freebsd.org (Postfix) with ESMTP id 477A41562A; Wed, 29 Dec 1999 05:14:59 -0800 (PST) (envelope-from ibex@emmi.physik.TU-Berlin.DE) Received: (from ibex@localhost) by emmi.physik.TU-Berlin.DE (8.9.3/8.9.3) id OAA17465; Wed, 29 Dec 1999 14:14:29 +0100 (CET) (envelope-from ibex) Date: Wed, 29 Dec 1999 14:14:29 +0100 From: Dirk Froemberg To: Kris Kennaway Cc: cvs-all@freebsd.org, cvs-committers@freebsd.org Subject: Re: cvs commit: src/secure/usr.bin Makefile src/secure/usr.bin/openssl Makefile Message-ID: <19991229141429.A17204@physik.TU-Berlin.DE> References: <19991229004713.A9128@physik.TU-Berlin.DE> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from kris@hub.freebsd.org on Wed, Dec 29, 1999 at 04:45:01AM -0800 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Hi Kris! On Wed, Dec 29, 1999 at 04:45:01AM -0800, Kris Kennaway wrote: > On Wed, 29 Dec 1999, Dirk Froemberg wrote: > > But what about the openssl port and the ports depending on/using the > > openssl port, now? > > > > Will this be merged into RELENG_3? If not we'll have to surround > > dependecies to openssl by something like > > > > .if !exists(/usr/lib/libcrypto.so) || !exists(/usr/lib/libssl.so) > > LIB_DEPENDS= crypto.1:${PORTSDIR}/security/openssl > > Hmm. I have no immediate plans to MFC because it's not something we've > discussed, but I don't see any reason why it couldn't be once everything > is stabilized. Does LIB_DEPENDS pick up libraries in /usr/lib? If not, > that would probably be the best way out of this: in the 4.0 case the > dependency would always succeed and the port would never be built. LIB_DEPENDS basically does "ldconfig -r | grep ..." (line 2300 bsd.port.mk). So it would also catch shared libraries in /usr/lib. But only if the versions of the libraries in the base system and the ports tree are the same. IMHO ".if exists(...) LIB_DEPENDS=... .endif" is safer. IIRC some ports have dependencies to header files from openssl. They have to be .if'ed out, anyway. Ok, so I'll take care about the openssl port and ports depending on openssl. Regards Dirk -- Dirk Froemberg FreeBSD: The Power to Serve! http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 5:33:44 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A3CED1519D; Wed, 29 Dec 1999 05:33:41 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA76599; Wed, 29 Dec 1999 05:33:41 -0800 (PST) (envelope-from billf@FreeBSD.org) Message-Id: <199912291333.FAA76599@freefall.freebsd.org> From: Bill Fumerola Date: Wed, 29 Dec 1999 05:33:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci pcic_p.c pcic_p.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1999/12/29 05:33:40 PST Modified files: sys/pci pcic_p.c pcic_p.h Log: Copy Texas Instruments cardbus controllers from pcisupport.c, the pcisupport.c probes are at the 'chip' level and will get overridden by pcic_p if it is compiled in. It's still nice to get the better probe message if it's not... Requested by: imp Revision Changes Path 1.18 +7 -1 src/sys/pci/pcic_p.c 1.9 +4 -1 src/sys/pci/pcic_p.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 5:34: 1 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 34BF515737; Wed, 29 Dec 1999 05:33:56 -0800 (PST) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA76621; Wed, 29 Dec 1999 05:33:56 -0800 (PST) (envelope-from asami@FreeBSD.org) Message-Id: <199912291333.FAA76621@freefall.freebsd.org> From: Satoshi Asami Date: Wed, 29 Dec 1999 05:33:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1999/12/29 05:33:56 PST Modified files: . Makefile.inc1 Log: Typo (libcrypto -> libcrypt). Revision Changes Path 1.115 +2 -2 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 5:53:17 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 26A0014DAD; Wed, 29 Dec 1999 05:53:15 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA77932; Wed, 29 Dec 1999 05:53:15 -0800 (PST) (envelope-from ru@FreeBSD.org) Message-Id: <199912291353.FAA77932@freefall.freebsd.org> From: Ruslan Ermilov Date: Wed, 29 Dec 1999 05:53:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ifconfig ifconfig.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ru 1999/12/29 05:53:14 PST Modified files: sbin/ifconfig ifconfig.c Log: - do not dereference a null pointer. - minor sanity. PR: 15318 Revision Changes Path 1.47 +11 -3 src/sbin/ifconfig/ifconfig.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 5:57:40 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B75041562C; Wed, 29 Dec 1999 05:57:34 -0800 (PST) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA78358; Wed, 29 Dec 1999 05:57:34 -0800 (PST) (envelope-from asami@FreeBSD.org) Message-Id: <199912291357.FAA78358@freefall.freebsd.org> From: Satoshi Asami Date: Wed, 29 Dec 1999 05:57:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1999/12/29 05:57:33 PST Modified files: . Makefile.inc1 Log: Oops, the previous commit was bogus. I shouldn't commit something without reading all my mail. I still don't understand why this was was committed on freefall before the libcrypto and libssl subdirectories were imported on freefall though. Revision Changes Path 1.116 +2 -2 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 6: 7:32 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 26DFA14BC4; Wed, 29 Dec 1999 06:07:24 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA79014; Wed, 29 Dec 1999 06:07:24 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Message-Id: <199912291407.GAA79014@freefall.freebsd.org> From: Sheldon Hearn Date: Wed, 29 Dec 1999 06:07:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include ieeefp.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sheldonh 1999/12/29 06:07:22 PST Modified files: (Branch: RELENG_3) include ieeefp.h Log: MFC rev 1.2: Conditionalize on __i386__ instead of i386 . Added $FreeBSD$ to satisfy commit_prep.pl . PR: misc/15730 Reported by: Brooks Davis Revision Changes Path 1.1.2.2 +5 -3 src/include/ieeefp.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 6:18:56 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B2E251505D; Wed, 29 Dec 1999 06:18:53 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA79916; Wed, 29 Dec 1999 06:18:53 -0800 (PST) (envelope-from kris@FreeBSD.org) Message-Id: <199912291418.GAA79916@freefall.freebsd.org> From: Kris Kennaway Date: Wed, 29 Dec 1999 06:18:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kris 1999/12/29 06:18:52 PST Modified files: . Makefile.inc1 Log: Only make beforeinstall in libcrypto/libssl if they actually exist. I haven't imported these on Freefall yet for the reasons previously explained. Noticed by: asami Revision Changes Path 1.117 +5 -1 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 6:19:14 1999 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id BE12115166; Wed, 29 Dec 1999 06:18:56 -0800 (PST) (envelope-from billf@chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 201111C5D; Wed, 29 Dec 1999 09:18:06 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by jade.chc-chimes.com (Postfix) with ESMTP id 0E7253843; Wed, 29 Dec 1999 09:18:06 -0500 (EST) Date: Wed, 29 Dec 1999 09:18:06 -0500 (EST) From: Bill Fumerola To: Steve Price Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/comms/rzsz Makefile In-Reply-To: <199912290744.XAA27789@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Tue, 28 Dec 1999, Steve Price wrote: > Log: > I'm not allowed to host this distfile. As Satoshi's request I asked > the author and this is what he said. > > "The current version of rzsz 3.xx should always be downloaded > from the Omen web site. Previous versions are obsolete and > not supported." Did you suggest to the author to do something smart and number his tarballs? I despise people who think that releasing foobaz.tgz is a great idea. Even for reasons other then the ports tree, it's so much easier to look at the file and know what you have.. *sigh* -- - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 6:39:30 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 06C22151B1; Wed, 29 Dec 1999 06:39:28 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA19053; Wed, 29 Dec 1999 06:39:27 -0800 (PST) (envelope-from phk@FreeBSD.org) Message-Id: <199912291439.GAA19053@freefall.freebsd.org> From: Poul-Henning Kamp Date: Wed, 29 Dec 1999 06:39:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_ntptime.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk phk 1999/12/29 06:39:27 PST Modified files: sys/kern kern_ntptime.c Log: Don't use time_offset as a leaky bucket variable in hardpps(), this resulted in vastly optimistic offset values reported to userland (typically a factor 40+ too small). Apart from that, the code had two sign-bugs. Apply the hardpps() phase with the right sign with a simply scaling by integration interval. (This may be too stiff at long integration intervals, see below). Allow pps_shiftmax to be reduced again. Before this, the phase lock in hardpps() were broken, but due to two bugs mostly cancelling out, it would end up basically working with a large stochastic component. Now it behaves as one would expect: smooth and quiet. It seems that pps_shiftmax above 7..9 somewhere makes the phaselock too weak to hold onto random walk phase errors from a HP-105 OCXO, which basically means that it is too weak for real-life use with such integration times. This is yet to be resolved. Submitted to: Prof. Dave "NTP" Mills. Tested by: Terje Mathisen Revision Changes Path 1.30 +18 -15 src/sys/kern/kern_ntptime.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 6:42:49 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F0F91563D; Wed, 29 Dec 1999 06:42:47 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA35445; Wed, 29 Dec 1999 06:42:47 -0800 (PST) (envelope-from obrien@FreeBSD.org) Message-Id: <199912291442.GAA35445@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 29 Dec 1999 06:42:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 src/contrib/gcc gcc.c src/gnu/usr.bin/cc Makefile.inc src/gnu/usr.bin/cc/cc_drv Makefile src/gnu/usr.bin/cc/cc_tools freebsd-native.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1999/12/29 06:42:47 PST Modified files: . Makefile.inc1 contrib/gcc gcc.c gnu/usr.bin/cc Makefile.inc gnu/usr.bin/cc/cc_drv Makefile gnu/usr.bin/cc/cc_tools freebsd-native.h Log: Allow the specification of a prefix for gcc to find all the various bits. If one wishes to anchor the compiler toolchain tree somewhere other than /, all one needs to do is set "TOOLS_PREFIX" to a different rooting. Submitted by: marcel (in a different format and reworked by me) Revision Changes Path 1.118 +2 -5 src/Makefile.inc1 1.16 +4 -4 src/contrib/gcc/gcc.c 1.48 +8 -9 src/gnu/usr.bin/cc/Makefile.inc 1.10 +1 -2 src/gnu/usr.bin/cc/cc_drv/Makefile 1.5 +9 -6 src/gnu/usr.bin/cc/cc_tools/freebsd-native.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 6:47: 3 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3137E15645; Wed, 29 Dec 1999 06:47:02 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA37338; Wed, 29 Dec 1999 06:47:02 -0800 (PST) (envelope-from obrien@FreeBSD.org) Message-Id: <199912291447.GAA37338@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 29 Dec 1999 06:47:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1999/12/29 06:47:01 PST Modified files: . Makefile.inc1 Log: Restore changes I spammed. Revision Changes Path 1.119 +5 -1 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 7:23:49 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AEB6C15579; Wed, 29 Dec 1999 07:23:45 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA40615; Wed, 29 Dec 1999 07:23:45 -0800 (PST) (envelope-from billf@FreeBSD.org) Message-Id: <199912291523.HAA40615@freefall.freebsd.org> From: Bill Fumerola Date: Wed, 29 Dec 1999 07:23:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/calamaris/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1999/12/29 07:23:45 PST Modified files: www/calamaris/files md5 Log: Upgrade to 0.29 PR: ports/15550 Submitted by: maintainer Revision Changes Path 1.8 +1 -1 ports/www/calamaris/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 7:25:15 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A9ED1155ED; Wed, 29 Dec 1999 07:25:13 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA40870; Wed, 29 Dec 1999 07:25:13 -0800 (PST) (envelope-from billf@FreeBSD.org) Message-Id: <199912291525.HAA40870@freefall.freebsd.org> From: Bill Fumerola Date: Wed, 29 Dec 1999 07:25:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/calamaris Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1999/12/29 07:25:13 PST Modified files: www/calamaris Makefile Log: CVS Stupidity: see ports/www/calamaris/files/md5:rev1.7 Revision Changes Path 1.9 +3 -3 ports/www/calamaris/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 7:36: 4 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 00E4A150C7; Wed, 29 Dec 1999 07:36:03 -0800 (PST) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA41919; Wed, 29 Dec 1999 07:36:02 -0800 (PST) (envelope-from ache@FreeBSD.org) Message-Id: <199912291536.HAA41919@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Wed, 29 Dec 1999 07:36:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/procmail Makefile ports/mail/procmail/files md5 ports/mail/procmail/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1999/12/29 07:36:02 PST Modified files: mail/procmail Makefile mail/procmail/files md5 mail/procmail/pkg DESCR Log: Upgrade to 3.14 Revision Changes Path 1.30 +3 -2 ports/mail/procmail/Makefile 1.8 +1 -1 ports/mail/procmail/files/md5 1.3 +2 -0 ports/mail/procmail/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 7:45: 4 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CB8BC14CE1; Wed, 29 Dec 1999 07:45:01 -0800 (PST) (envelope-from jasone@FreeBSD.org) Received: (from jasone@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA42995; Wed, 29 Dec 1999 07:45:01 -0800 (PST) (envelope-from jasone@FreeBSD.org) Message-Id: <199912291545.HAA42995@freefall.freebsd.org> From: Jason Evans Date: Wed, 29 Dec 1999 07:45:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/uthread pthread_private.h uthread_create.c uthread_init.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jasone 1999/12/29 07:45:01 PST Modified files: lib/libc_r/uthread pthread_private.h uthread_create.c uthread_init.c Log: Don't explicitly mmap() red zones at the bottom of thread stacks (except the initial thread). Instead, just leave an unmapped gap between thread stacks and make sure that the thread stacks won't grow into these gaps, simply by limiting the size of the stacks with the 'len' argument to mmap(). This (if I understand correctly) reduces VM overhead considerably. Reviewed by: deischen Revision Changes Path 1.32 +19 -6 src/lib/libc_r/uthread/pthread_private.h 1.23 +2 -11 src/lib/libc_r/uthread/uthread_create.c 1.21 +8 -2 src/lib/libc_r/uthread/uthread_init.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 7:45:48 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A42BC14CE1; Wed, 29 Dec 1999 07:45:46 -0800 (PST) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA43137; Wed, 29 Dec 1999 07:45:46 -0800 (PST) (envelope-from ache@FreeBSD.org) Message-Id: <199912291545.HAA43137@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Wed, 29 Dec 1999 07:45:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ntp/scripts mkver Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1999/12/29 07:45:46 PST Modified files: usr.sbin/ntp/scripts mkver Log: Use LC_TIME=C for date Revision Changes Path 1.2 +2 -2 src/usr.sbin/ntp/scripts/mkver To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 8:15:27 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1976414E50; Wed, 29 Dec 1999 08:15:25 -0800 (PST) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA46756; Wed, 29 Dec 1999 08:15:24 -0800 (PST) (envelope-from ache@FreeBSD.org) Message-Id: <199912291615.IAA46756@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Wed, 29 Dec 1999 08:15:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/sendmail freebsd.mc Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1999/12/29 08:15:24 PST Modified files: etc/sendmail freebsd.mc Log: Remove -o before sendmail.cw - pure file name needed here Revision Changes Path 1.9 +2 -2 src/etc/sendmail/freebsd.mc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 8:33:39 1999 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 4280114E43; Wed, 29 Dec 1999 08:33:35 -0800 (PST) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id JAA43831; Wed, 29 Dec 1999 09:33:34 -0700 (MST) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id JAA02940; Wed, 29 Dec 1999 09:33:33 -0700 (MST) Message-Id: <199912291633.JAA02940@harmony.village.org> To: Bill Fumerola Subject: Re: cvs commit: src/sys/pci pcic_p.c pcic_p.h Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Wed, 29 Dec 1999 05:33:41 PST." <199912291333.FAA76599@freefall.freebsd.org> References: <199912291333.FAA76599@freefall.freebsd.org> Date: Wed, 29 Dec 1999 09:33:33 -0700 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In message <199912291333.FAA76599@freefall.freebsd.org> Bill Fumerola writes: : Copy Texas Instruments cardbus controllers from pcisupport.c, the pcisupport.c : probes are at the 'chip' level and will get overridden by pcic_p if it is : compiled in. It's still nice to get the better probe message if it's not... Thanks Bill! Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 8:50:13 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 657EA1562C; Wed, 29 Dec 1999 08:50:10 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA59145; Wed, 29 Dec 1999 08:50:10 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Message-Id: <199912291650.IAA59145@freefall.freebsd.org> From: Sheldon Hearn Date: Wed, 29 Dec 1999 08:50:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/date date.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sheldonh 1999/12/29 08:50:10 PST Modified files: bin/date date.c Log: Back out previous commit and replace with a cleaner solution adapted from the source attributed below. In particular, this removes a goto inside a switch and replaces those horrendous ATOI macros with something acceptable. More clean-ups to come. PR: bin/14151 Reported by: Christian Weisgerber Obtained from: NetBSD Revision Changes Path 1.32 +22 -12 src/bin/date/date.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 8:52:10 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5C0FA1514D; Wed, 29 Dec 1999 08:52:08 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: (from rwatson@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA59282; Wed, 29 Dec 1999 08:52:08 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Message-Id: <199912291652.IAA59282@freefall.freebsd.org> From: Robert Watson Date: Wed, 29 Dec 1999 08:52:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/net gethostbydns.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rwatson 1999/12/29 08:52:08 PST Modified files: (Branch: RELENG_3) lib/libc/net gethostbydns.c Log: MFC rev 1.26: silence spurious libc DNS warnings on receiving DNSsec T_SIG PR: bin/15056, bin/7352 Reviewed by: eivind, peter Revision Changes Path 1.23.2.2 +5 -4 src/lib/libc/net/gethostbydns.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 9:17:17 1999 Delivered-To: cvs-all@freebsd.org Received: from overcee.netplex.com.au (overcee.netplex.com.au [202.12.86.7]) by hub.freebsd.org (Postfix) with ESMTP id BC76814E50; Wed, 29 Dec 1999 09:17:12 -0800 (PST) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 12D681CCF; Thu, 30 Dec 1999 01:17:05 +0800 (WST) (envelope-from peter@netplex.com.au) X-Mailer: exmh version 2.1.1 10/15/1999 To: Bill Fumerola Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/calamaris Makefile In-Reply-To: Message from Bill Fumerola of "Wed, 29 Dec 1999 07:25:13 PST." <199912291525.HAA40870@freefall.freebsd.org> Date: Thu, 30 Dec 1999 01:17:05 +0800 From: Peter Wemm Message-Id: <19991229171705.12D681CCF@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Bill Fumerola wrote: > billf 1999/12/29 07:25:13 PST > > Modified files: > www/calamaris Makefile > Log: > CVS Stupidity: see ports/www/calamaris/files/md5:rev1.7 I know what's doing this.. I'm about to test a fix for adverse affects. Anyway, it's a result of checking out of one tree (eg local) and committing to a different tree (eg: freefall) with an overridden root on the command line. See around line 159 of src/contrib/cvs/src/recurse.c - that #ifdef is new, and note the strcmp. I'm pretty sure it's that one. Cheers, -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 9:33:44 1999 Delivered-To: cvs-all@freebsd.org Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.133]) by hub.freebsd.org (Postfix) with ESMTP id D54A115201; Wed, 29 Dec 1999 09:33:35 -0800 (PST) (envelope-from mark@grondar.za) Received: from grondar.za (localhost [127.0.0.1]) by gratis.grondar.za (8.10.0.Beta6/8.10.0.Beta6) with ESMTP id dBTHXW347481; Wed, 29 Dec 1999 19:33:32 +0200 (SAST) Message-Id: <199912291733.dBTHXW347481@gratis.grondar.za> To: Kris Kennaway Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/secure/lib Makefile src/secure/lib/libcrypto Makefile Makefile.inc opensslconf-alpha.h opensslconf-i386.h src/secure/lib/libssl Makefile References: In-Reply-To: ; from Kris Kennaway "Wed, 29 Dec 1999 04:46:15 PST." Date: Wed, 29 Dec 1999 19:33:31 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > On Tue, 28 Dec 1999, Mark Murray wrote: > > > Please add as much of this as possible to Freefall as well, suitably > > protected by .if exists() constructs. > > Yep, will do. My time is limited between now and new year, so I'll do this > when I get back to the US next week. Cool! Have a good one! :-) 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 Wed Dec 29 9:50:37 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1091615278; Wed, 29 Dec 1999 09:50:35 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA64142; Wed, 29 Dec 1999 09:50:34 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912291750.JAA64142@freefall.freebsd.org> From: Peter Wemm Date: Wed, 29 Dec 1999 09:50:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libutil Makefile fparseln.3 fparseln.c libutil.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/29 09:50:34 PST Modified files: lib/libutil Makefile fparseln.3 fparseln.c libutil.h Log: Connect fparseln(3) for mailwrapper(8) Revision Changes Path 1.28 +3 -3 src/lib/libutil/Makefile 1.2 +2 -1 src/lib/libutil/fparseln.3 1.2 +8 -2 src/lib/libutil/fparseln.c 1.24 +11 -1 src/lib/libutil/libutil.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 9:51:25 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8CBF314CC2; Wed, 29 Dec 1999 09:51:22 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA64256; Wed, 29 Dec 1999 09:51:22 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912291751.JAA64256@freefall.freebsd.org> From: Peter Wemm Date: Wed, 29 Dec 1999 09:51:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/mailwrapper pathnames.h Makefile mailwrapper.8 mailwrapper.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/29 09:51:22 PST Modified files: usr.sbin/mailwrapper Makefile mailwrapper.8 mailwrapper.c Added files: usr.sbin/mailwrapper pathnames.h Log: Make mailwrapper build Revision Changes Path 1.2 +5 -4 src/usr.sbin/mailwrapper/Makefile 1.2 +6 -3 src/usr.sbin/mailwrapper/mailwrapper.8 1.2 +3 -2 src/usr.sbin/mailwrapper/mailwrapper.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 9:59:28 1999 Delivered-To: cvs-all@freebsd.org Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.133]) by hub.freebsd.org (Postfix) with ESMTP id DA1AE14C41; Wed, 29 Dec 1999 09:59:18 -0800 (PST) (envelope-from mark@grondar.za) Received: from grondar.za (localhost [127.0.0.1]) by gratis.grondar.za (8.10.0.Beta6/8.10.0.Beta6) with ESMTP id dBTHxG347758; Wed, 29 Dec 1999 19:59:16 +0200 (SAST) Message-Id: <199912291759.dBTHxG347758@gratis.grondar.za> To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/mailwrapper pathnames.h Makefile mailwrapper.8 mailwrapper.c References: <199912291751.JAA64256@freefall.freebsd.org> In-Reply-To: <199912291751.JAA64256@freefall.freebsd.org> ; from Peter Wemm "Wed, 29 Dec 1999 09:51:22 PST." Date: Wed, 29 Dec 1999 19:59:15 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > peter 1999/12/29 09:51:22 PST > > Modified files: > usr.sbin/mailwrapper Makefile mailwrapper.8 mailwrapper.c > Added files: > usr.sbin/mailwrapper pathnames.h > Log: > Make mailwrapper build You're ignoring me again! :-) Where are you going with this? Are you planning to nuke sendmail, or may I commit 8.10.0beta10? All the issues have been addressed; "it just works". 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 Wed Dec 29 10:12:45 1999 Delivered-To: cvs-all@freebsd.org Received: from overcee.netplex.com.au (overcee.netplex.com.au [202.12.86.7]) by hub.freebsd.org (Postfix) with ESMTP id 4C87C156E4; Wed, 29 Dec 1999 10:12:41 -0800 (PST) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 75A0C1CA0; Thu, 30 Dec 1999 02:12:34 +0800 (WST) (envelope-from peter@netplex.com.au) X-Mailer: exmh version 2.1.1 10/15/1999 To: Mark Murray Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/mailwrapper pathnames.h Makefile mailwrapper.8 mailwrapper.c In-Reply-To: Message from Mark Murray of "Wed, 29 Dec 1999 19:59:15 +0200." <199912291759.dBTHxG347758@gratis.grondar.za> Date: Thu, 30 Dec 1999 02:12:34 +0800 From: Peter Wemm Message-Id: <19991229181234.75A0C1CA0@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Mark Murray wrote: > > peter 1999/12/29 09:51:22 PST > > > > Modified files: > > usr.sbin/mailwrapper Makefile mailwrapper.8 mailwrapper.c > > Added files: > > usr.sbin/mailwrapper pathnames.h > > Log: > > Make mailwrapper build > > You're ignoring me again! :-) > > Where are you going with this? Are you planning to nuke > sendmail, or may I commit 8.10.0beta10? All the issues > have been addressed; "it just works". Yes, but it is "Beta10" - the sendmail folks themselves say it's all still subject to change. (And I have been the maintainer of the sendmail in freebsd since August 1995 and still assert this.) Cheers, -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 10:16:10 1999 Delivered-To: cvs-all@freebsd.org Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.133]) by hub.freebsd.org (Postfix) with ESMTP id 42FAE1560B; Wed, 29 Dec 1999 10:16:04 -0800 (PST) (envelope-from mark@grondar.za) Received: from grondar.za (localhost [127.0.0.1]) by gratis.grondar.za (8.10.0.Beta6/8.10.0.Beta6) with ESMTP id dBTIFl347839; Wed, 29 Dec 1999 20:15:47 +0200 (SAST) Message-Id: <199912291815.dBTIFl347839@gratis.grondar.za> To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/mailwrapper pathnames.h Makefile mailwrapper.8 mailwrapper.c References: <19991229181234.75A0C1CA0@overcee.netplex.com.au> In-Reply-To: <19991229181234.75A0C1CA0@overcee.netplex.com.au> ; from Peter Wemm "Thu, 30 Dec 1999 02:12:34 +0800." Date: Wed, 29 Dec 1999 20:15:46 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Yes, but it is "Beta10" - the sendmail folks themselves say it's all still > subject to change. (And I have been the maintainer of the sendmail in > freebsd since August 1995 and still assert this.) Finally, a definitive word! :-) No problem, I am hands-off. 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 Wed Dec 29 10:19:31 1999 Delivered-To: cvs-all@freebsd.org Received: from overcee.netplex.com.au (overcee.netplex.com.au [202.12.86.7]) by hub.freebsd.org (Postfix) with ESMTP id 777B61504A; Wed, 29 Dec 1999 10:19:26 -0800 (PST) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 698D81CA0; Thu, 30 Dec 1999 02:19:19 +0800 (WST) (envelope-from peter@netplex.com.au) X-Mailer: exmh version 2.1.1 10/15/1999 To: "Andrey A. Chernov" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/sendmail freebsd.mc In-Reply-To: Message from "Andrey A. Chernov" of "Wed, 29 Dec 1999 08:15:24 PST." <199912291615.IAA46756@freefall.freebsd.org> Date: Thu, 30 Dec 1999 02:19:19 +0800 From: Peter Wemm Message-Id: <19991229181919.698D81CA0@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Andrey A. Chernov" wrote: > ache 1999/12/29 08:15:24 PST > > Modified files: > etc/sendmail freebsd.mc > Log: > Remove -o before sendmail.cw - pure file name needed here Says who? Without -o: root@proxy[02:17am]~# sendmail peter@netplex.com.au /etc/sendmail.cf: line 67: fileclass: cannot open /etc/mail/sendmail.cw: No such file or directory With -o: root@proxy[02:18am]~# sendmail peter@netplex.com.au test root@proxy[02:18am]~# and it works: root@proxy[02:18am]~# echo foo.bar.baz > /etc/mail/sendmail.cw root@proxy[02:18am]~# sendmail -bt ADDRESS TEST MODE (ruleset 3 NOT automatically invoked) Enter
> $=w foo.bar.baz .... I am backing this out. Cheers, -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 10:20:26 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 31E9015059; Wed, 29 Dec 1999 10:20:24 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA67486; Wed, 29 Dec 1999 10:20:24 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912291820.KAA67486@freefall.freebsd.org> From: Peter Wemm Date: Wed, 29 Dec 1999 10:20:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/sendmail freebsd.mc Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/29 10:20:24 PST Modified files: etc/sendmail freebsd.mc Log: Revert previous commit, -o is functional here and is required. Revision Changes Path 1.10 +2 -2 src/etc/sendmail/freebsd.mc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 10:22:56 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 16F471568D; Wed, 29 Dec 1999 10:22:54 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA67884; Wed, 29 Dec 1999 10:22:53 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912291822.KAA67884@freefall.freebsd.org> From: Peter Wemm Date: Wed, 29 Dec 1999 10:22:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/29 10:22:53 PST Modified files: etc Makefile Log: Try and sort BIN1 a bit, it was all over the place. Add mail/mailer.conf (repocopied from /etc/mailer.conf to /etc/mail/mailer.conf on obrien's request) Revision Changes Path 1.210 +15 -12 src/etc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 10:23:35 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C7E181504A; Wed, 29 Dec 1999 10:23:33 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA67990; Wed, 29 Dec 1999 10:23:33 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912291823.KAA67990@freefall.freebsd.org> From: Peter Wemm Date: Wed, 29 Dec 1999 10:23:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc mailer.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/29 10:23:33 PST Removed files: etc mailer.conf Log: moved to etc/mail Requested by: obrien To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 10:24: 9 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 383C214D9A; Wed, 29 Dec 1999 10:24:07 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA68080; Wed, 29 Dec 1999 10:24:07 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912291824.KAA68080@freefall.freebsd.org> From: Peter Wemm Date: Wed, 29 Dec 1999 10:24:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/mail mailer.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/29 10:24:06 PST Modified files: etc/mail mailer.conf Log: Add $FreeBSD$ Revision Changes Path 1.2 +1 -1 src/etc/mail/mailer.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 10:25:57 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 217A41504A; Wed, 29 Dec 1999 10:25:56 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA68394; Wed, 29 Dec 1999 10:25:56 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912291825.KAA68394@freefall.freebsd.org> From: Peter Wemm Date: Wed, 29 Dec 1999 10:25:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/mailwrapper pathnames.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/29 10:25:55 PST Modified files: usr.sbin/mailwrapper pathnames.h Log: Move mailer.conf to /etc/mail at obrien's request. Revision Changes Path 1.2 +2 -3 src/usr.sbin/mailwrapper/pathnames.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 10:27:39 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F029414DE2; Wed, 29 Dec 1999 10:27:35 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA68550; Wed, 29 Dec 1999 10:27:35 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912291827.KAA68550@freefall.freebsd.org> From: Peter Wemm Date: Wed, 29 Dec 1999 10:27:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/mailwrapper Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/29 10:27:35 PST Modified files: usr.sbin/mailwrapper Makefile Log: As a special case, deal with a missing mailer.conf at install time. I don't particularly like doing this here, but the alternative (loosing mail) is worse. Revision Changes Path 1.3 +7 -2 src/usr.sbin/mailwrapper/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 10:34:39 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DF19514DE2; Wed, 29 Dec 1999 10:34:34 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA69607; Wed, 29 Dec 1999 10:34:34 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912291834.KAA69607@freefall.freebsd.org> From: Peter Wemm Date: Wed, 29 Dec 1999 10:34:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/mtree BSD.usr.dist Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/29 10:34:34 PST Modified files: etc/mtree BSD.usr.dist Log: Add /usr/libexec/sendmail Revision Changes Path 1.177 +3 -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 Wed Dec 29 10:41: 0 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 627D9156EB; Wed, 29 Dec 1999 10:40:57 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA70279; Wed, 29 Dec 1999 10:40:57 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912291840.KAA70279@freefall.freebsd.org> From: Peter Wemm Date: Wed, 29 Dec 1999 10:40:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/sendmail Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/29 10:40:57 PST Modified files: usr.sbin/sendmail Makefile Log: Install sendmail in it's new location. Revision Changes Path 1.14 +3 -5 src/usr.sbin/sendmail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 10:44: 9 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D014A1504A; Wed, 29 Dec 1999 10:44:06 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA70702; Wed, 29 Dec 1999 10:44:06 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912291844.KAA70702@freefall.freebsd.org> From: Peter Wemm Date: Wed, 29 Dec 1999 10:44:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/29 10:44:06 PST Modified files: usr.sbin Makefile Log: Add mailwrapper. It redirects to sendmail by default, but you can point /usr/sbin/sendmail to any mailer of your choice with the /etc/mail/mailer.conf config file. Revision Changes Path 1.177 +2 -1 src/usr.sbin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 10:51:42 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 40A0C1517A; Wed, 29 Dec 1999 10:51:37 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA71540; Wed, 29 Dec 1999 10:51:37 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912291851.KAA71540@freefall.freebsd.org> From: Peter Wemm Date: Wed, 29 Dec 1999 10:51:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/mailwrapper Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/29 10:51:37 PST Modified files: usr.sbin/mailwrapper Makefile Log: Preempt one brucification - I was missing a ${DESTDIR}. I hate merging two sets of changes from different trees. Revision Changes Path 1.4 +2 -2 src/usr.sbin/mailwrapper/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 10:56:58 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A8CD156E0; Wed, 29 Dec 1999 10:56:56 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA71916; Wed, 29 Dec 1999 10:56:56 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912291856.KAA71916@freefall.freebsd.org> From: Peter Wemm Date: Wed, 29 Dec 1999 10:56:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/sendmail Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/29 10:56:56 PST Modified files: usr.sbin/sendmail Makefile Log: Since /etc/sendmail.cf got moved to /etc/mail/sendmail.cf, a 'make world' would leave you with a broken sendmail and local mail loss. This evil hack moves sendmail.cf from the old location to the new one (if required) at install time. Revision Changes Path 1.15 +9 -1 src/usr.sbin/sendmail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 11:37:56 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E66BE151D1; Wed, 29 Dec 1999 11:37:51 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA75298; Wed, 29 Dec 1999 11:37:51 -0800 (PST) (envelope-from obrien@FreeBSD.org) Message-Id: <199912291937.LAA75298@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 29 Dec 1999 11:37:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/ln Makefile ln.1 ln.c symlink.7 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1999/12/29 11:37:51 PST Modified files: (Branch: RELENG_3) bin/ln Makefile ln.1 ln.c symlink.7 Log: MFC: 1. verbose processing 2. link(1) SUSv2. Revision Changes Path 1.5.2.2 +3 -0 src/bin/ln/Makefile 1.6.2.3 +27 -3 src/bin/ln/ln.1 1.12.2.2 +31 -5 src/bin/ln/ln.c 1.8.2.3 +0 -0 src/bin/ln/symlink.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 11:39:49 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 37EEE156F1; Wed, 29 Dec 1999 11:39:47 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA75515; Wed, 29 Dec 1999 11:39:47 -0800 (PST) (envelope-from obrien@FreeBSD.org) Message-Id: <199912291939.LAA75515@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 29 Dec 1999 11:39:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/rm Makefile rm.1 rm.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1999/12/29 11:39:47 PST Modified files: (Branch: RELENG_3) bin/rm Makefile rm.1 rm.c Log: MFC: unlink(1) SUSv2 compliance. Revision Changes Path 1.5.2.2 +3 -0 src/bin/rm/Makefile 1.12.2.4 +20 -2 src/bin/rm/rm.1 1.18.2.5 +22 -2 src/bin/rm/rm.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 11:41:10 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DF1D91500C; Wed, 29 Dec 1999 11:41:07 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA75646; Wed, 29 Dec 1999 11:41:07 -0800 (PST) (envelope-from obrien@FreeBSD.org) Message-Id: <199912291941.LAA75646@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 29 Dec 1999 11:41:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/chmod Makefile chmod.1 chmod.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1999/12/29 11:41:07 PST Modified files: (Branch: RELENG_3) bin/chmod Makefile chmod.1 chmod.c Log: MFC: verbose processing. Revision Changes Path 1.4.2.2 +0 -0 src/bin/chmod/Makefile 1.10.2.6 +9 -0 src/bin/chmod/chmod.1 1.12.2.3 +10 -3 src/bin/chmod/chmod.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 11:55:14 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A402A150E8; Wed, 29 Dec 1999 11:55:11 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA76868; Wed, 29 Dec 1999 11:55:11 -0800 (PST) (envelope-from obrien@FreeBSD.org) Message-Id: <199912291955.LAA76868@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 29 Dec 1999 11:55:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/chown chgrp.1 chown.8 chown.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1999/12/29 11:55:11 PST Modified files: (Branch: RELENG_3) usr.sbin/chown chgrp.1 chown.8 chown.c Log: MFC: verbose processing Revision Changes Path 1.4.2.1 +15 -5 src/usr.sbin/chown/chgrp.1 1.6.2.2 +11 -1 src/usr.sbin/chown/chown.8 1.12.2.2 +10 -4 src/usr.sbin/chown/chown.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 12:40:39 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2AD22150BE; Wed, 29 Dec 1999 12:40:37 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA81118; Wed, 29 Dec 1999 12:40:37 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912292040.MAA81118@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Wed, 29 Dec 1999 12:40:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/gperf Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/29 12:40:36 PST Modified files: devel/gperf Makefile Log: Make the port install it's manpage PR: 15769 Submitted by: Maintainer Revision Changes Path 1.2 +2 -2 ports/devel/gperf/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 13:17:17 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C262F154C4; Wed, 29 Dec 1999 13:17:15 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA84599; Wed, 29 Dec 1999 13:17:15 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912292117.NAA84599@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 13:17:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/wmthemeinstall Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 13:17:15 PST Modified files: x11-wm/wmthemeinstall Makefile Log: Fix MASTER_SITES and use Perl to simulate sed(1). PR: 15771 Submitted by: maintainer Revision Changes Path 1.2 +4 -5 ports/x11-wm/wmthemeinstall/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 13:22:12 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CAEEB14E93; Wed, 29 Dec 1999 13:22:10 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA85324; Wed, 29 Dec 1999 13:22:10 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912292122.NAA85324@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 13:22:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/ftplocate Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 13:22:10 PST Modified files: ftp/ftplocate Makefile Log: Be sure to create ${PREFIX}/www/data before we try to copy files into it. PR: 15756 Submitted by: AnarCat Revision Changes Path 1.2 +3 -2 ports/ftp/ftplocate/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 13:23:34 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 469E615102; Wed, 29 Dec 1999 13:23:32 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA85636; Wed, 29 Dec 1999 13:23:32 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912292123.NAA85636@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 13:23:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/tracker Makefile ports/audio/tracker/patches patch-aa patch-ab ports/audio/tracker/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 13:23:32 PST Modified files: audio/tracker Makefile audio/tracker/patches patch-aa patch-ab audio/tracker/pkg PLIST Log: * Removed dependancy to gmake * Supported CFLAGS/INSTALL_MACROS/install-info PR: 15752 Submitted by: KATO Tsuguru Revision Changes Path 1.36 +22 -25 ports/audio/tracker/Makefile 1.23 +105 -16 ports/audio/tracker/patches/patch-aa 1.2 +15 -3 ports/audio/tracker/patches/patch-ab 1.11 +86 -86 ports/audio/tracker/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 Dec 29 13:32:20 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F10914CD3; Wed, 29 Dec 1999 13:32:17 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA86462; Wed, 29 Dec 1999 13:32:17 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912292132.NAA86462@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 13:32:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/cad/cider Makefile ports/cad/cider/files FreeBSD Makefile.cider Makefile.spice Makefile ports/cad/cider/patches patch-aj patch-ak patch-al patch-am patch-an patch-ao patch-ap patch-aq patch-ar patch-as patch-at patch-bj patch-bk patch-bl ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 13:32:17 PST Modified files: cad/cider Makefile cad/cider/files FreeBSD Makefile.cider Makefile.spice cad/cider/patches patch-aa patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-ba patch-bb patch-bc patch-bd patch-be patch-bf patch-bg Added files: cad/cider/patches patch-aj patch-ak patch-al patch-am patch-an patch-ao patch-ap patch-aq patch-ar patch-as patch-at patch-bj patch-bk patch-bl Removed files: cad/cider/files Makefile cad/cider/scripts configure Log: * Do not set NO_WRKSUBDIR to yes. Specify WRKSRC. * Respect CFLAGS. * Make less use of __FreeBSD__. * Use more system-defined make variables. PR: 15746 Submitted by: maintainer Revision Changes Path 1.2 +25 -9 ports/cad/cider/Makefile 1.2 +3 -3 ports/cad/cider/files/FreeBSD 1.2 +4 -2 ports/cad/cider/files/Makefile.cider 1.2 +8 -6 ports/cad/cider/files/Makefile.spice 1.2 +4 -4 ports/cad/cider/patches/patch-aa 1.2 +2 -83 ports/cad/cider/patches/patch-ab 1.2 +4 -4 ports/cad/cider/patches/patch-ac 1.2 +2 -2 ports/cad/cider/patches/patch-ad 1.2 +2 -2 ports/cad/cider/patches/patch-ae 1.2 +2 -2 ports/cad/cider/patches/patch-af 1.2 +2 -2 ports/cad/cider/patches/patch-ag 1.2 +2 -2 ports/cad/cider/patches/patch-ah 1.2 +2 -2 ports/cad/cider/patches/patch-ai 1.2 +2 -2 ports/cad/cider/patches/patch-ba 1.2 +2 -2 ports/cad/cider/patches/patch-bb 1.2 +2 -2 ports/cad/cider/patches/patch-bc 1.2 +2 -2 ports/cad/cider/patches/patch-bd 1.2 +2 -2 ports/cad/cider/patches/patch-be 1.2 +2 -2 ports/cad/cider/patches/patch-bf 1.2 +2 -2 ports/cad/cider/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 Wed Dec 29 13:34:14 1999 Delivered-To: cvs-all@freebsd.org Received: from awfulhak.org (dynamic-105.max4-du-ws.dialnetwork.pavilion.co.uk [212.74.9.233]) by hub.freebsd.org (Postfix) with ESMTP id B107B156EB; Wed, 29 Dec 1999 13:34:03 -0800 (PST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [172.16.0.12]) by awfulhak.org (8.9.3/8.9.3) with ESMTP id VAA40892; Wed, 29 Dec 1999 21:20:01 GMT (envelope-from brian@lan.awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by hak.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id VAA89734; Wed, 29 Dec 1999 21:22:35 GMT (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <199912292122.VAA89734@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.0 09/18/1999 To: Tim Vanderhoek Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@hak.lan.Awfulhak.org Subject: Re: cvs commit: src/lib/libc/string strrchr.3 strtok.3 In-Reply-To: Message from Tim Vanderhoek of "Tue, 28 Dec 1999 06:47:01 PST." <199912281447.GAA92533@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 29 Dec 1999 21:22:35 +0000 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > hoek 1999/12/28 06:47:01 PST > > Modified files: > lib/libc/string strrchr.3 strtok.3 > Log: > Avoid the potentially confusing term "a null pointer" and say "the NULL > pointer" instead. The potential confusion arises because the string/*.3 > pages use the term "null-terminated string" (which is permissable). Moreover, > this also makes these two manpages more consistent with the other string/*.3 > manpages. I think the real problem is s/null-terminated/nul-terminated/ > Revision Changes Path > 1.4 +2 -2 src/lib/libc/string/strrchr.3 > 1.9 +3 -3 src/lib/libc/string/strtok.3 -- 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 Wed Dec 29 13:34:26 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9425915720; Wed, 29 Dec 1999 13:34:16 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA86669; Wed, 29 Dec 1999 13:34:16 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912292134.NAA86669@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 13:34:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/jdk-tutorial/files md5 ports/java/jdk-tutorial/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 13:34:16 PST Modified files: java/jdk-tutorial/files md5 java/jdk-tutorial/pkg PLIST Log: Distfile changed on MASTER_SITE fixup checksum and PLIST accordingly. PR: 15740 Submitted by: maintainer Revision Changes Path 1.5 +1 -1 ports/java/jdk-tutorial/files/md5 1.5 +1919 -1800ports/java/jdk-tutorial/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 Dec 29 13:35:52 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 39AB2156C5; Wed, 29 Dec 1999 13:35:50 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA86947; Wed, 29 Dec 1999 13:35:50 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912292135.NAA86947@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 13:35:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/libslang Makefile ports/devel/libslang/files md5 ports/devel/libslang/patches patch-aa patch-ad Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 13:35:50 PST Modified files: devel/libslang Makefile devel/libslang/files md5 devel/libslang/patches patch-aa patch-ad Log: Update to version 1.3.10. PR: 15735 Submitted by: maintainer Revision Changes Path 1.17 +8 -7 ports/devel/libslang/Makefile 1.6 +1 -1 ports/devel/libslang/files/md5 1.8 +47 -11 ports/devel/libslang/patches/patch-aa 1.3 +0 -49 ports/devel/libslang/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 Dec 29 13:37: 7 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CDC40156D5; Wed, 29 Dec 1999 13:37:04 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA87191; Wed, 29 Dec 1999 13:37:04 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912292137.NAA87191@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 13:37:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/slrn Makefile ports/news/slrn/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 13:37:04 PST Modified files: news/slrn Makefile news/slrn/files md5 Log: Update to version 0.9.6.2. PR: 15736 Submitted by: maintainer Revision Changes Path 1.18 +4 -4 ports/news/slrn/Makefile 1.12 +1 -1 ports/news/slrn/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 13:39:14 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D3E6157A6; Wed, 29 Dec 1999 13:39:12 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA87478; Wed, 29 Dec 1999 13:39:12 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912292139.NAA87478@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 13:39:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/p5-Apache Makefile ports/www/p5-Apache/files md5 post-install-notes ports/www/p5-Apache/patches patch-aa ports/www/p5-Apache/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 13:39:12 PST Modified files: www/p5-Apache Makefile www/p5-Apache/files md5 post-install-notes www/p5-Apache/patches patch-aa www/p5-Apache/pkg PLIST Log: Update to version 1.21. PR: 13705 Submitted by: Garrett Wollman Revision Changes Path 1.17 +19 -17 ports/www/p5-Apache/Makefile 1.5 +1 -1 ports/www/p5-Apache/files/md5 1.2 +10 -18 ports/www/p5-Apache/files/post-install-notes 1.6 +17 -45 ports/www/p5-Apache/patches/patch-aa 1.6 +1 -93 ports/www/p5-Apache/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 Dec 29 13:41:14 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 46E7A1591A; Wed, 29 Dec 1999 13:41:12 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA87787; Wed, 29 Dec 1999 13:41:12 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912292141.NAA87787@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 13:41:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/checkbot Makefile ports/www/checkbot/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 13:41:12 PST Modified files: www/checkbot Makefile www/checkbot/files md5 Log: Update to version 1.57. PR: 12916 Submitted by: Brian Ruth Revision Changes Path 1.14 +5 -3 ports/www/checkbot/Makefile 1.3 +1 -1 ports/www/checkbot/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 14:22:37 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C5FC314BD2; Wed, 29 Dec 1999 14:22:34 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA91387; Wed, 29 Dec 1999 14:22:34 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912292222.OAA91387@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 14:22:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/sed sed.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 14:22:33 PST Modified files: usr.bin/sed sed.1 Log: Escape the ':' so that is actually makes it into the double quotes. PR: 15775 Submitted by: Martin Kammerhofer Revision Changes Path 1.8 +2 -2 src/usr.bin/sed/sed.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 14:24:27 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E43621515A; Wed, 29 Dec 1999 14:24:23 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA91505; Wed, 29 Dec 1999 14:24:23 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912292224.OAA91505@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 14:24:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/sed sed.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 14:24:23 PST Modified files: (Branch: RELENG_3) usr.bin/sed sed.1 Log: MFC: escape the ':' character and add $FreeBSD$ tag Revision Changes Path 1.5.2.1 +2 -1 src/usr.bin/sed/sed.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 14:31:17 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5D38515740; Wed, 29 Dec 1999 14:31:12 -0800 (PST) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA92251; Wed, 29 Dec 1999 14:31:12 -0800 (PST) (envelope-from brian@FreeBSD.org) Message-Id: <199912292231.OAA92251@freefall.freebsd.org> From: Brian Somers Date: Wed, 29 Dec 1999 14:31:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp README.changes ppp.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1999/12/29 14:31:11 PST Modified files: usr.sbin/ppp README.changes ppp.8 Log: Mention that it's only necessary to escape the '-' in chat scripts twice (once for the arg parsing and once to make it a normal character). Make the man page example consistent. Reminded by: Bryan Liesner Revision Changes Path 1.16 +3 -1 src/usr.sbin/ppp/README.changes 1.205 +2 -2 src/usr.sbin/ppp/ppp.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 14:32:15 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 70A13151E9; Wed, 29 Dec 1999 14:32:12 -0800 (PST) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA92397; Wed, 29 Dec 1999 14:32:12 -0800 (PST) (envelope-from brian@FreeBSD.org) Message-Id: <199912292232.OAA92397@freefall.freebsd.org> From: Brian Somers Date: Wed, 29 Dec 1999 14:32:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/examples/ppp ppp.conf.sample Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1999/12/29 14:32:12 PST Modified files: share/examples/ppp ppp.conf.sample Log: The '-' character in chat scripts should only be escaped twice (since the parsing routines were fixed). Revision Changes Path 1.14 +2 -2 src/share/examples/ppp/ppp.conf.sample To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 14:52:59 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AC46F1505C; Wed, 29 Dec 1999 14:52:56 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA94810; Wed, 29 Dec 1999 14:52:56 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912292252.OAA94810@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 14:52:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/aspell Makefile ports/textproc/aspell/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 14:52:56 PST Modified files: textproc/aspell Makefile textproc/aspell/files md5 Log: Update to version 0.28.3. PR: 15504 Submitted by: maintainer Revision Changes Path 1.11 +5 -11 ports/textproc/aspell/Makefile 1.6 +1 -1 ports/textproc/aspell/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 14:55: 4 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 95CAE1572C; Wed, 29 Dec 1999 14:55:02 -0800 (PST) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA95032; Wed, 29 Dec 1999 14:55:02 -0800 (PST) (envelope-from mjacob@FreeBSD.org) Message-Id: <199912292255.OAA95032@freefall.freebsd.org> From: Matt Jacob Date: Wed, 29 Dec 1999 14:55:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/cam/scsi scsi_target.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mjacob 1999/12/29 14:55:02 PST Modified files: sys/cam/scsi scsi_target.c Log: Restore this driver to a working state. The control device has to be created at init time. The unit devices are created at ctor when new instances are created and bound and destroyed when that instance is closed. As such, there is just s single static control dev_t for this driver (the per-unit dev_t's are still in the softc). When we have decommissionable periph drivers, a destroy_device on the control device will have to called. Revision Changes Path 1.20 +7 -8 src/sys/cam/scsi/scsi_target.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 15: 6: 0 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BAF7215208; Wed, 29 Dec 1999 15:05:58 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA96102; Wed, 29 Dec 1999 15:05:58 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912292305.PAA96102@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Wed, 29 Dec 1999 15:05:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/pngcrush Makefile ports/graphics/pngcrush/files md5 ports/graphics/pngcrush/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/29 15:05:58 PST Modified files: graphics/pngcrush Makefile graphics/pngcrush/files md5 graphics/pngcrush/pkg DESCR Log: Update port to 1.3.2 * Fix typos introduced in 1.3.1 Revision Changes Path 1.3 +3 -3 ports/graphics/pngcrush/Makefile 1.3 +1 -1 ports/graphics/pngcrush/files/md5 1.2 +3 -1 ports/graphics/pngcrush/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 15:14:15 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C40C15028; Wed, 29 Dec 1999 15:13:59 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA96981; Wed, 29 Dec 1999 15:13:59 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912292313.PAA96981@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 15:13:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/send-pr send-pr.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 15:13:58 PST Modified files: gnu/usr.bin/send-pr send-pr.1 Log: Provide some verbage for FreeBSD's list of categories. PR: 2897 Submitted by: Stephen J. Roznowski Revision Changes Path 1.9 +36 -1 src/gnu/usr.bin/send-pr/send-pr.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 15:16:13 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1136C14F2C; Wed, 29 Dec 1999 15:16:11 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA97409; Wed, 29 Dec 1999 15:16:10 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912292316.PAA97409@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 15:16:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/send-pr send-pr.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 15:16:10 PST Modified files: (Branch: RELENG_3) gnu/usr.bin/send-pr send-pr.1 Log: MFC: describes FreeBSD's GNATS categories. Revision Changes Path 1.7.2.1 +38 -0 src/gnu/usr.bin/send-pr/send-pr.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 15:45: 2 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3A83B1572A; Wed, 29 Dec 1999 15:45:00 -0800 (PST) (envelope-from msmith@FreeBSD.org) Received: (from msmith@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA01572; Wed, 29 Dec 1999 15:45:00 -0800 (PST) (envelope-from msmith@FreeBSD.org) Message-Id: <199912292345.PAA01572@freefall.freebsd.org> From: Mike Smith Date: Wed, 29 Dec 1999 15:44:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/XFree86/patches patch-4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1999/12/29 15:44:59 PST Modified files: x11/XFree86/patches patch-4 Log: Make this build/install on the alpha; the PCI ioctls are defined in sys/pciio.h, not sys/pci_ioctl.h. Revision Changes Path 1.3 +1 -1 ports/x11/XFree86/patches/patch-4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 16: 8: 1 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AE8CD15137; Wed, 29 Dec 1999 16:07:59 -0800 (PST) (envelope-from nsayer@FreeBSD.org) Received: (from nsayer@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA03732; Wed, 29 Dec 1999 16:07:59 -0800 (PST) (envelope-from nsayer@FreeBSD.org) Message-Id: <199912300007.QAA03732@freefall.freebsd.org> From: Nick Sayer Date: Wed, 29 Dec 1999 16:07:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/pine4-ssl Makefile ports/mail/pine4-ssl/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nsayer 1999/12/29 16:07:59 PST Modified files: mail/pine4-ssl Makefile mail/pine4-ssl/files md5 Log: Update to pine 4.21 Revision Changes Path 1.10 +5 -5 ports/mail/pine4-ssl/Makefile 1.6 +1 -1 ports/mail/pine4-ssl/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 17: 7: 6 1999 Delivered-To: cvs-all@freebsd.org Received: from m0.cs.berkeley.edu (m0.CS.Berkeley.EDU [128.32.45.176]) by hub.freebsd.org (Postfix) with ESMTP id AF93D150C3; Wed, 29 Dec 1999 17:07:02 -0800 (PST) (envelope-from asami@stampede.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca41-199.ix.netcom.com [209.111.208.199]) by m0.cs.berkeley.edu (8.9.3/8.9.3) with ESMTP id RAA54405; Wed, 29 Dec 1999 17:07:01 -0800 (PST) (envelope-from asami@stampede.cs.berkeley.edu) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id RAA64482; Wed, 29 Dec 1999 17:06:56 -0800 (PST) To: Steve Price Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/misc Makefile ports/misc/hello Makefile ports/misc/hello/files md5 ports/misc/hello/pkg COMMENT DESCR PLIST References: <199912290936.BAA57167@freefall.freebsd.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 29 Dec 1999 17:06:53 -0800 In-Reply-To: Steve Price's message of "Wed, 29 Dec 1999 01:36:17 -0800 (PST)" Message-ID: Lines: 11 X-Mailer: Gnus v5.7/Emacs 20.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * A utility for saying hello to the world and read email. Hmm. I tried it, the --mail option doesn't work. (Or it takes extremely long, I waited a few minutes but nothing seemed to happen.) If it does work, do you think this should go to "mail" instead? By the way, it is missing install-info in the Makefile, and the install-info lines in PLIST don't work because there is no dir entry in hello.info. This port also ignores CFLAGS. -PW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 17:10:18 1999 Delivered-To: cvs-all@freebsd.org Received: from m0.cs.berkeley.edu (m0.CS.Berkeley.EDU [128.32.45.176]) by hub.freebsd.org (Postfix) with ESMTP id 2EAF2156B1; Wed, 29 Dec 1999 17:10:13 -0800 (PST) (envelope-from asami@stampede.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca41-199.ix.netcom.com [209.111.208.199]) by m0.cs.berkeley.edu (8.9.3/8.9.3) with ESMTP id RAA54508; Wed, 29 Dec 1999 17:09:43 -0800 (PST) (envelope-from asami@stampede.cs.berkeley.edu) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id RAA64510; Wed, 29 Dec 1999 17:08:17 -0800 (PST) To: Thomas Gellekum Cc: Sheldon Hearn , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/shells/pdksh Makefile References: <15989.946465280@axl.noc.iafrica.com> From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Date: 29 Dec 1999 17:08:00 -0800 In-Reply-To: Thomas Gellekum's message of "29 Dec 1999 12:13:43 +0100" Message-ID: Lines: 15 X-Mailer: Gnus v5.7/Emacs 20.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * From: Thomas Gellekum * > Um, wouldn't this be better done as a pkg/INSTALL script so that it * > works for the package as well? * * Doesn't the @exec in pkg/PLIST work for you? I think either way is fine, but one added benefit with using pkg/INSTALL is that you can call that from post-install and thus don't have to write the same command twice. Of course, for something as simple as this, it doesn't really matter.... Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 17:36:43 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1516B15763; Wed, 29 Dec 1999 17:36:41 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA10458; Wed, 29 Dec 1999 17:36:40 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Message-Id: <199912300136.RAA10458@freefall.freebsd.org> From: Joseph Koshy Date: Wed, 29 Dec 1999 17:36:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/sml-mode.el Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1999/12/29 17:36:40 PST Modified files: lang/sml-mode.el Makefile Log: Change CATEGORIES to 'lang elisp' to match current location. Revision Changes Path 1.2 +2 -2 ports/lang/sml-mode.el/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 18:32:17 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 478AA14F15; Wed, 29 Dec 1999 18:32:14 -0800 (PST) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA13888; Wed, 29 Dec 1999 18:32:14 -0800 (PST) (envelope-from mjacob@FreeBSD.org) Message-Id: <199912300232.SAA13888@freefall.freebsd.org> From: Matt Jacob Date: Wed, 29 Dec 1999 18:32:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/cam/scsi scsi_target.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mjacob 1999/12/29 18:32:14 PST Modified files: sys/cam/scsi scsi_target.c Log: Change error message make sense and add a missing periph_release on a failed open so that the periph dtor for it will get called when we deallocate the instance from targioctl. Revision Changes Path 1.21 +5 -2 src/sys/cam/scsi/scsi_target.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 19:28:36 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D0F0114D9A; Wed, 29 Dec 1999 19:28:34 -0800 (PST) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA17321; Wed, 29 Dec 1999 19:28:34 -0800 (PST) (envelope-from brian@FreeBSD.org) Message-Id: <199912300328.TAA17321@freefall.freebsd.org> From: Brian Somers Date: Wed, 29 Dec 1999 19:28:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/leafnode Makefile ports/news/leafnode/files md5 ports/news/leafnode/patches patch-aa patch-ab patch-ac patch-ad patch-ae patch-af ports/news/leafnode/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1999/12/29 19:28:34 PST Modified files: news/leafnode Makefile news/leafnode/files md5 news/leafnode/pkg PLIST Removed files: news/leafnode/patches patch-aa patch-ab patch-ac patch-ad patch-ae patch-af Log: Upgrade to version 1.9.7 Submitted by: "Ron 'The InSaNe One' Rosson" Revision Changes Path 1.10 +4 -6 ports/news/leafnode/Makefile 1.5 +1 -1 ports/news/leafnode/files/md5 1.5 +1 -2 ports/news/leafnode/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 Dec 29 19:36:15 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2EA4F14C86; Wed, 29 Dec 1999 19:36:13 -0800 (PST) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA17923; Wed, 29 Dec 1999 19:36:13 -0800 (PST) (envelope-from brian@FreeBSD.org) Message-Id: <199912300336.TAA17923@freefall.freebsd.org> From: Brian Somers Date: Wed, 29 Dec 1999 19:36:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp bundle.c chap.c chat.c command.c exec.c systems.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1999/12/29 19:36:12 PST Modified files: usr.sbin/ppp bundle.c chap.c chat.c command.c exec.c systems.c Log: Correct usages of getuid() and geteuid() Pointed out by: billf Revision Changes Path 1.82 +2 -2 src/usr.sbin/ppp/bundle.c 1.60 +2 -2 src/usr.sbin/ppp/chap.c 1.69 +2 -2 src/usr.sbin/ppp/chat.c 1.230 +2 -2 src/usr.sbin/ppp/command.c 1.17 +2 -2 src/usr.sbin/ppp/exec.c 1.58 +3 -3 src/usr.sbin/ppp/systems.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 19:40:33 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D9B4715131; Wed, 29 Dec 1999 19:40:31 -0800 (PST) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA18934; Wed, 29 Dec 1999 19:40:31 -0800 (PST) (envelope-from brian@FreeBSD.org) Message-Id: <199912300340.TAA18934@freefall.freebsd.org> From: Brian Somers Date: Wed, 29 Dec 1999 19:40:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp chap.c chat.c exec.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1999/12/29 19:40:31 PST Modified files: usr.sbin/ppp chap.c chat.c exec.c Log: Add a few missing #includes Revision Changes Path 1.61 +2 -1 src/usr.sbin/ppp/chap.c 1.70 +2 -1 src/usr.sbin/ppp/chat.c 1.18 +2 -1 src/usr.sbin/ppp/exec.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 19:58:26 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 00D7315096; Wed, 29 Dec 1999 19:58:25 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA21744; Wed, 29 Dec 1999 19:58:24 -0800 (PST) (envelope-from billf@FreeBSD.org) Message-Id: <199912300358.TAA21744@freefall.freebsd.org> From: Bill Fumerola Date: Wed, 29 Dec 1999 19:58:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1999/12/29 19:58:24 PST Modified files: . modules Log: add the ifmcstat module Submitted by: Paul Saab (indirectly) Revision Changes Path 1.724 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 20: 4:17 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E767415459; Wed, 29 Dec 1999 20:04:12 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA22232; Wed, 29 Dec 1999 20:04:12 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912300404.UAA22232@freefall.freebsd.org> From: Steve Price Date: Wed, 29 Dec 1999 20:04:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/hello Makefile ports/misc/hello/patches patch-aa ports/misc/hello/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/29 20:04:12 PST Modified files: misc/hello Makefile misc/hello/pkg PLIST Added files: misc/hello/patches patch-aa Log: Honor CFLAGS and get the install-info incantation correct in both the package and the Makefile. Noticed by: asami Revision Changes Path 1.2 +6 -1 ports/misc/hello/Makefile 1.2 +1 -1 ports/misc/hello/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 Dec 29 20: 4:46 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7F2FC14D9A; Wed, 29 Dec 1999 20:04:44 -0800 (PST) (envelope-from cg@FreeBSD.org) Received: (from cg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA22314; Wed, 29 Dec 1999 20:04:44 -0800 (PST) (envelope-from cg@FreeBSD.org) Message-Id: <199912300404.UAA22314@freefall.freebsd.org> From: Cameron Grant Date: Wed, 29 Dec 1999 20:04:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/isa sb.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk cg 1999/12/29 20:04:44 PST Modified files: sys/dev/sound/isa sb.c Log: make ess cards use a 64k buffer again, by implementing esschan_init() Revision Changes Path 1.46 +14 -7 src/sys/dev/sound/isa/sb.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 20:12:41 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0633215764; Wed, 29 Dec 1999 20:12:39 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA22948; Wed, 29 Dec 1999 20:12:38 -0800 (PST) (envelope-from billf@FreeBSD.org) Message-Id: <199912300412.UAA22948@freefall.freebsd.org> From: Bill Fumerola Date: Wed, 29 Dec 1999 20:12:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ifmcstat ifmcstat.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1999/12/29 20:12:38 PST Modified files: usr.sbin/ifmcstat ifmcstat.c Log: Fix KERNEL vs _KERNEL spammage. Submitted by: Paul Saab Revision Changes Path 1.2 +3 -3 src/usr.sbin/ifmcstat/ifmcstat.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 20:34:51 1999 Delivered-To: cvs-all@freebsd.org Received: from cannon.ecf.utoronto.ca (cannon.ecf.utoronto.ca [128.100.8.5]) by hub.freebsd.org (Postfix) with ESMTP id 6371A14C27; Wed, 29 Dec 1999 20:34:48 -0800 (PST) (envelope-from vanderh@ecf.utoronto.ca) Received: from skule.ecf (vanderh@skule.ecf [128.100.8.6]) by cannon.ecf.utoronto.ca (8.9.3/8.9.3) with ESMTP id XAA20004; Wed, 29 Dec 1999 23:34:38 -0500 Received: (from vanderh@localhost) by skule.ecf (8.9.3/8.9.3) id XAA18135870; Wed, 29 Dec 1999 23:34:37 -0500 (EST) Date: Wed, 29 Dec 1999 23:34:37 -0500 From: Tim Vanderhoek To: Brian Somers Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@hak.lan.Awfulhak.org Subject: Re: cvs commit: src/lib/libc/string strrchr.3 strtok.3 Message-ID: <19991229233437.A19061099@skule.ecf.utoronto.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <199912292122.VAA89734@hak.lan.Awfulhak.org>; from Brian Somers on Wed, Dec 29, 1999 at 09:22:35PM +0000 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Wed, Dec 29, 1999 at 09:22:35PM +0000, Brian Somers wrote: > > > pointer" instead. The potential confusion arises because the string/*.3 > > pages use the term "null-terminated string" (which is permissable). > > I think the real problem is > > s/null-terminated/nul-terminated/ Perhaps. Bruce seemed to suggest that the problem is inherent in the C standard but advocated the same thing that you are suggesting (if I understand him correctly). I'm a little more leery than either of you. Of the two terms, "NUL-terminated" and "null-terminated", only the latter allows consistent terminology when discussing wide character strings. Anyways, the term "the NULL pointer" was invented during a fit of ego on my part and I'm going to back that out. I may also fix functions that claim to return "a NULL pointer" at the same time. Bruce suggested that "returning NULL" is also broken. I'm not sure I agree. Certainly a function can "return NULL;". There is a consistency issue, however. -- Signature withheld by request of author. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 20:46:42 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C0C9514D85; Wed, 29 Dec 1999 20:46:39 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA25636; Wed, 29 Dec 1999 20:46:39 -0800 (PST) (envelope-from obrien@FreeBSD.org) Message-Id: <199912300446.UAA25636@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 29 Dec 1999 20:46:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/gasp Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1999/12/29 20:46:39 PST Modified files: gnu/usr.bin/binutils/gasp Makefile Log: Add a manpage for gasp. Revision Changes Path 1.5 +1 -2 src/gnu/usr.bin/binutils/gasp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 20:48:20 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C5A714ED2; Wed, 29 Dec 1999 20:48:18 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA25772; Wed, 29 Dec 1999 20:48:18 -0800 (PST) (envelope-from obrien@FreeBSD.org) Message-Id: <199912300448.UAA25772@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 29 Dec 1999 20:48:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/gasp gasp.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1999/12/29 20:48:18 PST Added files: gnu/usr.bin/binutils/gasp gasp.1 Log: Honestly, really, really add a manpage for gasp. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 21:12:38 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ED84014CA2; Wed, 29 Dec 1999 21:12:36 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA27246; Wed, 29 Dec 1999 21:12:36 -0800 (PST) (envelope-from obrien@FreeBSD.org) Message-Id: <199912300512.VAA27246@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 29 Dec 1999 21:12:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1999/12/29 21:12:35 PST Modified files: . access Log: Add Gerard Roudier who will be maintaining his `sym' SCSI driver. Justin Gibbs did the preliminary work of suggesting Gerard come on-board, and Mark M. setup his Freefall account. I'm not sure how he got missed here. Revision Changes Path 1.128 +2 -1 CVSROOT/access To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 21:27: 5 1999 Delivered-To: cvs-all@freebsd.org Received: from mta3.rcsntx.swbell.net (mta3.rcsntx.swbell.net [151.164.30.27]) by hub.freebsd.org (Postfix) with ESMTP id EA03514F7A; Wed, 29 Dec 1999 21:27:02 -0800 (PST) (envelope-from chris@holly.dyndns.org) Received: from holly.dyndns.org ([216.62.157.60]) by mta3.rcsntx.swbell.net (Sun Internet Mail Server sims.3.5.1999.09.16.21.57.p8) with ESMTP id <0FNJ006OMGGYRJ@mta3.rcsntx.swbell.net>; Wed, 29 Dec 1999 23:26:59 -0600 (CST) Received: (from chris@localhost) by holly.dyndns.org (8.9.3/8.9.3) id XAA13597; Wed, 29 Dec 1999 23:29:57 -0600 (CST envelope-from chris) X-URL: http://www.FreeBSD.org/~chris/ Date: Wed, 29 Dec 1999 23:29:56 -0600 From: Chris Costello Subject: Re: cvs commit: CVSROOT access In-reply-to: <199912300512.VAA27246@freefall.freebsd.org> To: "David E. O'Brien" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Reply-To: chris@calldei.com Message-id: <19991229232956.P699@holly.calldei.com> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.4i References: <199912300512.VAA27246@freefall.freebsd.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Wed, Dec 29, 1999, David E. O'Brien wrote: > Add Gerard Roudier who will be maintaining his `sym' SCSI driver. > Justin Gibbs did the preliminary work of suggesting Gerard come on-board, > and Mark M. setup his Freefall account. I'm not sure how he got missed here. Let's just blame it on CVS and get it over with. Welcome aboard. -- |Chris Costello |Stack Overflow: Too many pancakes... `------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 22:19:14 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 12919150C5; Wed, 29 Dec 1999 22:19:13 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA32343; Wed, 29 Dec 1999 22:19:12 -0800 (PST) (envelope-from obrien@FreeBSD.org) Message-Id: <199912300619.WAA32343@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 29 Dec 1999 22:19:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sym sym_conf.h sym_defs.h sym_hipd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1999/12/29 22:19:12 PST Modified files: sys/dev/sym sym_conf.h sym_defs.h sym_hipd.c Log: Go ahead and take these off the vendor branch as Gerard Roudier is now a committer and will be maintaining these in the usual manner. Add $FreeBSD$'s to get them off on the right foot. Revision Changes Path 1.2 +115 -33 src/sys/dev/sym/sym_conf.h 1.2 +4 -0 src/sys/dev/sym/sym_defs.h 1.2 +350 -266 src/sys/dev/sym/sym_hipd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 22:20:16 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D6A6715225; Wed, 29 Dec 1999 22:20:09 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA32445; Wed, 29 Dec 1999 22:20:09 -0800 (PST) (envelope-from obrien@FreeBSD.org) Message-Id: <199912300620.WAA32445@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 29 Dec 1999 22:20:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sym sym_conf.h sym_defs.h sym_hipd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1999/12/29 22:20:09 PST Added files: (Branch: RELENG_3) sys/dev/sym sym_conf.h sym_defs.h sym_hipd.c Log: MFC: add the `sym' SCSI controler driver. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 22:31: 2 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D3AD15150; Wed, 29 Dec 1999 22:31:01 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA33565; Wed, 29 Dec 1999 22:31:01 -0800 (PST) (envelope-from obrien@FreeBSD.org) Message-Id: <199912300631.WAA33565@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 29 Dec 1999 22:31:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf options Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1999/12/29 22:31:00 PST Modified files: (Branch: RELENG_3) sys/conf options Log: MFC: rev 1.180: `sym' driver options. Revision Changes Path 1.121.2.22 +7 -1 src/sys/conf/options To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 22:54:18 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2DE0014D9B; Wed, 29 Dec 1999 22:54:16 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA35193; Wed, 29 Dec 1999 22:54:16 -0800 (PST) (envelope-from obrien@FreeBSD.org) Message-Id: <199912300654.WAA35193@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 29 Dec 1999 22:54:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1999/12/29 22:54:15 PST Modified files: (Branch: RELENG_3) sys/conf files Log: MFC: rev 1.289: `sym' SCSI controler driver. Revision Changes Path 1.190.2.21 +3 -1 src/sys/conf/files To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Dec 29 23:13:26 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 76E6414C4E; Wed, 29 Dec 1999 23:13:24 -0800 (PST) (envelope-from grog@FreeBSD.org) Received: (from grog@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA36545; Wed, 29 Dec 1999 23:13:24 -0800 (PST) (envelope-from grog@FreeBSD.org) Message-Id: <199912300713.XAA36545@freefall.freebsd.org> From: Greg Lehey Date: Wed, 29 Dec 1999 23:13:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/vinum vinumkw.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk grog 1999/12/29 23:13:23 PST Modified files: sys/dev/vinum vinumkw.h Log: Don't forget the 'stripe' and 'mirror' keywords when we turn debugging off. Reported-by: ppyy Revision Changes Path 1.15 +2 -2 src/sys/dev/vinum/vinumkw.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 0:11:37 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B70E14CA2; Thu, 30 Dec 1999 00:11:35 -0800 (PST) (envelope-from dburr@FreeBSD.org) Received: (from dburr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA40602; Thu, 30 Dec 1999 00:11:34 -0800 (PST) (envelope-from dburr@FreeBSD.org) Message-Id: <199912300811.AAA40602@freefall.freebsd.org> From: Donald Burr Date: Thu, 30 Dec 1999 00:11:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/napster Makefile ports/audio/napster/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dburr 1999/12/30 00:11:34 PST Modified files: audio/napster Makefile audio/napster/files md5 Log: Upgraded to version 0.9BETA, the old version is no longer available. And the BSD version of the port is back, yay! :) Revision Changes Path 1.7 +9 -7 ports/audio/napster/Makefile 1.4 +1 -1 ports/audio/napster/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 Dec 30 0:33: 3 1999 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id 8098B151D8; Thu, 30 Dec 1999 00:33:01 -0800 (PST) Date: Thu, 30 Dec 1999 00:33:01 -0800 From: "Andrey A. Chernov" To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/sendmail freebsd.mc Message-ID: <19991230003301.A87087@freebsd.org> References: <19991229181919.698D81CA0@overcee.netplex.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <19991229181919.698D81CA0@overcee.netplex.com.au>; from peter@netplex.com.au on Thu, Dec 30, 1999 at 02:19:19AM +0800 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Thu, Dec 30, 1999 at 02:19:19AM +0800, Peter Wemm wrote: > Without -o: > > root@proxy[02:17am]~# sendmail peter@netplex.com.au > /etc/sendmail.cf: line 67: fileclass: cannot open /etc/mail/sendmail.cw: No such file or directory Something wrong with your cw file usage, I don't see this diagnostic. See cf/README confCW_FILE Fw class [/etc/sendmail.cw] Name of file used Here is corresponding generated lines (with my fix): Cwlocalhost # file containing names of hosts for which we receive email Fw/etc/mail/sendmail.cw By _default_ last line is Fw/etc/sendmail.cw As you see there is NO -o in any variant. -- Andrey A. Chernov http://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 Dec 30 1: 3:39 1999 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id 3147414FB1; Thu, 30 Dec 1999 01:03:37 -0800 (PST) Date: Thu, 30 Dec 1999 01:03:37 -0800 From: "Andrey A. Chernov" To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/sendmail freebsd.mc Message-ID: <19991230010336.A91927@freebsd.org> References: <199912291820.KAA67486@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <199912291820.KAA67486@freefall.freebsd.org>; from peter@FreeBSD.org on Wed, Dec 29, 1999 at 10:20:24AM -0800 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Wed, Dec 29, 1999 at 10:20:24AM -0800, Peter Wemm wrote: > peter 1999/12/29 10:20:24 PST > > Modified files: > etc/sendmail freebsd.mc > Log: > Revert previous commit, -o is functional here and is required. Looking in sendmail sources I understand that -o means 'optional' here, _but_ this file is NOT optional if you have FEATURE(use_cw_file) (as in my case) this file is required and when it is missing - it is error. I see that freebsd.mc not use 'use_cw_file' by default so better fix will be remove -o and comment out this line by dnl: dnl FEATURE(use_cw_file) dnl uncomment next line too dnl define(`confCW_FILE', `/etc/mail/sendmail.cw')dnl -- Andrey A. Chernov http://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 Dec 30 1: 6:24 1999 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id 651AC14DBF; Thu, 30 Dec 1999 01:06:22 -0800 (PST) Date: Thu, 30 Dec 1999 01:06:22 -0800 From: "Andrey A. Chernov" To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/sendmail freebsd.mc Message-ID: <19991230010622.B91927@freebsd.org> References: <19991229181919.698D81CA0@overcee.netplex.com.au> <19991230003301.A87087@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <19991230003301.A87087@freebsd.org>; from ache@freebsd.org on Thu, Dec 30, 1999 at 12:33:01AM -0800 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Thu, Dec 30, 1999 at 12:33:01AM -0800, Andrey A. Chernov wrote: > On Thu, Dec 30, 1999 at 02:19:19AM +0800, Peter Wemm wrote: > > Without -o: > > > > root@proxy[02:17am]~# sendmail peter@netplex.com.au > > /etc/sendmail.cf: line 67: fileclass: cannot open /etc/mail/sendmail.cw: No such file or directory > > Something wrong with your cw file usage, I don't see this diagnostic. > Please see not this but next message, there is better analysis given and suggested fix for your review. -- Andrey A. Chernov http://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 Dec 30 1: 7:10 1999 Delivered-To: cvs-all@freebsd.org Received: from overcee.netplex.com.au (overcee.netplex.com.au [202.12.86.7]) by hub.freebsd.org (Postfix) with ESMTP id D2A1A151E0; Thu, 30 Dec 1999 01:07:04 -0800 (PST) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id AC0ED1CC6; Thu, 30 Dec 1999 17:06:33 +0800 (WST) (envelope-from peter@netplex.com.au) X-Mailer: exmh version 2.1.1 10/15/1999 To: "Andrey A. Chernov" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/sendmail freebsd.mc In-Reply-To: Message from "Andrey A. Chernov" of "Thu, 30 Dec 1999 00:33:01 PST." <19991230003301.A87087@freebsd.org> Date: Thu, 30 Dec 1999 17:06:33 +0800 From: Peter Wemm Message-Id: <19991230090633.AC0ED1CC6@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Andrey A. Chernov" wrote: > On Thu, Dec 30, 1999 at 02:19:19AM +0800, Peter Wemm wrote: > > Without -o: > > > > root@proxy[02:17am]~# sendmail peter@netplex.com.au > > /etc/sendmail.cf: line 67: fileclass: cannot open /etc/mail/sendmail.cw: No such file or directory > > Something wrong with your cw file usage, I don't see this diagnostic. > > See cf/README > confCW_FILE Fw class [/etc/sendmail.cw] Name of file used > > Here is corresponding generated lines (with my fix): > > Cwlocalhost > # file containing names of hosts for which we receive email > Fw/etc/mail/sendmail.cw > > By _default_ last line is > Fw/etc/sendmail.cw > > As you see there is NO -o in any variant. Yes there is: pwroot@overcee[5:04pm]~src/etc/sendmail-174# grep sendmail.cw freebsd.mc define(`confCW_FILE', `-o /etc/mail/sendmail.cw')dnl pwroot@overcee[5:04pm]~src/etc/sendmail-175# make freebsd.cf rm -f freebsd.cf (cd /home/src/etc/sendmail && m4 -D_CF_DIR_=/home/src/etc/sendmail/../../contrib/sendmail/cf/ /home/src/etc/sendmail/../../contrib/sendmail/cf/m4/cf.m4 freebsd.mc) > freebsd.cf chmod 444 freebsd.cf pwroot@overcee[5:04pm]~src/etc/sendmail-176# grep sendmail.cw `obj`/freebsd.cf Fw-o /etc/mail/sendmail.cw .. which is as it is supposed to be. This file is optional and we don't create it by default. Sendmail does understand the -o in this context. Cheers, -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 1:12:59 1999 Delivered-To: cvs-all@freebsd.org Received: from overcee.netplex.com.au (overcee.netplex.com.au [202.12.86.7]) by hub.freebsd.org (Postfix) with ESMTP id 4DFA515179; Thu, 30 Dec 1999 01:12:54 -0800 (PST) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 5529E1CC6; Thu, 30 Dec 1999 17:12:47 +0800 (WST) (envelope-from peter@netplex.com.au) X-Mailer: exmh version 2.1.1 10/15/1999 To: "Andrey A. Chernov" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/sendmail freebsd.mc In-Reply-To: Message from "Andrey A. Chernov" of "Thu, 30 Dec 1999 01:03:37 PST." <19991230010336.A91927@freebsd.org> Date: Thu, 30 Dec 1999 17:12:47 +0800 From: Peter Wemm Message-Id: <19991230091247.5529E1CC6@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Andrey A. Chernov" wrote: > On Wed, Dec 29, 1999 at 10:20:24AM -0800, Peter Wemm wrote: > > peter 1999/12/29 10:20:24 PST > > > > Modified files: > > etc/sendmail freebsd.mc > > Log: > > Revert previous commit, -o is functional here and is required. > > Looking in sendmail sources I understand that -o means 'optional' here, > _but_ this file is NOT optional if you have > FEATURE(use_cw_file) > (as in my case) > this file is required and when it is missing - it is error. > I see that freebsd.mc not use 'use_cw_file' by default so better fix will be > remove -o and comment out this line by dnl: > > dnl FEATURE(use_cw_file) > dnl uncomment next line too > dnl define(`confCW_FILE', `/etc/mail/sendmail.cw')dnl freebsd.mc uses DOMAIN(generic) and generic.m4 has got use_cw_file in it. pwroot@overcee[5:10pm]~src/etc/sendmail-190# grep use_cw_file ~src/contrib/sendmail/cf/domain/generic.m4 FEATURE(use_cw_file)dnl pwroot@overcee[5:10pm]~src/etc/sendmail-191# grep generic freebsd.mc # This is a generic configuration file for 4.4 BSD-based systems. DOMAIN(generic)dnl This *does* work. proto.m4: Cwlocalhost ifdef(`USE_CW_FILE', `# file containing names of hosts for which we receive email Fw`'confCW_FILE', `dnl') And the generated file: Cwlocalhost # file containing names of hosts for which we receive email Fw-o /etc/mail/sendmail.cw And as I cut/pasted and demonstrated last time, the -o *does* work. Without the -o, you get an error message and sendmail fails totally. Cheers, -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 1:14:20 1999 Delivered-To: cvs-all@freebsd.org Received: from overcee.netplex.com.au (overcee.netplex.com.au [202.12.86.7]) by hub.freebsd.org (Postfix) with ESMTP id 6FAB814DBF; Thu, 30 Dec 1999 01:14:17 -0800 (PST) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 74A941CA0; Thu, 30 Dec 1999 17:14:10 +0800 (WST) (envelope-from peter@netplex.com.au) X-Mailer: exmh version 2.1.1 10/15/1999 To: "Andrey A. Chernov" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/sendmail freebsd.mc In-Reply-To: Message from "Andrey A. Chernov" of "Thu, 30 Dec 1999 01:06:22 PST." <19991230010622.B91927@freebsd.org> Date: Thu, 30 Dec 1999 17:14:10 +0800 From: Peter Wemm Message-Id: <19991230091410.74A941CA0@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Andrey A. Chernov" wrote: > On Thu, Dec 30, 1999 at 12:33:01AM -0800, Andrey A. Chernov wrote: > > On Thu, Dec 30, 1999 at 02:19:19AM +0800, Peter Wemm wrote: > > > Without -o: > > > > > > root@proxy[02:17am]~# sendmail peter@netplex.com.au > > > /etc/sendmail.cf: line 67: fileclass: cannot open /etc/mail/sendmail.cw: No such file or directory > > > > Something wrong with your cw file usage, I don't see this diagnostic. > > > > Please see not this but next message, there is better analysis given > and suggested fix for your review. Your analysis in that message is wrong too. Cheers, -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 1:17:26 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C4BF1520F; Thu, 30 Dec 1999 01:17:25 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA44849; Thu, 30 Dec 1999 01:17:24 -0800 (PST) (envelope-from ru@FreeBSD.org) Message-Id: <199912300917.BAA44849@freefall.freebsd.org> From: Ruslan Ermilov Date: Thu, 30 Dec 1999 01:17:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net rtsock.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ru 1999/12/30 01:17:24 PST Modified files: (Branch: RELENG_3) sys/net rtsock.c Log: MFC: Make cloning mask sockaddr (genmask) possible. Revision Changes Path 1.37.2.2 +3 -2 src/sys/net/rtsock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 1:25:31 1999 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id BAAA414DBF; Thu, 30 Dec 1999 01:25:27 -0800 (PST) Date: Thu, 30 Dec 1999 01:25:27 -0800 From: "Andrey A. Chernov" To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/sendmail freebsd.mc Message-ID: <19991230012527.C91927@freebsd.org> References: <19991230091247.5529E1CC6@overcee.netplex.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <19991230091247.5529E1CC6@overcee.netplex.com.au>; from peter@netplex.com.au on Thu, Dec 30, 1999 at 05:12:47PM +0800 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Thu, Dec 30, 1999 at 05:12:47PM +0800, Peter Wemm wrote: > And the generated file: > Cwlocalhost > # file containing names of hosts for which we receive email > Fw-o /etc/mail/sendmail.cw > > And as I cut/pasted and demonstrated last time, the -o *does* work. Without the > -o, you get an error message and sendmail fails totally. I understand this so my fix was wrong, but I see no reason to define cw file as optional when you not use it at all, so your choice is wrong too. We have only 2 cases 1) cw file is use via use_cw_file feature, in this case it is _required_ and not optional. This case is _not_ freebsd.mc case. 2) cw file is not used and not required, so define it as optional gives nothing but confusion. This case is freebsd.mc case we try to clarify. Since freebsd.mc treated as template, I suggest to not introduce optional _unused_ file as you do, but comment out its required usage by dnl. By removing dnl this variant can be turned in case 1) for users which really need case 1). dnl FEATURE(use_cw_file) dnl uncomment next line too dnl define(`confCW_FILE', `/etc/mail/sendmail.cw')dnl -- Andrey A. Chernov http://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 Dec 30 1:37:47 1999 Delivered-To: cvs-all@freebsd.org Received: from overcee.netplex.com.au (overcee.netplex.com.au [202.12.86.7]) by hub.freebsd.org (Postfix) with ESMTP id 31F9B151E2; Thu, 30 Dec 1999 01:37:43 -0800 (PST) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 23FCC1CA0; Thu, 30 Dec 1999 17:37:36 +0800 (WST) (envelope-from peter@netplex.com.au) X-Mailer: exmh version 2.1.1 10/15/1999 To: "Andrey A. Chernov" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/sendmail freebsd.mc In-Reply-To: Message from "Andrey A. Chernov" of "Thu, 30 Dec 1999 01:25:27 PST." <19991230012527.C91927@freebsd.org> Date: Thu, 30 Dec 1999 17:37:36 +0800 From: Peter Wemm Message-Id: <19991230093736.23FCC1CA0@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Andrey A. Chernov" wrote: > On Thu, Dec 30, 1999 at 05:12:47PM +0800, Peter Wemm wrote: > > And the generated file: > > Cwlocalhost > > # file containing names of hosts for which we receive email > > Fw-o /etc/mail/sendmail.cw > > > > And as I cut/pasted and demonstrated last time, the -o *does* work. Withou t the > > -o, you get an error message and sendmail fails totally. > > I understand this so my fix was wrong, but I see no reason to define cw file > as optional when you not use it at all, so your choice is wrong too. No, the freebsd.mc file is used to generate a resonable sendmail.cf. Whether we like it or not, many folks edit that directly. The reason for using optional files is so that the .cf code gets inserted into /etc/mail/ sendmail.cf at install time and so that people don't *have* to regenerate it in order to use common configurations. freebsd.mc is a compromise to give a reasonably complete sendmail.cf. > Since freebsd.mc treated as template, I suggest to not introduce optional > _unused_ file as you do, but comment out its required usage by dnl. > By removing dnl this variant can be turned in > case 1) for users which really need case 1). No, for the reason I outlined above. It is not a template, it is there to create a functional sendmail.cf to avoid having to regenerate it at all. Regenerating it for minimal installs is quite hard as they don't have the m4 files. Cheers, -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 2:21:59 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B8C921515C; Thu, 30 Dec 1999 02:21:56 -0800 (PST) (envelope-from markm@FreeBSD.org) Received: (from markm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA49565; Thu, 30 Dec 1999 02:21:56 -0800 (PST) (envelope-from markm@FreeBSD.org) Message-Id: <199912301021.CAA49565@freefall.freebsd.org> From: Mark Murray Date: Thu, 30 Dec 1999 02:21:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/kerberosIV/lib/libroken Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1999/12/30 02:21:55 PST Modified files: kerberosIV/lib/libroken Makefile Log: Build some more build-toold so that "make world" works for the KerberosIV case. Submitted by: marcel Revision Changes Path 1.5 +3 -1 src/kerberosIV/lib/libroken/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 2:31:28 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B157914C9B; Thu, 30 Dec 1999 02:31:23 -0800 (PST) (envelope-from markm@FreeBSD.org) Received: (from markm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA49937; Thu, 30 Dec 1999 02:31:23 -0800 (PST) (envelope-from markm@FreeBSD.org) Message-Id: <199912301031.CAA49937@freefall.freebsd.org> From: Mark Murray Date: Thu, 30 Dec 1999 02:31:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1999/12/30 02:31:23 PST Modified files: . Makefile.inc1 Log: Grrrr... This was supoosed to go with the commit to kerberosIV/.../libroken's Makefile. Fix make world by building appropriate build-tools. Submitted by: marcel Revision Changes Path 1.120 +7 -2 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 2:42:56 1999 Delivered-To: cvs-all@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id ED9B61523A; Thu, 30 Dec 1999 02:42:52 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (root@d60-025.leach.ucdavis.edu [169.237.60.25]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id CAA06611; Thu, 30 Dec 1999 02:42:52 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id CAA50494; Thu, 30 Dec 1999 02:42:50 -0800 (PST) (envelope-from obrien) Date: Thu, 30 Dec 1999 02:42:49 -0800 From: "David O'Brien" To: dirk.meyer@dinoex.sub.org Cc: Steve Price , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/devel Makefile ports/devel/gperf Makefile ports/devel/gperf/files md5 ports/devel/gperf/patches patch-aa ports/devel/gperf/pkg COMMENT DESCR PLIST Message-ID: <19991230024249.A38770@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <199912290909.BAA54635@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <199912290909.BAA54635@freefall.freebsd.org>; from steve@FreeBSD.org on Wed, Dec 29, 1999 at 01:09:41AM -0800 X-Operating-System: FreeBSD 4.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Log: > Adding gperf version 2.7 > Generates perfect hash functions for sets of keywords. > > PR: 12904 > Submitted by: Dirk Meyer Feh. Dare I ask why this was done as a port, rather than a PR being submitted that `gperf' in the base system should be up graded? If we keep having ports that duplicate much of the GNU tools we have in the base src tree, why don't we just remove them all from the base tree and do the package thing. -- -- David (obrien@NUXI.com) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 2:46:12 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CF16914FB1; Thu, 30 Dec 1999 02:46:09 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA50878; Thu, 30 Dec 1999 02:46:09 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Message-Id: <199912301046.CAA50878@freefall.freebsd.org> From: Jun Kuriyama Date: Thu, 30 Dec 1999 02:46:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/usbd usbd.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1999/12/30 02:46:09 PST Modified files: usr.sbin/usbd usbd.8 Log: usbd.conf is in section 5, not 8. Revision Changes Path 1.8 +2 -2 src/usr.sbin/usbd/usbd.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 3:13:41 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C77171518D; Thu, 30 Dec 1999 03:13:39 -0800 (PST) (envelope-from dirk@FreeBSD.org) Received: (from dirk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA52519; Thu, 30 Dec 1999 03:13:39 -0800 (PST) (envelope-from dirk@FreeBSD.org) Message-Id: <199912301113.DAA52519@freefall.freebsd.org> From: Dirk Froemberg Date: Thu, 30 Dec 1999 03:13:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/openssl Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dirk 1999/12/30 03:13:39 PST Modified files: security/openssl Makefile Log: Check wheather OpenSSL is installed in the base system already and skip openssl port if so. (I. e. check the existence of /usr/bin/openssl, /usr/lib/libcrypto.so and /usr/lib/libssl.so. If they exist set FORBIDDEN.) Revision Changes Path 1.38 +5 -1 ports/security/openssl/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 3:23:37 1999 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.40.131]) by hub.freebsd.org (Postfix) with ESMTP id 4E39314F6C; Thu, 30 Dec 1999 03:23:22 -0800 (PST) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.3/8.9.2) with ESMTP id MAA58513; Thu, 30 Dec 1999 12:23:14 +0100 (CET) (envelope-from phk@critter.freebsd.dk) To: obrien@FreeBSD.org Cc: dirk.meyer@dinoex.sub.org, Steve Price , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/devel Makefile ports/devel/gperf Makefile ports/devel/gperf/files md5 ports/devel/gperf/patches patch-aa ports/devel/gperf/pkg COMMENT DESCR PLIST In-reply-to: Your message of "Thu, 30 Dec 1999 02:42:49 PST." <19991230024249.A38770@dragon.nuxi.com> Date: Thu, 30 Dec 1999 12:23:13 +0100 Message-ID: <58511.946552993@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In message <19991230024249.A38770@dragon.nuxi.com>, "David O'Brien" writes: >> Log: >> Adding gperf version 2.7 >> Generates perfect hash functions for sets of keywords. >> >> PR: 12904 >> Submitted by: Dirk Meyer > > >Feh. Dare I ask why this was done as a port, rather than a PR being >submitted that `gperf' in the base system should be up graded? If we >keep having ports that duplicate much of the GNU tools we have in the >base src tree, why don't we just remove them all from the base tree and >do the package thing. Because sysinstall isn't up to snuff to do that yet. Otherwise it would have happened long time ago. -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." FreeBSD -- It will take a long time before progress goes too far! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 3:31:21 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E39451515C; Thu, 30 Dec 1999 03:31:19 -0800 (PST) (envelope-from dirk@FreeBSD.org) Received: (from dirk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA53406; Thu, 30 Dec 1999 03:31:19 -0800 (PST) (envelope-from dirk@FreeBSD.org) Message-Id: <199912301131.DAA53406@freefall.freebsd.org> From: Dirk Froemberg Date: Thu, 30 Dec 1999 03:31:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/cdrecord Makefile ports/sysutils/cdrecord/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dirk 1999/12/30 03:31:18 PST Modified files: sysutils/cdrecord Makefile sysutils/cdrecord/files md5 Log: Upgrade to 1.8a37. Revision Changes Path 1.27 +3 -3 ports/sysutils/cdrecord/Makefile 1.16 +1 -1 ports/sysutils/cdrecord/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 Dec 30 3:31:53 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EA19114E1D; Thu, 30 Dec 1999 03:31:51 -0800 (PST) (envelope-from dirk@FreeBSD.org) Received: (from dirk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA53484; Thu, 30 Dec 1999 03:31:51 -0800 (PST) (envelope-from dirk@FreeBSD.org) Message-Id: <199912301131.DAA53484@freefall.freebsd.org> From: Dirk Froemberg Date: Thu, 30 Dec 1999 03:31:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/mkisofs Makefile ports/sysutils/mkisofs/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dirk 1999/12/30 03:31:51 PST Modified files: sysutils/mkisofs Makefile sysutils/mkisofs/files md5 Log: Upgrade to mkisofs included in cdrecord-1.8a37. Revision Changes Path 1.18 +2 -2 ports/sysutils/mkisofs/Makefile 1.10 +1 -1 ports/sysutils/mkisofs/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 Dec 30 3:35: 1 1999 Delivered-To: cvs-all@freebsd.org Received: from pluto.psn.net (pluto.psn.net [207.211.58.12]) by hub.freebsd.org (Postfix) with ESMTP id F1FB71515C; Thu, 30 Dec 1999 03:34:57 -0800 (PST) (envelope-from will@shadow.blackdawn.com) Received: from 15-155.008.popsite.net ([209.69.195.155] helo=shadow.blackdawn.com) by pluto.psn.net with esmtp (PSN Internet Service 3.12 #1) id 123dr6-0006R3-00; Thu, 30 Dec 1999 04:34:57 -0700 Received: (from will@localhost) by shadow.blackdawn.com (8.9.3/8.9.3) id GAA03705; Thu, 30 Dec 1999 06:34:53 -0500 (EST) (envelope-from will) Message-ID: X-Mailer: XFMail 1.3.1 [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: <199912301113.DAA52519@freefall.freebsd.org> Date: Thu, 30 Dec 1999 06:34:52 -0500 (EST) Reply-To: Will Andrews From: Will Andrews To: Dirk Froemberg Subject: RE: cvs commit: ports/security/openssl Makefile Cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On 30-Dec-99 Dirk Froemberg wrote: > dirk 1999/12/30 03:13:39 PST > > Modified files: > security/openssl Makefile > Log: > Check wheather OpenSSL is installed in the base system already and > skip openssl port if so. > > (I. e. check the existence of /usr/bin/openssl, /usr/lib/libcrypto.so > and /usr/lib/libssl.so. If they exist set FORBIDDEN.) You could use ${OSVERSION}, although that wouldn't work too well unless the number was changed at the point OpenSSL was added. -- Will Andrews GCS/E/S @d- s+:+>+:- a--->+++ C++ UB++++ P+ L- E--- W+++ !N !o ?K w--- ?O M+ V-- PS+ PE++ Y+ PGP+>+++ t++ 5 X++ R+ tv+ b++>++++ DI+++ D+ G++>+++ e->++++ h! r-->+++ y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 3:49: 4 1999 Delivered-To: cvs-all@freebsd.org Received: from emmi.physik.TU-Berlin.DE (emmi.physik.TU-Berlin.DE [130.149.160.103]) by hub.freebsd.org (Postfix) with ESMTP id CE3E01528E; Thu, 30 Dec 1999 03:48:54 -0800 (PST) (envelope-from ibex@emmi.physik.TU-Berlin.DE) Received: (from ibex@localhost) by emmi.physik.TU-Berlin.DE (8.9.3/8.9.3) id MAA34304; Thu, 30 Dec 1999 12:47:37 +0100 (CET) (envelope-from ibex) Date: Thu, 30 Dec 1999 12:47:36 +0100 From: Dirk Froemberg To: Will Andrews Cc: cvs-all@freebsd.org, cvs-committers@freebsd.org Subject: Re: cvs commit: ports/security/openssl Makefile Message-ID: <19991230124736.A34079@physik.TU-Berlin.DE> References: <199912301113.DAA52519@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from andrews@TECHNOLOGIST.COM on Thu, Dec 30, 1999 at 06:34:52AM -0500 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Hi Will! On Thu, Dec 30, 1999 at 06:34:52AM -0500, Will Andrews wrote: > On 30-Dec-99 Dirk Froemberg wrote: > > dirk 1999/12/30 03:13:39 PST > > > > Modified files: > > security/openssl Makefile > > Log: > > Check wheather OpenSSL is installed in the base system already and > > skip openssl port if so. > > > > (I. e. check the existence of /usr/bin/openssl, /usr/lib/libcrypto.so > > and /usr/lib/libssl.so. If they exist set FORBIDDEN.) > > You could use ${OSVERSION}, although that wouldn't work too well unless the > number was changed at the point OpenSSL was added. Unfortunally we can't use ${OSVERSION} because OpenSSL is installed in the base system, only if the international crypto sources are used (internat.FreeBSD.org) and USA_RESIDENT==NO. Regards Dirk -- Dirk Froemberg FreeBSD: The Power to Serve! http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 4:23:10 1999 Delivered-To: cvs-all@freebsd.org Received: from multi.al.rim.or.jp (multi.al.rim.or.jp [202.247.191.124]) by hub.freebsd.org (Postfix) with ESMTP id 09B7A14CFD; Thu, 30 Dec 1999 04:23:07 -0800 (PST) (envelope-from kuriyama@sky.rim.or.jp) Received: from relay.rim.or.jp by multi.al.rim.or.jp (8.8.8/3.7W/HMX-12) with ESMTP id VAA05354; Thu, 30 Dec 1999 21:23:05 +0900 (JST) Received: from rhea.sky.rim.or.jp by relay.rim.or.jp (8.8.8/3.7W/HMX-12) id VAA11462; Thu, 30 Dec 1999 21:23:05 +0900 (JST) (envelope-from kuriyama@sky.rim.or.jp) Received: from localhost.sky.rim.or.jp (localhost [127.0.0.1]) by rhea.sky.rim.or.jp (8.9.3/3.7W/rhea-1.2) with ESMTP id VAA85212; Thu, 30 Dec 1999 21:23:03 +0900 (JST) Date: Thu, 30 Dec 1999 21:23:00 +0900 Message-ID: <14443.20132.648010.95538M@localhost.sky.rim.or.jp> From: Jun Kuriyama To: wpaul@FreeBSD.org To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/usb if_aue.c if_auereg.h usb_quirks.c usb_quirks.h usbdevs usbdevs.h usbdevs_data.h usbdi.c src/sys/modules Makefile src/sys/modules/aue Makefile src/sys/i386/conf GENERIC LINT NEWCARD PCCARD src/sys/i386/i386 ... In-Reply-To: In your message of "Mon, 27 Dec 1999 18:01:19 -0800 (PST)" <199912280201.SAA74725@freefall.freebsd.org> References: <199912280201.SAA74725@freefall.freebsd.org> User-Agent: Wanderlust/1.0.3 (Notorious) SEMI/1.13.3 (Komaiko) FLIM/1.12.5 (Hirahata) MULE XEmacs/20.4 (Emerald) (i386--freebsd) MIME-Version: 1.0 (generated by SEMI 1.13.3 - "Komaiko") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk I'm sorry if I did not understand this thread. I bought USB ether (Melco LUA-TX: about 5,000 yen) today, and it works well. But when I disconneced it, following messages are filled in console and my box is slowed down (because of much messages in console?) > Dec 30 17:49:07 leda /kernel: aue0: usb error on intr: IOERROR > Dec 30 17:49:07 leda /kernel: aue0: usb error on rx: IOERROR ..... Is this know problem? Or my local configuration problem? Jun Kuriyama // kuriyama@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 4:29:40 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F0C661518D; Thu, 30 Dec 1999 04:29:38 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA60071; Thu, 30 Dec 1999 04:29:38 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912301229.EAA60071@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Thu, 30 Dec 1999 04:29:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/30 04:29:38 PST Modified files: . modules Log: popt --> ports/devel/popt Revision Changes Path 1.725 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 4:31:27 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 739441528D; Thu, 30 Dec 1999 04:31:25 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA60210; Thu, 30 Dec 1999 04:31:25 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912301231.EAA60210@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Thu, 30 Dec 1999 04:31:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/popt - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/30 04:31:24 PST ports/devel/popt - Imported sources Update of /home/ncvs/ports/devel/popt In directory freefall.freebsd.org:/c/users/jedgar/work/popt Log Message: popt is an enhanced getopt(3)-style command line option parsing library. PR: 15759 Submitted by: Yuan-Chen Cheng Status: Vendor Tag: YCHENG Release Tags: v_1_4 N ports/devel/popt/Makefile N ports/devel/popt/files/md5 N ports/devel/popt/pkg/COMMENT N ports/devel/popt/pkg/DESCR N ports/devel/popt/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 Thu Dec 30 4:34:40 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5FC0D1534D; Thu, 30 Dec 1999 04:34:36 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA60460; Thu, 30 Dec 1999 04:34:36 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912301234.EAA60460@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Thu, 30 Dec 1999 04:34:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/30 04:34:35 PST Modified files: . modules Log: logrotate --> ports/sysutils/logrotate Revision Changes Path 1.726 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 4:35:55 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EEC3C152B5; Thu, 30 Dec 1999 04:35:52 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA60551; Thu, 30 Dec 1999 04:35:52 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912301235.EAA60551@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Thu, 30 Dec 1999 04:35:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/logrotate - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/30 04:35:52 PST ports/sysutils/logrotate - Imported sources Update of /home/ncvs/ports/sysutils/logrotate In directory freefall.freebsd.org:/c/users/jedgar/work/logrotate Log Message: Logrotate is a system utility that rotates, compresses, removes and mails system log files PR: 15759 Submitted by: Yuan-Chen Cheng Status: Vendor Tag: YCHENG Release Tags: v_3_3 N ports/sysutils/logrotate/Makefile N ports/sysutils/logrotate/files/md5 N ports/sysutils/logrotate/files/syslog.sample N ports/sysutils/logrotate/files/logrotate.conf.sample N ports/sysutils/logrotate/pkg/COMMENT N ports/sysutils/logrotate/pkg/DESCR N ports/sysutils/logrotate/pkg/PLIST N ports/sysutils/logrotate/patches/patch-aa N ports/sysutils/logrotate/patches/patch-ab N ports/sysutils/logrotate/patches/patch-ac N ports/sysutils/logrotate/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 Thu Dec 30 4:38:59 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E98F614D4F; Thu, 30 Dec 1999 04:38:57 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA60806; Thu, 30 Dec 1999 04:38:57 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912301238.EAA60806@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Thu, 30 Dec 1999 04:38:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/sysutils Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/30 04:38:57 PST Modified files: devel Makefile sysutils Makefile Log: Active popt and logrotate Revision Changes Path 1.244 +2 -1 ports/devel/Makefile 1.94 +2 -1 ports/sysutils/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 5: 1:11 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 220291531B; Thu, 30 Dec 1999 05:01:09 -0800 (PST) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA62606; Thu, 30 Dec 1999 05:01:08 -0800 (PST) (envelope-from hoek@FreeBSD.org) Message-Id: <199912301301.FAA62606@freefall.freebsd.org> From: Tim Vanderhoek Date: Thu, 30 Dec 1999 05:01:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 splash.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1999/12/30 05:01:08 PST Modified files: share/man/man4 splash.4 Log: des@FreeBDS.org => des@FreeBSD.org, and fix a small grammo. Revision Changes Path 1.8 +4 -4 src/share/man/man4/splash.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 5: 3:49 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 205D215091; Thu, 30 Dec 1999 05:03:47 -0800 (PST) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA62801; Thu, 30 Dec 1999 05:03:46 -0800 (PST) (envelope-from hoek@FreeBSD.org) Message-Id: <199912301303.FAA62801@freefall.freebsd.org> From: Tim Vanderhoek Date: Thu, 30 Dec 1999 05:03:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 splash.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1999/12/30 05:03:46 PST Modified files: (Branch: RELENG_3) share/man/man4 splash.4 Log: MFC: grammo and typo Revision Changes Path 1.7.2.3 +4 -4 src/share/man/man4/splash.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 5:15:19 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 65D1F14FC1; Thu, 30 Dec 1999 05:15:17 -0800 (PST) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA63774; Thu, 30 Dec 1999 05:15:17 -0800 (PST) (envelope-from joe@FreeBSD.org) Message-Id: <199912301315.FAA63774@freefall.freebsd.org> From: Josef Karthauser Date: Thu, 30 Dec 1999 05:15:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/ls Makefile src/bin/rm Makefile src/lib/libutil Makefile src/libexec/ftpd Makefile src/usr.bin/chflags Makefile src/usr.bin/find Makefile src/usr.bin/xinstall Makefile src/usr.sbin/mtree Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk joe 1999/12/30 05:15:16 PST Modified files: bin/ls Makefile bin/rm Makefile lib/libutil Makefile libexec/ftpd Makefile usr.bin/chflags Makefile usr.bin/find Makefile usr.bin/xinstall Makefile usr.sbin/mtree Makefile Log: Moved flags_to_string and string_to_flags into libutil. It's used in many places nowadays. Revision Changes Path 1.6 +4 -2 src/bin/ls/Makefile 1.8 +3 -4 src/bin/rm/Makefile 1.29 +3 -2 src/lib/libutil/Makefile 1.30 +2 -2 src/libexec/ftpd/Makefile 1.5 +3 -2 src/usr.bin/chflags/Makefile 1.5 +3 -3 src/usr.bin/find/Makefile 1.7 +3 -2 src/usr.bin/xinstall/Makefile 1.12 +4 -3 src/usr.sbin/mtree/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 5:23:38 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E9C114E6E; Thu, 30 Dec 1999 05:23:36 -0800 (PST) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA64536; Thu, 30 Dec 1999 05:23:36 -0800 (PST) (envelope-from joe@FreeBSD.org) Message-Id: <199912301323.FAA64536@freefall.freebsd.org> From: Josef Karthauser Date: Thu, 30 Dec 1999 05:23:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/ls stat_flags.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk joe 1999/12/30 05:23:35 PST Removed files: bin/ls stat_flags.c Log: Retire stat_flags.c; it's now in libutil. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 5:27:18 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C24D315125; Thu, 30 Dec 1999 05:27:16 -0800 (PST) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA65051; Thu, 30 Dec 1999 05:27:16 -0800 (PST) (envelope-from brian@FreeBSD.org) Message-Id: <199912301327.FAA65051@freefall.freebsd.org> From: Brian Somers Date: Thu, 30 Dec 1999 05:27:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp hdlc.h mbuf.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1999/12/30 05:27:16 PST Modified files: usr.sbin/ppp hdlc.h mbuf.h Log: Increase M_MAXLEN from 2048 - sizeof struct mbuf to 4096 - sizeof struct mbuf, and set MAX_MRU and MAX_MTU back to 2048. 2048 is big enough as an MTU/MRU, but we need to be able to allocate larger mbufs after reassembling IP fragments. Revision Changes Path 1.21 +3 -3 src/usr.sbin/ppp/hdlc.h 1.23 +2 -2 src/usr.sbin/ppp/mbuf.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 5:44: 4 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 70A711526B; Thu, 30 Dec 1999 05:44:02 -0800 (PST) (envelope-from jesusr@FreeBSD.org) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA67504; Thu, 30 Dec 1999 05:44:02 -0800 (PST) (envelope-from jesusr@FreeBSD.org) Message-Id: <199912301344.FAA67504@freefall.freebsd.org> From: Jesus Rodriguez Cuesta Date: Thu, 30 Dec 1999 05:44:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/es/releases Makefile index.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jesusr 1999/12/30 05:44:02 PST Modified files: es/releases Makefile index.sgml Log: Add 3.4R Revision Changes Path 1.6 +2 -2 www/es/releases/Makefile 1.12 +14 -6 www/es/releases/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 5:49:14 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A5A515307; Thu, 30 Dec 1999 05:49:13 -0800 (PST) (envelope-from jesusr@FreeBSD.org) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA67976; Thu, 30 Dec 1999 05:49:12 -0800 (PST) (envelope-from jesusr@FreeBSD.org) Message-Id: <199912301349.FAA67976@freefall.freebsd.org> From: Jesus Rodriguez Cuesta Date: Thu, 30 Dec 1999 05:49:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/es/releases/3.4R Makefile announce.sgml errata.sgml notes.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jesusr 1999/12/30 05:49:12 PST Added files: es/releases/3.4R Makefile announce.sgml errata.sgml notes.sgml Log: Add 3.4R To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 5:54:36 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6345615331; Thu, 30 Dec 1999 05:54:34 -0800 (PST) (envelope-from jesusr@FreeBSD.org) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA68611; Thu, 30 Dec 1999 05:54:34 -0800 (PST) (envelope-from jesusr@FreeBSD.org) Message-Id: <199912301354.FAA68611@freefall.freebsd.org> From: Jesus Rodriguez Cuesta Date: Thu, 30 Dec 1999 05:54:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/es/news newsflash.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jesusr 1999/12/30 05:54:34 PST Modified files: es/news newsflash.sgml Log: Add 3.4-Release Revision Changes Path 1.21 +14 -2 www/es/news/newsflash.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 5:58:55 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BD39A15047; Thu, 30 Dec 1999 05:58:53 -0800 (PST) (envelope-from jesusr@FreeBSD.org) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA68989; Thu, 30 Dec 1999 05:58:53 -0800 (PST) (envelope-from jesusr@FreeBSD.org) Message-Id: <199912301358.FAA68989@freefall.freebsd.org> From: Jesus Rodriguez Cuesta Date: Thu, 30 Dec 1999 05:58:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/es includes.sgml where.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jesusr 1999/12/30 05:58:53 PST Modified files: es includes.sgml where.sgml Log: 3.3R -> 3.4R Revision Changes Path 1.6 +3 -3 www/es/includes.sgml 1.10 +3 -3 www/es/where.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 6: 6:15 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B8F361515F; Thu, 30 Dec 1999 06:06:12 -0800 (PST) (envelope-from jesusr@FreeBSD.org) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA69573; Thu, 30 Dec 1999 06:06:12 -0800 (PST) (envelope-from jesusr@FreeBSD.org) Message-Id: <199912301406.GAA69573@freefall.freebsd.org> From: Jesus Rodriguez Cuesta Date: Thu, 30 Dec 1999 06:06:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/es_ES.ISO_8859-1/books/faq book.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jesusr 1999/12/30 06:06:12 PST Modified files: es_ES.ISO_8859-1/books/faq book.sgml Log: Update links to 3.4R Revision Changes Path 1.11 +6 -6 doc/es_ES.ISO_8859-1/books/faq/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 6:10:34 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D832E151E4; Thu, 30 Dec 1999 06:10:31 -0800 (PST) (envelope-from jesusr@FreeBSD.org) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA69960; Thu, 30 Dec 1999 06:10:31 -0800 (PST) (envelope-from jesusr@FreeBSD.org) Message-Id: <199912301410.GAA69960@freefall.freebsd.org> From: Jesus Rodriguez Cuesta Date: Thu, 30 Dec 1999 06:10:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/es robots.txt Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jesusr 1999/12/30 06:10:31 PST Modified files: es robots.txt Log: Update content Revision Changes Path 1.2 +2 -5 www/es/robots.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 6:11:44 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8CAF114C92; Thu, 30 Dec 1999 06:11:41 -0800 (PST) (envelope-from jesusr@FreeBSD.org) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA70083; Thu, 30 Dec 1999 06:11:41 -0800 (PST) (envelope-from jesusr@FreeBSD.org) Message-Id: <199912301411.GAA70083@freefall.freebsd.org> From: Jesus Rodriguez Cuesta Date: Thu, 30 Dec 1999 06:11:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/es index.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jesusr 1999/12/30 06:11:41 PST Modified files: es index.sgml Log: Fix copyright Revision Changes Path 1.17 +3 -3 www/es/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 6:12:21 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EEB0A14C92; Thu, 30 Dec 1999 06:12:19 -0800 (PST) (envelope-from jesusr@FreeBSD.org) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA70201; Thu, 30 Dec 1999 06:12:19 -0800 (PST) (envelope-from jesusr@FreeBSD.org) Message-Id: <199912301412.GAA70201@freefall.freebsd.org> From: Jesus Rodriguez Cuesta Date: Thu, 30 Dec 1999 06:12:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/es includes.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jesusr 1999/12/30 06:12:19 PST Modified files: es includes.sgml Log: Fix copyright Revision Changes Path 1.7 +2 -2 www/es/includes.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 6:15:52 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1BA6A14F53; Thu, 30 Dec 1999 06:15:49 -0800 (PST) (envelope-from jesusr@FreeBSD.org) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA70422; Thu, 30 Dec 1999 06:15:49 -0800 (PST) (envelope-from jesusr@FreeBSD.org) Message-Id: <199912301415.GAA70422@freefall.freebsd.org> From: Jesus Rodriguez Cuesta Date: Thu, 30 Dec 1999 06:15:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/es index.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jesusr 1999/12/30 06:15:48 PST Modified files: es index.sgml Log: Update web build time Revision Changes Path 1.18 +3 -3 www/es/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 6:16:48 1999 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 9C29B14D47; Thu, 30 Dec 1999 06:16:42 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from bde.zeta.org.au (beefcake.zeta.org.au [203.26.10.12]) by mailman.zeta.org.au (8.8.7/8.8.7) with ESMTP id BAA22920; Fri, 31 Dec 1999 01:16:38 +1100 Date: Fri, 31 Dec 1999 01:16:18 +1100 (EST) From: Bruce Evans X-Sender: bde@alphplex.bde.org To: Josef Karthauser Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin/ls Makefile src/bin/rm Makefile src/lib/libutil Makefile src/libexec/ftpd Makefile src/usr.bin/chflags Makefile src/usr.bin/find Makefile src/usr.bin/xinstall Makefile src/usr.sbin/mtree Makefile In-Reply-To: <199912301315.FAA63774@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 Thu, 30 Dec 1999, Josef Karthauser wrote: > joe 1999/12/30 05:15:16 PST > > Modified files: > bin/ls Makefile > bin/rm Makefile > lib/libutil Makefile > libexec/ftpd Makefile > usr.bin/chflags Makefile > usr.bin/find Makefile > usr.bin/xinstall Makefile > usr.sbin/mtree Makefile > Log: > Moved flags_to_string and string_to_flags into libutil. It's used in > many places nowadays. This is wrong. libutil is only for little used, mostly login-related things. Flags handling should be alongside mode handling (getmode(3) and setmode(3)) in libc if it isn't in ls. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 6:20:24 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E684015346; Thu, 30 Dec 1999 06:20:21 -0800 (PST) (envelope-from jesusr@FreeBSD.org) Received: (from jesusr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA71496; Thu, 30 Dec 1999 06:20:21 -0800 (PST) (envelope-from jesusr@FreeBSD.org) Message-Id: <199912301420.GAA71496@freefall.freebsd.org> From: Jesus Rodriguez Cuesta Date: Thu, 30 Dec 1999 06:20:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/es/internal about.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jesusr 1999/12/30 06:20:21 PST Modified files: es/internal about.sgml Log: Update web build time Revision Changes Path 1.6 +3 -3 www/es/internal/about.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 7:52:38 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AC5E114E1C; Thu, 30 Dec 1999 07:52:35 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA34526; Thu, 30 Dec 1999 07:52:35 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912301552.HAA34526@freefall.freebsd.org> From: Peter Wemm Date: Thu, 30 Dec 1999 07:52:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT exclude Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/30 07:52:34 PST Modified files: . exclude Log: Drop share/examples/diskless - the ssh identities shouldn't even be there, and even if they did they should be uuencoded. Add etc/motd Revision Changes Path 1.6 +3 -2 CVSROOT/exclude To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 8: 7:51 1999 Delivered-To: cvs-all@freebsd.org Received: from florence.pavilion.net (florence.pavilion.net [212.74.0.25]) by hub.freebsd.org (Postfix) with ESMTP id EE4F814DF3; Thu, 30 Dec 1999 08:07:45 -0800 (PST) (envelope-from joe@florence.pavilion.net) Received: (from joe@localhost) by florence.pavilion.net (8.9.3/8.8.8) id QAA05024; Thu, 30 Dec 1999 16:07:31 GMT (envelope-from joe) Date: Thu, 30 Dec 1999 16:07:31 +0000 From: Josef Karthauser To: Bruce Evans Cc: Josef Karthauser , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin/ls Makefile src/bin/rm Makefile src/lib/libutil Makefile src/libexec/ftpd Makefile src/usr.bin/chflags Makefile src/usr.bin/find Makefile src/usr.bin/xinstall Makefile src/usr.sbin/mtree Makefile Message-ID: <19991230160731.C1906@florence.pavilion.net> References: <199912301315.FAA63774@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: X-NCC-RegID: uk.pavilion Organisation: Pavilion Internet plc, Lees House, 21-23 Dyke Road, Brighton, England Phone: +44-845-333-5000 Fax: +44-845-333-5001 Mobile: +44-403-596893 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Fri, Dec 31, 1999 at 01:16:18AM +1100, Bruce Evans wrote: > > This is wrong. libutil is only for little used, mostly login-related > things. Flags handling should be alongside mode handling (getmode(3) and > setmode(3)) in libc if it isn't in ls. > What is the exact definition of libutil? It appears to have more than login-related things in it. Should not its definition should be expanded to allow wider use, or narrowed to only login things (with a possible remame to liblogin)? I agree with you on the flags handling. Should they remain with the same names, or be renamed to getflags/setflags to be in keeping with getmode/setmode? Joe -- Josef Karthauser FreeBSD: Take the red pill and we'll show you just how Technical Manager deep the rabbit hole goes. (http://www.uk.freebsd.org) Pavilion Internet plc. [joe@pavilion.net, joe@freebsd.org, joe@tao.org.uk] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 8:17:22 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 844CD153B1; Thu, 30 Dec 1999 08:17:19 -0800 (PST) (envelope-from hm@FreeBSD.org) Received: (from hm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA36639; Thu, 30 Dec 1999 08:17:14 -0800 (PST) (envelope-from hm@FreeBSD.org) Message-Id: <199912301617.IAA36639@freefall.freebsd.org> From: Hellmuth Michaelis Date: Thu, 30 Dec 1999 08:17:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa/pcvt pcvt_conf.h pcvt_drv.c pcvt_ext.c pcvt_hdr.h pcvt_kbd.c pcvt_kbd.h pcvt_out.c pcvt_sup.c pcvt_tbl.h pcvt_vtf.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hm 1999/12/30 08:17:13 PST Modified files: sys/i386/isa/pcvt pcvt_conf.h pcvt_drv.c pcvt_ext.c pcvt_hdr.h pcvt_kbd.c pcvt_kbd.h pcvt_out.c pcvt_sup.c pcvt_tbl.h pcvt_vtf.c Log: Implement scrollback for pcvt based on code submitted by Aaron Campbell . Use SHIFT-PgUp and SHIFT-PgDn to scroll back and forward. Aarons original code was enhanced to have a separate scrollbuffer for every virtual terminal and to preserve the screen contents when switching screen sizes. The scrollbuffer size is currently fixed at 8 pages but this will be made configurable through the use of scon(1) in the near future. For pcvt_kbd.h, a longstanding compiler warning was fixed by using excessive backetizing of the key2ascii[] table. Revision Changes Path 1.9 +6 -8 src/sys/i386/isa/pcvt/pcvt_conf.h 1.62 +9 -30 src/sys/i386/isa/pcvt/pcvt_drv.c 1.17 +10 -24 src/sys/i386/isa/pcvt/pcvt_ext.c 1.36 +16 -24 src/sys/i386/isa/pcvt/pcvt_hdr.h 1.32 +149 -23 src/sys/i386/isa/pcvt/pcvt_kbd.c 1.10 +135 -135 src/sys/i386/isa/pcvt/pcvt_kbd.h 1.20 +68 -21 src/sys/i386/isa/pcvt/pcvt_out.c 1.16 +64 -17 src/sys/i386/isa/pcvt/pcvt_sup.c 1.7 +7 -12 src/sys/i386/isa/pcvt/pcvt_tbl.h 1.11 +6 -15 src/sys/i386/isa/pcvt/pcvt_vtf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 8:24:34 1999 Delivered-To: cvs-all@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 069E5150F1; Thu, 30 Dec 1999 08:24:31 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (root@d60-025.leach.ucdavis.edu [169.237.60.25]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id IAA07866; Thu, 30 Dec 1999 08:24:30 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id IAA78441; Thu, 30 Dec 1999 08:24:30 -0800 (PST) (envelope-from obrien) Date: Thu, 30 Dec 1999 08:24:30 -0800 From: "David O'Brien" To: Hellmuth Michaelis Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/isa/pcvt pcvt_conf.h pcvt_drv.c pcvt_ext.c pcvt_hdr.h pcvt_kbd.c pcvt_kbd.h pcvt_out.c pcvt_sup.c pcvt_tbl.h pcvt_vtf.c Message-ID: <19991230082430.A78367@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <199912301617.IAA36639@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <199912301617.IAA36639@freefall.freebsd.org>; from hm@FreeBSD.org on Thu, Dec 30, 1999 at 08:17:13AM -0800 X-Operating-System: FreeBSD 4.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Thu, Dec 30, 1999 at 08:17:13AM -0800, Hellmuth Michaelis wrote: > Log: > Implement scrollback for pcvt based on code submitted by Will this be documented somewhere? pcvt(4) or scon(1), maybe? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 8:27: 9 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EE11C14CFB; Thu, 30 Dec 1999 08:27:06 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA37563; Thu, 30 Dec 1999 08:27:06 -0800 (PST) (envelope-from obrien@FreeBSD.org) Message-Id: <199912301627.IAA37563@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 30 Dec 1999 08:27:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 pcvt.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1999/12/30 08:27:06 PST Modified files: share/man/man4 pcvt.4 Log: Add the userland commands to SEE ALSO. Revision Changes Path 1.19 +4 -1 src/share/man/man4/pcvt.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 8:32:43 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AF65C14DD0; Thu, 30 Dec 1999 08:32:41 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA38164; Thu, 30 Dec 1999 08:32:41 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912301632.IAA38164@freefall.freebsd.org> From: Peter Wemm Date: Thu, 30 Dec 1999 08:32:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/fsck main.c preen.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/30 08:32:41 PST Modified files: sbin/fsck main.c preen.c Log: Make fsck(8) do a MNT_RELOAD after cleaning for all read-only mounted filesystems, not just for the root fs. Reviewed by: mckusick Submitted by: Paul Saab Revision Changes Path 1.19 +64 -28 src/sbin/fsck/main.c 1.16 +1 -9 src/sbin/fsck/preen.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 8:33:33 1999 Delivered-To: cvs-all@freebsd.org Received: from hcshh.hcs.de (hcshh.hcs.de [194.123.40.1]) by hub.freebsd.org (Postfix) with SMTP id 9C31914DE8; Thu, 30 Dec 1999 08:33:25 -0800 (PST) (envelope-from hm@hcs.de) Received: from hcswork.hcs.de([192.76.124.5]) (1533 bytes) by hcshh.hcs.de via sendmail with P:smtp/R:inet_hosts/T:smtp (sender: ) id for ; Thu, 30 Dec 1999 17:33:24 +0100 (CET) (Smail-3.2.0.104 1998-Nov-20 #1 built 1998-Dec-11) Received: by hcswork.hcs.de (Postfix, from userid 200) id F38F836CF; Thu, 30 Dec 1999 17:33:23 +0100 (MET) Subject: Re: cvs commit: src/sys/i386/isa/pcvt pcvt_conf.h pcvt_drv.c pcvt_ext.c pcvt_hdr.h pcvt_kbd.c pcvt_kbd.h pcvt_out.c pcvt_sup.c p In-Reply-To: <19991230082430.A78367@dragon.nuxi.com> from David O'Brien at "Dec 30, 99 08:24:30 am" To: obrien@FreeBSD.org Date: Thu, 30 Dec 1999 17:33:23 +0100 (MET) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Reply-To: hm@hcs.de Organization: HCS Hanseatischer Computerservice GmbH X-Mailer: ELM [version 2.4ME+ PL39 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Length: 552 Message-Id: <19991230163323.F38F836CF@hcswork.hcs.de> From: hm@hcs.de (Hellmuth Michaelis) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk From the keyboard of David O'Brien: > > Log: > > Implement scrollback for pcvt based on code submitted by > > Will this be documented somewhere? pcvt(4) or scon(1), maybe? Sorry, yes, shure it will. I'll take care of that. hellmuth -- Hellmuth Michaelis Tel +49 40 559747-70 HCS Hanseatischer Computerservice GmbH Fax +49 40 559747-77 Oldesloer Strasse 97-99 Mail hm [at] hcs.de 22457 Hamburg WWW http://www.hcs.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 8:54:55 1999 Delivered-To: cvs-all@freebsd.org Received: from internat.freebsd.org (internat.freebsd.org [146.64.8.4]) by hub.freebsd.org (Postfix) with ESMTP id 1AFFD151F7; Thu, 30 Dec 1999 08:54:31 -0800 (PST) (envelope-from shin@internat.freebsd.org) Received: (from shin@localhost) by internat.freebsd.org (8.9.3/8.9.3) id SAA53869; Thu, 30 Dec 1999 18:54:19 +0200 (SAST) (envelope-from shin) Message-Id: <199912301654.SAA53869@internat.freebsd.org> From: Yoshinobu Inoue Date: Thu, 30 Dec 1999 18:54:19 +0200 (SAST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/crypto sha1.h src/sys/crypto/des des_locl.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk shin 1999/12/30 18:54:19 SAST FreeBSD International Crypto Repository Modified files: sys/crypto sha1.h sys/crypto/des des_locl.h Log: s/KERNEL/_KERNEL/ fix sync with freefall repository Specified by: Pascal Hofstee Revision Changes Path 1.2 +2 -2 src/sys/crypto/sha1.h 1.2 +2 -2 src/sys/crypto/des/des_locl.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 9:18:26 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D2F7414C91; Thu, 30 Dec 1999 09:18:23 -0800 (PST) (envelope-from se@FreeBSD.org) Received: (from se@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA41954; Thu, 30 Dec 1999 09:18:23 -0800 (PST) (envelope-from se@FreeBSD.org) Message-Id: <199912301718.JAA41954@freefall.freebsd.org> From: Stefan Esser Date: Thu, 30 Dec 1999 09:18:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/benchmarks/bonnie Makefile ports/benchmarks/bonnie/patches patch-ab patch-ac patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk se 1999/12/30 09:18:23 PST Modified files: benchmarks/bonnie Makefile benchmarks/bonnie/patches patch-aa Added files: benchmarks/bonnie/patches patch-ab patch-ac Log: Prevent overflow of "size" for file sizes of 2048MB and more (PR 11430). While I'm here: - Make a error message start on a new line. - Move installation into port Makefile. - Split patch-aa in two (add -ac), it modified two files. - Close file descriptor 0 in seeker processes. PR: 11430 Revision Changes Path 1.7 +6 -1 ports/benchmarks/bonnie/Makefile 1.2 +0 -24 ports/benchmarks/bonnie/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 Thu Dec 30 10:29:58 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D4FB014D3F; Thu, 30 Dec 1999 10:29:55 -0800 (PST) (envelope-from shin@FreeBSD.org) Received: (from shin@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA47533; Thu, 30 Dec 1999 10:29:55 -0800 (PST) (envelope-from shin@FreeBSD.org) Message-Id: <199912301829.KAA47533@freefall.freebsd.org> From: Yoshinobu Inoue Date: Thu, 30 Dec 1999 10:29:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net if.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk shin 1999/12/30 10:29:55 PST Modified files: sys/net if.c Log: Prevent kernel panic at ifconfig up after Note PC resume. Submitted by: imp, kuriyama Reviewed by: imp Revision Changes Path 1.82 +23 -4 src/sys/net/if.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 10:54: 2 1999 Delivered-To: cvs-all@freebsd.org Received: from florence.pavilion.net (florence.pavilion.net [212.74.0.25]) by hub.freebsd.org (Postfix) with ESMTP id 40EDB14D21; Thu, 30 Dec 1999 10:53:43 -0800 (PST) (envelope-from joe@florence.pavilion.net) Received: (from joe@localhost) by florence.pavilion.net (8.9.3/8.8.8) id SAA24778; Thu, 30 Dec 1999 18:53:41 GMT (envelope-from joe) Date: Thu, 30 Dec 1999 18:53:41 +0000 From: Josef Karthauser To: Yoshinobu Inoue Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if.c Message-ID: <19991230185341.A9341@florence.pavilion.net> References: <199912301829.KAA47533@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: <199912301829.KAA47533@freefall.freebsd.org> X-NCC-RegID: uk.pavilion Organisation: Pavilion Internet plc, Lees House, 21-23 Dyke Road, Brighton, England Phone: +44-845-333-5000 Fax: +44-845-333-5001 Mobile: +44-403-596893 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Thu, Dec 30, 1999 at 10:29:55AM -0800, Yoshinobu Inoue wrote: > shin 1999/12/30 10:29:55 PST > > Modified files: > sys/net if.c > Log: > Prevent kernel panic at ifconfig up after Note PC resume. > Does this fix PR#kern/15742? Joe -- Josef Karthauser FreeBSD: Take the red pill and we'll show you just how Technical Manager deep the rabbit hole goes. (http://www.uk.freebsd.org) Pavilion Internet plc. [joe@pavilion.net, joe@freebsd.org, joe@tao.org.uk] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 11: 2:19 1999 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id DF0A014CE4; Thu, 30 Dec 1999 11:02:14 -0800 (PST) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id MAA48459; Thu, 30 Dec 1999 12:02:13 -0700 (MST) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id MAA11927; Thu, 30 Dec 1999 12:02:13 -0700 (MST) Message-Id: <199912301902.MAA11927@harmony.village.org> To: Josef Karthauser Subject: Re: cvs commit: src/sys/net if.c Cc: Yoshinobu Inoue , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Thu, 30 Dec 1999 18:53:41 GMT." <19991230185341.A9341@florence.pavilion.net> References: <19991230185341.A9341@florence.pavilion.net> <199912301829.KAA47533@freefall.freebsd.org> Date: Thu, 30 Dec 1999 12:02:13 -0700 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In message <19991230185341.A9341@florence.pavilion.net> Josef Karthauser writes: : Does this fix PR#kern/15742? Yes. It also makes kernels w/o INET compile again. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 11:13:58 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7DB8B14EBD; Thu, 30 Dec 1999 11:13:56 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA51196; Thu, 30 Dec 1999 11:13:56 -0800 (PST) (envelope-from ru@FreeBSD.org) Message-Id: <199912301913.LAA51196@freefall.freebsd.org> From: Ruslan Ermilov Date: Thu, 30 Dec 1999 11:13:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: grep - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ru 1999/12/30 11:13:55 PST grep - Imported sources Update of /home/ncvs/grep In directory freefall.freebsd.org:/d/users/ru/grep-2.3 Log Message: Virgin import of a trimmed down GNU Grep 2.3. It is being re-imported here, to keep our long source change history with this source continuous. src/contrib/grep will be deleted some time in the very near future. Status: Vendor Tag: FSF Release Tags: grep_2_3 N grep/README No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 11:19: 1 1999 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id 3A20D153BA; Thu, 30 Dec 1999 11:18:56 -0800 (PST) (envelope-from billf@chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id B28AB1C59; Thu, 30 Dec 1999 14:18:02 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by jade.chc-chimes.com (Postfix) with ESMTP id AF48E3843; Thu, 30 Dec 1999 14:18:02 -0500 (EST) Date: Thu, 30 Dec 1999 14:18:02 -0500 (EST) From: Bill Fumerola To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: grep - Imported sources In-Reply-To: <199912301913.LAA51196@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 Thu, 30 Dec 1999, Ruslan Ermilov wrote: > ru 1999/12/30 11:13:55 PST > > grep - Imported sources > Update of /home/ncvs/grep This probably isn't what you wanted to do. -- - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 11:19:42 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E25B15456; Thu, 30 Dec 1999 11:19:38 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA51634; Thu, 30 Dec 1999 11:19:38 -0800 (PST) (envelope-from ru@FreeBSD.org) Message-Id: <199912301919.LAA51634@freefall.freebsd.org> From: Ruslan Ermilov Date: Thu, 30 Dec 1999 11:19:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/grep - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ru 1999/12/30 11:19:38 PST src/gnu/usr.bin/grep - Imported sources Update of /home/ncvs/src/gnu/usr.bin/grep In directory freefall.freebsd.org:/d/users/ru/grep-2.3 Log Message: Virgin import of a trimmed down GNU Grep 2.3. It is being re-imported here, to keep our long source change history with this source continuous. src/contrib/grep will be deleted some time in the very near future. Status: Vendor Tag: FSF Release Tags: grep_2_3 C src/gnu/usr.bin/grep/README 1 conflicts created by this import. Use the following command to help the merge: cvs checkout -jFSF:yesterday -jFSF src/gnu/usr.bin/grep To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 11:30:30 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B62B153C4; Thu, 30 Dec 1999 11:30:28 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA52372; Thu, 30 Dec 1999 11:30:27 -0800 (PST) (envelope-from ru@FreeBSD.org) Message-Id: <199912301930.LAA52372@freefall.freebsd.org> From: Ruslan Ermilov Date: Thu, 30 Dec 1999 11:30:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/grep README Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ru 1999/12/30 11:30:27 PST Modified files: gnu/usr.bin/grep README Log: This is the stock 2.3 file. Since someone majorly SPAMMED the repository by NOT vendor importing the virgin 2.0 sources, CVS had no idea what to do here. Revision Changes Path 1.5 +5 -7 src/gnu/usr.bin/grep/README To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 12: 4:15 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A4F4150C4; Thu, 30 Dec 1999 12:04:13 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA55076; Thu, 30 Dec 1999 12:04:13 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912302004.MAA55076@freefall.freebsd.org> From: Peter Wemm Date: Thu, 30 Dec 1999 12:04:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/isa mss.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/30 12:04:12 PST Modified files: sys/dev/sound/isa mss.c Log: Attach the CS4610 PCI / CS4239 setup in isa compatability mode as CSC0100. The PCI component is non-AC97 apparently. PR: 15632 Submitted by: gibbs Revision Changes Path 1.41 +3 -1 src/sys/dev/sound/isa/mss.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 12: 7:24 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E3F3815409; Thu, 30 Dec 1999 12:07:21 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA55348; Thu, 30 Dec 1999 12:07:21 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <199912302007.MAA55348@freefall.freebsd.org> From: Peter Wemm Date: Thu, 30 Dec 1999 12:07:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/isa joy.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1999/12/30 12:07:21 PST Modified files: sys/isa joy.c Log: Recognize the CSC0101 ID for the Thinkpad series. PR: 15633 Submitted by: gibbs Revision Changes Path 1.37 +2 -1 src/sys/isa/joy.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 12:41:39 1999 Delivered-To: cvs-all@freebsd.org Received: from florence.pavilion.net (florence.pavilion.net [212.74.0.25]) by hub.freebsd.org (Postfix) with ESMTP id E2102153E3; Thu, 30 Dec 1999 12:41:26 -0800 (PST) (envelope-from joe@florence.pavilion.net) Received: (from joe@localhost) by florence.pavilion.net (8.9.3/8.8.8) id UAA35782; Thu, 30 Dec 1999 20:41:12 GMT (envelope-from joe) Date: Thu, 30 Dec 1999 20:41:12 +0000 From: Josef Karthauser To: Warner Losh Cc: Yoshinobu Inoue , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if.c Message-ID: <19991230204112.B35536@florence.pavilion.net> References: <19991230185341.A9341@florence.pavilion.net> <199912301829.KAA47533@freefall.freebsd.org> <19991230185341.A9341@florence.pavilion.net> <199912301902.MAA11927@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: <199912301902.MAA11927@harmony.village.org> X-NCC-RegID: uk.pavilion Organisation: Pavilion Internet plc, Lees House, 21-23 Dyke Road, Brighton, England Phone: +44-845-333-5000 Fax: +44-845-333-5001 Mobile: +44-403-596893 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Thu, Dec 30, 1999 at 12:02:13PM -0700, Warner Losh wrote: > In message <19991230185341.A9341@florence.pavilion.net> Josef > Karthauser writes: > : Does this fix PR#kern/15742? > > Yes. It also makes kernels w/o INET compile again. Way good... thanks guys. Joe -- Josef Karthauser FreeBSD: Take the red pill and we'll show you just how Technical Manager deep the rabbit hole goes. (http://www.uk.freebsd.org) Pavilion Internet plc. [joe@pavilion.net, joe@freebsd.org, joe@tao.org.uk] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 13: 9:56 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 77A3A153BA; Thu, 30 Dec 1999 13:09:54 -0800 (PST) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA59913; Thu, 30 Dec 1999 13:09:54 -0800 (PST) (envelope-from joe@FreeBSD.org) Message-Id: <199912302109.NAA59913@freefall.freebsd.org> From: Josef Karthauser Date: Thu, 30 Dec 1999 13:09:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/postfix/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk joe 1999/12/30 13:09:53 PST Modified files: mail/postfix/files md5 Log: Upgrade the postfix port from 19990906-pl02 to 19990906-pl09. PR: ports/15544 Submitted by: khetan@freebsd.os.org.za Revision Changes Path 1.4 +1 -1 ports/mail/postfix/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 Dec 30 13:16:37 1999 Delivered-To: cvs-all@freebsd.org Received: from florence.pavilion.net (florence.pavilion.net [212.74.0.25]) by hub.freebsd.org (Postfix) with ESMTP id 5DF0115071; Thu, 30 Dec 1999 13:16:28 -0800 (PST) (envelope-from joe@florence.pavilion.net) Received: (from joe@localhost) by florence.pavilion.net (8.9.3/8.8.8) id VAA39129; Thu, 30 Dec 1999 21:16:26 GMT (envelope-from joe) Date: Thu, 30 Dec 1999 21:16:26 +0000 From: Josef Karthauser To: Josef Karthauser Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/mail/postfix/files md5 Message-ID: <19991230211626.C35536@florence.pavilion.net> References: <199912302109.NAA59913@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: <199912302109.NAA59913@freefall.freebsd.org> X-NCC-RegID: uk.pavilion Organisation: Pavilion Internet plc, Lees House, 21-23 Dyke Road, Brighton, England Phone: +44-845-333-5000 Fax: +44-845-333-5001 Mobile: +44-403-596893 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Thu, Dec 30, 1999 at 01:09:53PM -0800, Josef Karthauser wrote: > joe 1999/12/30 13:09:53 PST > > Modified files: > mail/postfix/files md5 > Log: > Upgrade the postfix port from 19990906-pl02 to 19990906-pl09. > > PR: ports/15544 > Submitted by: khetan@freebsd.os.org.za > > Revision Changes Path > 1.4 +1 -1 ports/mail/postfix/files/md5 Also: 1.10 +3 -3 ports/mail/postfix/Makefile This didn't get logged due to net-lag and hesitation between the two commits (I didn't know the first had happened.) Joe -- Josef Karthauser FreeBSD: Take the red pill and we'll show you just how Technical Manager deep the rabbit hole goes. (http://www.uk.freebsd.org) Pavilion Internet plc. [joe@pavilion.net, joe@freebsd.org, joe@tao.org.uk] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 14: 6:55 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9C5BA153A9; Thu, 30 Dec 1999 14:06:53 -0800 (PST) (envelope-from nik@FreeBSD.org) Received: (from nik@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA64422; Thu, 30 Dec 1999 14:06:53 -0800 (PST) (envelope-from nik@FreeBSD.org) Message-Id: <199912302206.OAA64422@freefall.freebsd.org> From: Nik Clayton Date: Thu, 30 Dec 1999 14:06:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/internals chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nik 1999/12/30 14:06:52 PST Modified files: en_US.ISO_8859-1/books/handbook/internals chapter.sgml Log: Remove PHK's existing documentation about the boot process (out of date) and refer the reader to boot(8) and loader(8). Reviewed by: phk Revision Changes Path 1.15 +3 -226 doc/en_US.ISO_8859-1/books/handbook/internals/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 14:15:45 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D454E1545C; Thu, 30 Dec 1999 14:15:42 -0800 (PST) (envelope-from rse@FreeBSD.org) Received: (from rse@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA65125; Thu, 30 Dec 1999 14:15:42 -0800 (PST) (envelope-from rse@FreeBSD.org) Message-Id: <199912302215.OAA65125@freefall.freebsd.org> From: "Ralf S. Engelschall" Date: Thu, 30 Dec 1999 14:15:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/pth-devel Makefile ports/devel/pth-devel/files md5 ports/devel/pth-devel/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rse 1999/12/30 14:15:37 PST Modified files: devel/pth-devel Makefile devel/pth-devel/files md5 devel/pth-devel/pkg DESCR Log: Upgrade Pth scratch port from Pth 1.3a1 to 1.3a2 (ALPHA VERSION) Revision Changes Path 1.18 +3 -3 ports/devel/pth-devel/Makefile 1.14 +1 -1 ports/devel/pth-devel/files/md5 1.4 +1 -3 ports/devel/pth-devel/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 14:31:34 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 69ECB15494; Thu, 30 Dec 1999 14:31:28 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA66180; Thu, 30 Dec 1999 14:31:28 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912302231.OAA66180@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Thu, 30 Dec 1999 14:31:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/gtkgraph Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/30 14:31:27 PST Modified files: graphics/gtkgraph Makefile Log: Remove unused variable from CONFIGURE_ENV Revision Changes Path 1.5 +1 -2 ports/graphics/gtkgraph/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 14:43: 2 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 70B7314C11; Thu, 30 Dec 1999 14:43:00 -0800 (PST) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA66969; Thu, 30 Dec 1999 14:43:00 -0800 (PST) (envelope-from asami@FreeBSD.org) Message-Id: <199912302243.OAA66969@freefall.freebsd.org> From: Satoshi Asami Date: Thu, 30 Dec 1999 14:42:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/XFree86/pkg PLIST.stripped Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1999/12/30 14:42:59 PST Modified files: x11/XFree86/pkg PLIST.stripped Log: Add missing libraries. Revision Changes Path 1.6 +2 -0 ports/x11/XFree86/pkg/PLIST.stripped To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 14:53:19 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 12FD0153A4; Thu, 30 Dec 1999 14:53:17 -0800 (PST) (envelope-from nik@FreeBSD.org) Received: (from nik@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA67476; Thu, 30 Dec 1999 14:53:16 -0800 (PST) (envelope-from nik@FreeBSD.org) Message-Id: <199912302253.OAA67476@freefall.freebsd.org> From: Nik Clayton Date: Thu, 30 Dec 1999 14:53:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/docproj Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nik 1999/12/30 14:53:16 PST Modified files: textproc/docproj Makefile Log: Explicitly depend on the catalog file created by the textproc/docbook port, and not just the directory. This should *really* fix the bug I thought I'd fixed in 1.18. Revision Changes Path 1.20 +2 -2 ports/textproc/docproj/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 14:56:12 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E1B6414D2F; Thu, 30 Dec 1999 14:56:09 -0800 (PST) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA67677; Thu, 30 Dec 1999 14:56:09 -0800 (PST) (envelope-from asami@FreeBSD.org) Message-Id: <199912302256.OAA67677@freefall.freebsd.org> From: Satoshi Asami Date: Thu, 30 Dec 1999 14:56:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/gnats Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk asami 1999/12/30 14:56:09 PST Modified files: databases/gnats Makefile Log: The second argument to install-info is the dir file, not the directory. :) Found by: obento Revision Changes Path 1.27 +3 -3 ports/databases/gnats/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 15:56: 5 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E5C914F30; Thu, 30 Dec 1999 15:56:03 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA71734; Thu, 30 Dec 1999 15:56:02 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912302356.PAA71734@freefall.freebsd.org> From: Steve Price Date: Thu, 30 Dec 1999 15:56:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/benchmarks/polygraph Makefile ports/benchmarks/polygraph/files md5 ports/benchmarks/polygraph/patches patch-aa patch-ab patch-ac patch-ad ports/benchmarks/polygraph/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/30 15:56:02 PST Modified files: benchmarks/polygraph Makefile benchmarks/polygraph/files md5 benchmarks/polygraph/pkg PLIST Removed files: benchmarks/polygraph/patches patch-aa patch-ab patch-ac patch-ad Log: Update to version 2.2.7. PR: 15572 Submitted by: maintainer Revision Changes Path 1.5 +22 -21 ports/benchmarks/polygraph/Makefile 1.4 +1 -1 ports/benchmarks/polygraph/files/md5 1.3 +7 -0 ports/benchmarks/polygraph/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 18: 0: 6 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E80F014D60; Thu, 30 Dec 1999 18:00:04 -0800 (PST) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA78662; Thu, 30 Dec 1999 18:00:04 -0800 (PST) (envelope-from cpiazza@FreeBSD.org) Message-Id: <199912310200.SAA78662@freefall.freebsd.org> From: Chris Piazza Date: Thu, 30 Dec 1999 18:00:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/aumix Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk cpiazza 1999/12/30 18:00:04 PST Modified files: audio/aumix Makefile Log: Fix a path in one of the MASTER_SITES PR: 15780 Submitted by: Trevor Johnson Revision Changes Path 1.15 +2 -2 ports/audio/aumix/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 18: 8:41 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CD56114D0A; Thu, 30 Dec 1999 18:08:38 -0800 (PST) (envelope-from chris@FreeBSD.org) Received: (from chris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA79479; Thu, 30 Dec 1999 18:08:38 -0800 (PST) (envelope-from chris@FreeBSD.org) Message-Id: <199912310208.SAA79479@freefall.freebsd.org> From: Chris Costello Date: Thu, 30 Dec 1999 18:08:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 sysctl.conf.5 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk chris 1999/12/30 18:08:38 PST Modified files: share/man/man5 Makefile Added files: share/man/man5 sysctl.conf.5 Log: Add and active the manual page for /etc/sysctl.conf. Revision Changes Path 1.26 +2 -2 src/share/man/man5/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 18:10:58 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 23C34153FA; Thu, 30 Dec 1999 18:10:56 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA79811; Thu, 30 Dec 1999 18:10:55 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912310210.SAA79811@freefall.freebsd.org> From: Steve Price Date: Thu, 30 Dec 1999 18:10:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/shells/ksh93 Makefile ports/shells/ksh93/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/30 18:10:55 PST Modified files: shells/ksh93 Makefile shells/ksh93/pkg PLIST Log: Make sure we add ksh93 to /etc/shells. PR: 15788 Submitted by: maintainer Revision Changes Path 1.2 +8 -1 ports/shells/ksh93/Makefile 1.2 +2 -0 ports/shells/ksh93/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 18:11:42 1999 Delivered-To: cvs-all@freebsd.org Received: from mta2.rcsntx.swbell.net (mta2.rcsntx.swbell.net [151.164.30.26]) by hub.freebsd.org (Postfix) with ESMTP id 7A19115467; Thu, 30 Dec 1999 18:11:38 -0800 (PST) (envelope-from chris@holly.dyndns.org) Received: from holly.dyndns.org ([216.62.157.60]) by mta2.rcsntx.swbell.net (Sun Internet Mail Server sims.3.5.1999.09.16.21.57.p8) with ESMTP id <0FNL00DUF231GO@mta2.rcsntx.swbell.net>; Thu, 30 Dec 1999 20:11:26 -0600 (CST) Received: (from chris@localhost) by holly.dyndns.org (8.9.3/8.9.3) id UAA01284; Thu, 30 Dec 1999 20:14:40 -0600 (CST envelope-from chris) X-URL: http://www.FreeBSD.org/~chris/ Date: Thu, 30 Dec 1999 20:14:39 -0600 From: Chris Costello Subject: Re: cvs commit: src/share/man/man5 sysctl.conf.5 Makefile In-reply-to: <199912310208.SAA79479@freefall.freebsd.org> To: Chris Costello Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Reply-To: chris@calldei.com Message-id: <19991230201439.A519@holly.calldei.com> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.4i References: <199912310208.SAA79479@freefall.freebsd.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Thu, Dec 30, 1999, Chris Costello wrote: > Log: > Add and active the manual page for /etc/sysctl.conf. Reviewed by: imp Can I blame this on CVS? -- |Chris Costello |E Pluribus UNIX. `---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 18:13:26 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D037415363; Thu, 30 Dec 1999 18:13:22 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA80134; Thu, 30 Dec 1999 18:13:22 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912310213.SAA80134@freefall.freebsd.org> From: Steve Price Date: Thu, 30 Dec 1999 18:13:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/p5-HTML-Parser Makefile ports/www/p5-HTML-Parser/files md5 ports/www/p5-HTML-Parser/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/30 18:13:22 PST Modified files: www/p5-HTML-Parser Makefile www/p5-HTML-Parser/files md5 www/p5-HTML-Parser/pkg PLIST Log: Update to version 3.02. PR: 15786 Submitted by: Igor Vinokurov Revision Changes Path 1.13 +4 -4 ports/www/p5-HTML-Parser/Makefile 1.8 +1 -1 ports/www/p5-HTML-Parser/files/md5 1.7 +9 -7 ports/www/p5-HTML-Parser/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 18:15:39 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F08315363; Thu, 30 Dec 1999 18:15:37 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA80419; Thu, 30 Dec 1999 18:15:36 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912310215.SAA80419@freefall.freebsd.org> From: Steve Price Date: Thu, 30 Dec 1999 18:15:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/quotes Makefile ports/misc/quotes/files md5 ports/misc/quotes/pkg COMMENT DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/30 18:15:36 PST Modified files: misc/quotes Makefile misc/quotes/files md5 misc/quotes/pkg COMMENT DESCR Log: Update to version 1.5.1. PR: 15774 Submitted by: Will Andrews Revision Changes Path 1.5 +7 -16 ports/misc/quotes/Makefile 1.3 +1 -1 ports/misc/quotes/files/md5 1.3 +1 -1 ports/misc/quotes/pkg/COMMENT 1.3 +6 -4 ports/misc/quotes/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 18:27: 8 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3143615481; Thu, 30 Dec 1999 18:27:06 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA81610; Thu, 30 Dec 1999 18:27:06 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912310227.SAA81610@freefall.freebsd.org> From: Steve Price Date: Thu, 30 Dec 1999 18:27:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp Makefile ports/ftp/sftp Makefile ports/ftp/sftp/files md5 ports/ftp/sftp/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/30 18:27:05 PST Modified files: ftp Makefile Added files: ftp/sftp Makefile ftp/sftp/files md5 ftp/sftp/pkg COMMENT DESCR PLIST Log: Adding sftp version 0.5. An ftp(1) replacement that runs over an ssh tunnel. PR: 15777 Submitted by: Cy Shubert Revision Changes Path 1.5 +2 -1 ports/ftp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 18:28: 5 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 01C1115365; Thu, 30 Dec 1999 18:28:03 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA81664; Thu, 30 Dec 1999 18:28:02 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912310228.SAA81664@freefall.freebsd.org> From: Steve Price Date: Thu, 30 Dec 1999 18:28:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/30 18:28:02 PST Modified files: . modules Log: sftp -> ports/ftp/sftp Revision Changes Path 1.727 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 20: 1:55 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 211151546A; Thu, 30 Dec 1999 20:01:53 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA88294; Thu, 30 Dec 1999 20:01:53 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912310401.UAA88294@freefall.freebsd.org> From: Steve Price Date: Thu, 30 Dec 1999 20:01:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/linux-realplayer Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/30 20:01:52 PST Modified files: audio/linux-realplayer Makefile Log: Update to reflect new MASTER_SITE. PR: 15042 Submitted by: Dominik Rothert Revision Changes Path 1.10 +2 -2 ports/audio/linux-realplayer/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 22:49: 7 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C826514CF0; Thu, 30 Dec 1999 22:49:04 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA98405; Thu, 30 Dec 1999 22:49:04 -0800 (PST) (envelope-from billf@FreeBSD.org) Message-Id: <199912310649.WAA98405@freefall.freebsd.org> From: Bill Fumerola Date: Thu, 30 Dec 1999 22:49:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/delay/files md5 ports/misc/delay/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1999/12/30 22:49:04 PST Modified files: misc/delay/files md5 Added files: misc/delay/patches patch-aa Log: Upgrade to 1.4 patch-aa: fix an incorrect usage of exit(), while I'm here use correct headers. Revision Changes Path 1.3 +1 -1 ports/misc/delay/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 Dec 30 22:50:12 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 21C59156B5; Thu, 30 Dec 1999 22:49:53 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA98454; Thu, 30 Dec 1999 22:49:52 -0800 (PST) (envelope-from billf@FreeBSD.org) Message-Id: <199912310649.WAA98454@freefall.freebsd.org> From: Bill Fumerola Date: Thu, 30 Dec 1999 22:49:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/delay Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1999/12/30 22:49:52 PST Modified files: misc/delay Makefile Log: See ports/misc/delay/files/md5:1.3 Revision Changes Path 1.6 +3 -3 ports/misc/delay/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Dec 30 23:22:28 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D50C314A19; Thu, 30 Dec 1999 23:22:25 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA99917; Thu, 30 Dec 1999 23:22:25 -0800 (PST) (envelope-from billf@FreeBSD.org) Message-Id: <199912310722.XAA99917@freefall.freebsd.org> From: Bill Fumerola Date: Thu, 30 Dec 1999 23:22:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci pcic_p.c pcic_p.h pcisupport.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk billf 1999/12/30 23:22:25 PST Modified files: sys/pci pcic_p.c pcic_p.h pcisupport.c Log: Fill in the blanks for some of the Texas Instruments cardbus controllers. Obtained from: NetBSD (syssrc/sys/dev/pci/pcidevs) Revision Changes Path 1.19 +5 -1 src/sys/pci/pcic_p.c 1.10 +3 -1 src/sys/pci/pcic_p.h 1.142 +5 -1 src/sys/pci/pcisupport.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 0: 1:34 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 44A071522E; Fri, 31 Dec 1999 00:01:32 -0800 (PST) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA02297; Fri, 31 Dec 1999 00:01:31 -0800 (PST) (envelope-from ache@FreeBSD.org) Message-Id: <199912310801.AAA02297@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 31 Dec 1999 00:01:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1999/12/31 00:01:31 PST Modified files: . modules Log: Add mailwrapper Revision Changes Path 1.728 +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 Dec 31 0: 3:31 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0EC6514C48; Fri, 31 Dec 1999 00:03:29 -0800 (PST) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA02387; Fri, 31 Dec 1999 00:03:28 -0800 (PST) (envelope-from ache@FreeBSD.org) Message-Id: <199912310803.AAA02387@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 31 Dec 1999 00:03:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/mailwrapper mailwrapper.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1999/12/31 00:03:28 PST Modified files: usr.sbin/mailwrapper mailwrapper.8 Log: /etc -> /etc/mail Revision Changes Path 1.3 +3 -3 src/usr.sbin/mailwrapper/mailwrapper.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 1:56:12 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 81EF715529; Fri, 31 Dec 1999 01:56:09 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA08084; Fri, 31 Dec 1999 01:56:09 -0800 (PST) (envelope-from ru@FreeBSD.org) Message-Id: <199912310956.BAA08084@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 31 Dec 1999 01:56:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/grep config.h getopt1.c savedir.c savedir.h stpcpy.c system.h AUTHORS COPYING Makefile NEWS README dfa.c dfa.h getopt.c getopt.h getpagesize.h grep.1 grep.c grep.h kwset.c kwset.h obstack.c obstack.h search.c PROJECTS ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ru 1999/12/31 01:56:09 PST Modified files: (Branch: RELENG_3) gnu/usr.bin/grep AUTHORS COPYING Makefile NEWS README dfa.c dfa.h getopt.c getopt.h getpagesize.h grep.1 grep.c grep.h kwset.c kwset.h obstack.c obstack.h search.c Added files: (Branch: RELENG_3) gnu/usr.bin/grep config.h getopt1.c savedir.c savedir.h stpcpy.c system.h gnu/usr.bin/grep/doc Makefile grep.texi version.texi gnu/usr.bin/grep/tests bre.awk bre.sh bre.tests empty.sh ere.awk ere.sh ere.tests khadafy.sh options.sh spencer1.awk spencer1.sh spencer1.tests status.sh warning.sh Removed files: (Branch: RELENG_3) gnu/usr.bin/grep PROJECTS gnu/usr.bin/grep/tests check.sh scriptgen.awk spencer.tests Log: MFC: Update to GNU grep 2.3 Revision Changes Path 1.1.12.1 +13 -1 src/gnu/usr.bin/grep/AUTHORS 1.1.1.1.12.1 +6 -5 src/gnu/usr.bin/grep/COPYING 1.14.2.3 +36 -20 src/gnu/usr.bin/grep/Makefile 1.1.12.1 +64 -0 src/gnu/usr.bin/grep/NEWS 1.2.12.1 +5 -7 src/gnu/usr.bin/grep/README 1.7.2.1 +264 -167 src/gnu/usr.bin/grep/dfa.c 1.2.12.1 +32 -19 src/gnu/usr.bin/grep/dfa.h 1.2.12.1 +444 -173 src/gnu/usr.bin/grep/getopt.c 1.2.12.1 +23 -17 src/gnu/usr.bin/grep/getopt.h 1.1.12.1 +39 -38 src/gnu/usr.bin/grep/getpagesize.h 1.6.2.1 +182 -95 src/gnu/usr.bin/grep/grep.1 1.11.2.1 +888 -547 src/gnu/usr.bin/grep/grep.c 1.1.12.1 +17 -20 src/gnu/usr.bin/grep/grep.h 1.2.8.2 +36 -39 src/gnu/usr.bin/grep/kwset.c 1.1.12.1 +13 -23 src/gnu/usr.bin/grep/kwset.h 1.1.12.1 +183 -42 src/gnu/usr.bin/grep/obstack.c 1.2.8.1 +175 -66 src/gnu/usr.bin/grep/obstack.h 1.5.2.1 +35 -74 src/gnu/usr.bin/grep/search.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 4:20:20 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0827C1555F; Fri, 31 Dec 1999 04:20:19 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA16420; Fri, 31 Dec 1999 04:20:18 -0800 (PST) (envelope-from ru@FreeBSD.org) Message-Id: <199912311220.EAA16420@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 31 Dec 1999 04:20:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/whois whois.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ru 1999/12/31 04:20:18 PST Modified files: usr.bin/whois whois.1 Log: Fix typos Revision Changes Path 1.13 +3 -3 src/usr.bin/whois/whois.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 4:21: 0 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7223314D6B; Fri, 31 Dec 1999 04:20:58 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA16493; Fri, 31 Dec 1999 04:20:58 -0800 (PST) (envelope-from ru@FreeBSD.org) Message-Id: <199912311220.EAA16493@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 31 Dec 1999 04:20:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/whois whois.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ru 1999/12/31 04:20:58 PST Modified files: (Branch: RELENG_3) usr.bin/whois whois.1 Log: MFC: Fix typos Revision Changes Path 1.4.2.4 +3 -3 src/usr.bin/whois/whois.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 6:55:58 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E389714E61; Fri, 31 Dec 1999 06:55:55 -0800 (PST) (envelope-from markm@FreeBSD.org) Received: (from markm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA78707; Fri, 31 Dec 1999 06:55:55 -0800 (PST) (envelope-from markm@FreeBSD.org) Message-Id: <199912311455.GAA78707@freefall.freebsd.org> From: Mark Murray Date: Fri, 31 Dec 1999 06:55:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/heimdal/files md5 ports/security/heimdal/patches patch-aa patch-ab ports/security/heimdal/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1999/12/31 06:55:55 PST Modified files: security/heimdal/files md5 security/heimdal/pkg PLIST Removed files: security/heimdal/patches patch-aa patch-ab Log: Update to Heimdal 0.2i. No response from: MAINTAINER Revision Changes Path 1.4 +1 -1 ports/security/heimdal/files/md5 1.4 +12 -5 ports/security/heimdal/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 Dec 31 7:40:30 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4774515327; Fri, 31 Dec 1999 07:40:28 -0800 (PST) (envelope-from markm@FreeBSD.org) Received: (from markm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA80611; Fri, 31 Dec 1999 07:40:28 -0800 (PST) (envelope-from markm@FreeBSD.org) Message-Id: <199912311540.HAA80611@freefall.freebsd.org> From: Mark Murray Date: Fri, 31 Dec 1999 07:40:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/heimdal Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1999/12/31 07:40:28 PST Modified files: security/heimdal Makefile Log: CVS is starting to really piss me off. This was supposed to be part of the same commit that: Upgrade Heimdal to 0.2j No response from: MAINTAINER Revision Changes Path 1.6 +3 -4 ports/security/heimdal/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 12: 7:47 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 90D7C14F1F; Fri, 31 Dec 1999 12:07:45 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA93330; Fri, 31 Dec 1999 12:07:45 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912312007.MAA93330@freefall.freebsd.org> From: Steve Price Date: Fri, 31 Dec 1999 12:07:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/checkbot Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/31 12:07:39 PST Modified files: www/checkbot Makefile Log: Add a missing dependency on the p5-URI port. PR: 15794 Submitted by: Will Andrews Revision Changes Path 1.15 +3 -2 ports/www/checkbot/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 12: 9:23 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B118A14F1F; Fri, 31 Dec 1999 12:09:20 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA93594; Fri, 31 Dec 1999 12:09:20 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912312009.MAA93594@freefall.freebsd.org> From: Steve Price Date: Fri, 31 Dec 1999 12:09:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/jsdk Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/31 12:09:19 PST Modified files: java/jsdk Makefile Log: Update location of file on MASTER_SITE. PR: 15793 Submitted by: Jose Marques Revision Changes Path 1.8 +9 -8 ports/java/jsdk/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 12:12:49 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 02D9015488; Fri, 31 Dec 1999 12:12:48 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA94009; Fri, 31 Dec 1999 12:12:47 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912312012.MAA94009@freefall.freebsd.org> From: Steve Price Date: Fri, 31 Dec 1999 12:12:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/wmmon/patches patch-ad patch-ae Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/31 12:12:47 PST Modified files: sysutils/wmmon/patches patch-ad Removed files: sysutils/wmmon/patches patch-ae Log: Fix a security hole where a user can obtain kmem group privs. Note patch-ad and patch-ae both patches the same file, so I combined them and removed patch-ae. The maintainer might want to look into patch-ad some more since patch-ae did the same as patch-ad one one had the lines before the offending block of code and one after. I left both sets since it didn't appear to affect operation any. PR: 15790 Submitted by: maintainer Revision Changes Path 1.3 +31 -16 ports/sysutils/wmmon/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 Dec 31 12:14:58 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D0FCC155B3; Fri, 31 Dec 1999 12:14:56 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA94285; Fri, 31 Dec 1999 12:14:56 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912312014.MAA94285@freefall.freebsd.org> From: Steve Price Date: Fri, 31 Dec 1999 12:14:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/staroffice5 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/31 12:14:56 PST Modified files: editors/staroffice5 Makefile Log: Add another distribution site for patches and changes the default for the TEMPDIR variable. PR: 15764 Submitted by: maintainer Revision Changes Path 1.6 +11 -9 ports/editors/staroffice5/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 12:16:43 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 600CB151F4; Fri, 31 Dec 1999 12:16:40 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA94607; Fri, 31 Dec 1999 12:16:40 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912312016.MAA94607@freefall.freebsd.org> From: Steve Price Date: Fri, 31 Dec 1999 12:16:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/downloader Makefile ports/ftp/downloader/files md5 ports/ftp/downloader/patches patch-ag patch-ah patch-ai patch-aj patch-ak patch-al patch-am patch-an patch-ao patch-aa patch-ab patch-ac patch-ad patch-ae patch-af ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/31 12:16:40 PST Modified files: ftp/downloader Makefile ftp/downloader/files md5 ftp/downloader/patches patch-aa patch-ab patch-ac patch-ad patch-ae patch-af ftp/downloader/pkg PLIST Added files: ftp/downloader/patches patch-ag patch-ah patch-ai patch-aj patch-ak patch-al patch-am patch-an patch-ao Log: Update to version 1.07.1. PR: 15094 Submitted by: Mario Ferreira Revision Changes Path 1.9 +4 -7 ports/ftp/downloader/Makefile 1.5 +1 -1 ports/ftp/downloader/files/md5 1.4 +9 -8 ports/ftp/downloader/patches/patch-aa 1.3 +17 -10 ports/ftp/downloader/patches/patch-ab 1.4 +32 -24 ports/ftp/downloader/patches/patch-ac 1.5 +25 -23 ports/ftp/downloader/patches/patch-ad 1.5 +39 -13 ports/ftp/downloader/patches/patch-ae 1.4 +53 -45 ports/ftp/downloader/patches/patch-af 1.2 +11 -0 ports/ftp/downloader/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 Dec 31 12:22:12 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 37F99151F4; Fri, 31 Dec 1999 12:22:10 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA95077; Fri, 31 Dec 1999 12:22:10 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912312022.MAA95077@freefall.freebsd.org> From: Steve Price Date: Fri, 31 Dec 1999 12:22:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java Makefile ports/java/cos Makefile ports/java/cos/files md5 ports/java/cos/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/31 12:22:09 PST Modified files: java Makefile Added files: java/cos Makefile java/cos/files md5 java/cos/pkg COMMENT DESCR PLIST Log: Adding cos version 1.0. The O'Reilly package of utility classes for servelt developers. PR: 12522 Submitted by: Jose Marques Revision Changes Path 1.9 +2 -1 ports/java/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 12:23: 3 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6483414C19; Fri, 31 Dec 1999 12:23:02 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA95138; Fri, 31 Dec 1999 12:23:02 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912312023.MAA95138@freefall.freebsd.org> From: Steve Price Date: Fri, 31 Dec 1999 12:23:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports LEGAL Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/31 12:23:02 PST Modified files: . LEGAL Log: Add the cos port since it has special that apply to commercial use. Revision Changes Path 1.155 +3 -1 ports/LEGAL To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 12:26:37 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 04DA2155F5; Fri, 31 Dec 1999 12:26:29 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA95488; Fri, 31 Dec 1999 12:26:28 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912312026.MAA95488@freefall.freebsd.org> From: Steve Price Date: Fri, 31 Dec 1999 12:26:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www Makefile ports/www/gnujsp Makefile ports/www/gnujsp/files md5 ports/www/gnujsp/pkg COMMENT DESCR MESSAGE PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/31 12:26:28 PST Modified files: www Makefile Added files: www/gnujsp Makefile www/gnujsp/files md5 www/gnujsp/pkg COMMENT DESCR MESSAGE PLIST Log: Adding gnujsp version 0.9.10. An implementation of Sun's Java Server Pages. PR: 12656 Submitted by: Palle Girgensohn Revision Changes Path 1.176 +2 -1 ports/www/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 12:27: 9 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B5911579E; Fri, 31 Dec 1999 12:27:07 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA95536; Fri, 31 Dec 1999 12:27:07 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912312027.MAA95536@freefall.freebsd.org> From: Steve Price Date: Fri, 31 Dec 1999 12:27:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/gnujsp Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/31 12:27:06 PST Modified files: www/gnujsp Makefile Log: Spell maintainer's email address correctly. Revision Changes Path 1.2 +2 -2 ports/www/gnujsp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 12:28:10 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4AA8414D6E; Fri, 31 Dec 1999 12:27:55 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA95595; Fri, 31 Dec 1999 12:27:55 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912312027.MAA95595@freefall.freebsd.org> From: Steve Price Date: Fri, 31 Dec 1999 12:27:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/31 12:27:55 PST Modified files: . modules Log: cos -> ports/java/cos gnujsp -> ports/www/gnujsp Revision Changes Path 1.729 +3 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 12:32:42 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F49F14E52; Fri, 31 Dec 1999 12:32:40 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA95868; Fri, 31 Dec 1999 12:32:40 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912312032.MAA95868@freefall.freebsd.org> From: Steve Price Date: Fri, 31 Dec 1999 12:32:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/joe/patches patch-ad Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/31 12:32:39 PST Modified files: editors/joe/patches patch-ad Log: Don't coredump when reading in a new file using ^K-R. PR: 15741 Submitted by: Sergey N. Voronkov Reviewed by: maintainer Revision Changes Path 1.3 +14 -6 ports/editors/joe/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 Dec 31 12:34:44 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A1BF415591; Fri, 31 Dec 1999 12:34:42 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA96177; Fri, 31 Dec 1999 12:34:42 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912312034.MAA96177@freefall.freebsd.org> From: Steve Price Date: Fri, 31 Dec 1999 12:34:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/erlang Makefile ports/lang/erlang/files md5 ports/lang/erlang/patches patch-aa ports/lang/erlang/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/31 12:34:41 PST Modified files: lang/erlang Makefile lang/erlang/files md5 lang/erlang/pkg PLIST Added files: lang/erlang/patches patch-aa Log: Update to version 6.1.0. PR: 15791 Submitted by: maintainer Revision Changes Path 1.7 +117 -33 ports/lang/erlang/Makefile 1.3 +9 -1 ports/lang/erlang/files/md5 1.3 +4209 -618 ports/lang/erlang/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 Dec 31 13:27: 5 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 24CF214F05; Fri, 31 Dec 1999 13:27:04 -0800 (PST) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA98771; Fri, 31 Dec 1999 13:27:03 -0800 (PST) (envelope-from hoek@FreeBSD.org) Message-Id: <199912312127.NAA98771@freefall.freebsd.org> From: Tim Vanderhoek Date: Fri, 31 Dec 1999 13:27:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/string strtok.3 strrchr.3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1999/12/31 13:27:03 PST Modified files: lib/libc/string strtok.3 strrchr.3 Log: Backout the prev. commit. It's a bad idea to make-up terms. I believe there is no good solution here. Set-on-the-straight-and-narrow by: bde Revision Changes Path 1.10 +3 -3 src/lib/libc/string/strtok.3 1.5 +2 -2 src/lib/libc/string/strrchr.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 13:53:37 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A54915538; Fri, 31 Dec 1999 13:53:36 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA00251; Fri, 31 Dec 1999 13:53:35 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912312153.NAA00251@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Fri, 31 Dec 1999 13:53:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/31 13:53:35 PST Modified files: . modules Log: gnofract4d --> ports/graphics/gnofract4d Revision Changes Path 1.730 +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 Dec 31 13:54:45 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B743155E2; Fri, 31 Dec 1999 13:54:42 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA00309; Fri, 31 Dec 1999 13:54:42 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912312154.NAA00309@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Fri, 31 Dec 1999 13:54:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/gnofract4d - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/31 13:54:36 PST ports/graphics/gnofract4d - Imported sources Update of /home/ncvs/ports/graphics/gnofract4d In directory freefall.freebsd.org:/c/users/jedgar/work/gnofract4d Log Message: Gnofract4D is a weird fractal-generating program written for the GNOME project. But it makes very nice looking fractals. PR: 15797 Submitted by: Will Andrews Status: Vendor Tag: ANDREWS Release Tags: v_1_0 N ports/graphics/gnofract4d/Makefile N ports/graphics/gnofract4d/files/md5 N ports/graphics/gnofract4d/pkg/COMMENT N ports/graphics/gnofract4d/pkg/DESCR N ports/graphics/gnofract4d/pkg/PLIST N ports/graphics/gnofract4d/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 Dec 31 13:55:48 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EF9A214E95; Fri, 31 Dec 1999 13:55:46 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA00369; Fri, 31 Dec 1999 13:55:46 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912312155.NAA00369@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Fri, 31 Dec 1999 13:55:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/31 13:55:46 PST Modified files: graphics Makefile Log: Activate gnofract4d Revision Changes Path 1.167 +2 -1 ports/graphics/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 14:40:35 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6BB9715062; Fri, 31 Dec 1999 14:40:29 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA03170; Fri, 31 Dec 1999 14:40:29 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912312240.OAA03170@freefall.freebsd.org> From: Steve Price Date: Fri, 31 Dec 1999 14:40:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mbone/speak_freely Makefile ports/mbone/speak_freely/files md5 ports/mbone/speak_freely/patches patch-aa patch-ac patch-ad patch-ae patch-ab Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/31 14:40:28 PST Modified files: mbone/speak_freely Makefile mbone/speak_freely/files md5 mbone/speak_freely/patches patch-aa patch-ac patch-ad patch-ae Removed files: mbone/speak_freely/patches patch-ab Log: Update to version 7.1. PR: 14838 Submitted by: Thomas V. Crimi Revision Changes Path 1.10 +4 -4 ports/mbone/speak_freely/Makefile 1.4 +1 -1 ports/mbone/speak_freely/files/md5 1.4 +63 -191 ports/mbone/speak_freely/patches/patch-aa 1.3 +66 -17 ports/mbone/speak_freely/patches/patch-ac 1.2 +11 -74 ports/mbone/speak_freely/patches/patch-ad 1.4 +12 -124 ports/mbone/speak_freely/patches/patch-ae To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 14:42:43 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0D5CF14FBE; Fri, 31 Dec 1999 14:42:42 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA03442; Fri, 31 Dec 1999 14:42:41 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912312242.OAA03442@freefall.freebsd.org> From: Steve Price Date: Fri, 31 Dec 1999 14:42:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/rdist6/patches patch-ag Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/31 14:42:41 PST Modified files: net/rdist6/patches patch-ag Log: Tell the build process that we have paths.h so we get the correct path to sendmail compiled into the rdist6 binary. PR: 14548 Revision Changes Path 1.2 +14 -4 ports/net/rdist6/patches/patch-ag To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 14:45:30 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BE6911565D; Fri, 31 Dec 1999 14:45:09 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA03651; Fri, 31 Dec 1999 14:45:09 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <199912312245.OAA03651@freefall.freebsd.org> From: Steve Price Date: Fri, 31 Dec 1999 14:45:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/screen/patches patch-ad patch-ae Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/31 14:45:09 PST Added files: misc/screen/patches patch-ad patch-ae Log: Use a long for the load average and include netinet/in.h before arpa/inet.h to avoid a couple of compiler warnings. PR: 14443 Submitted by: Valentin Nechayev To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 14:52:48 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 140DF1508C; Fri, 31 Dec 1999 14:52:47 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA04082; Fri, 31 Dec 1999 14:52:47 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912312252.OAA04082@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Fri, 31 Dec 1999 14:52:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/rfc/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/31 14:52:46 PST Modified files: misc/rfc/files md5 Log: Correct MD5 checksum Revision Changes Path 1.5 +1 -1 ports/misc/rfc/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 Dec 31 15: 8:27 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DBE4814A15; Fri, 31 Dec 1999 15:08:24 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA05078; Fri, 31 Dec 1999 15:08:24 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Message-Id: <199912312308.PAA05078@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Fri, 31 Dec 1999 15:08:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/xenon/patches patch-ad Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jedgar 1999/12/31 15:08:23 PST Modified files: editors/xenon/patches patch-ad Log: Fix invalid cast Found by: bento Revision Changes Path 1.2 +1 -1 ports/editors/xenon/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 Dec 31 16:17:53 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6EDD61564C; Fri, 31 Dec 1999 16:17:51 -0800 (PST) (envelope-from jdp@FreeBSD.org) Received: (from jdp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA07626; Fri, 31 Dec 1999 16:17:50 -0800 (PST) (envelope-from jdp@FreeBSD.org) Message-Id: <200001010017.QAA07626@freefall.freebsd.org> From: John Polstra Date: Fri, 31 Dec 1999 16:17:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/cvsup-bin/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jdp 1999/12/31 16:17:50 PST Modified files: net/cvsup-bin/pkg DESCR Log: Mention that this version has the GUI built into it. Revision Changes Path 1.4 +2 -1 ports/net/cvsup-bin/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 16:20:24 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A28731567B; Fri, 31 Dec 1999 16:20:19 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA07844; Fri, 31 Dec 1999 16:20:19 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <200001010020.QAA07844@freefall.freebsd.org> From: Steve Price Date: Fri, 31 Dec 1999 16:20:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/fhist Makefile ports/devel/fhist/files md5 ports/devel/fhist/patches patch-aa patch-ab patch-ac patch-ad ports/devel/fhist/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/31 16:20:18 PST Modified files: devel Makefile Added files: devel/fhist Makefile devel/fhist/files md5 devel/fhist/patches patch-aa patch-ab patch-ac patch-ad devel/fhist/pkg COMMENT DESCR PLIST Log: Adding fhist version 1.1. Utilities to maintain file history, do file comparisions and merges. PR: 6445 Submitted by: jkoshy Revision Changes Path 1.245 +2 -1 ports/devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 16:21:46 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4FF7414C17; Fri, 31 Dec 1999 16:21:44 -0800 (PST) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA08023; Fri, 31 Dec 1999 16:21:44 -0800 (PST) (envelope-from steve@FreeBSD.org) Message-Id: <200001010021.QAA08023@freefall.freebsd.org> From: Steve Price Date: Fri, 31 Dec 1999 16:21:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1999/12/31 16:21:44 PST Modified files: . modules Log: fhist -> ports/devel/fhist Revision Changes Path 1.731 +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 Dec 31 21:32:56 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E987914FF5; Fri, 31 Dec 1999 21:32:53 -0800 (PST) (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA21269; Fri, 31 Dec 1999 21:32:53 -0800 (PST) (envelope-from vanilla@FreeBSD.org) Message-Id: <200001010532.VAA21269@freefall.freebsd.org> From: "Vanilla I. Shu" Date: Fri, 31 Dec 1999 21:32:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/libghttp Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1999/12/31 21:32:53 PST Modified files: www/libghttp Makefile Log: Correct MASTER_SITE_SUBDIR. Revision Changes Path 1.13 +2 -2 ports/www/libghttp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Dec 31 21:38: 8 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A5BA14EE0; Fri, 31 Dec 1999 21:38:06 -0800 (PST) (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA21436; Fri, 31 Dec 1999 21:38:05 -0800 (PST) (envelope-from vanilla@FreeBSD.org) Message-Id: <200001010538.VAA21436@freefall.freebsd.org> From: "Vanilla I. Shu" Date: Fri, 31 Dec 1999 21:38:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/enlightenment-conf Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1999/12/31 21:38:05 PST Modified files: x11-wm/enlightenment-conf Makefile Log: Fix MASTER_SITES. Revision Changes Path 1.6 +2 -4 ports/x11-wm/enlightenment-conf/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message