From owner-cvs-all Sun Oct 11 00:31:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA27862 for cvs-all-outgoing; Sun, 11 Oct 1998 00:31:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA27854; Sun, 11 Oct 1998 00:31:41 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA14071; Sun, 11 Oct 1998 00:31:38 -0700 (PDT) Date: Sun, 11 Oct 1998 00:31:38 -0700 (PDT) Message-Id: <199810110731.AAA14071@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/audio/kdemultimedia Makefile ports/audio/workman Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/11 00:31:38 PDT Modified files: audio/kdemultimedia Makefile audio/workman Makefile Log: Mark BROKEN for current. Can't find scsi.h Revision Changes Path 1.20 +6 -1 ports/audio/kdemultimedia/Makefile 1.8 +6 -1 ports/audio/workman/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 00:41:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA28514 for cvs-all-outgoing; Sun, 11 Oct 1998 00:41:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA28509; Sun, 11 Oct 1998 00:41:33 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA14216; Sun, 11 Oct 1998 00:41:32 -0700 (PDT) Date: Sun, 11 Oct 1998 00:41:32 -0700 (PDT) Message-Id: <199810110741.AAA14216@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src Makefile.inc1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/11 00:41:32 PDT Modified files: . Makefile.inc1 Log: Comment about libm and libmd being needed for some libraries. Prompted by: bde Also. Don't build & install legacy lkm's when NOLKM has been set. Otherwise it gets built in the src tree rather than obj, because the previous 'make obj' at the start of legacy-build does respect NOLKM. Revision Changes Path 1.30 +7 -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 Sun Oct 11 00:48:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA29189 for cvs-all-outgoing; Sun, 11 Oct 1998 00:48:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au (spinner.netplex.com.au [202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA29174; Sun, 11 Oct 1998 00:48:35 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.9.1/8.9.1/Spinner) with ESMTP id PAA19559; Sun, 11 Oct 1998 15:20:56 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199810110720.PAA19559@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: Bruce Evans cc: bde@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libc/gen popen.c In-reply-to: Your message of "Sun, 11 Oct 1998 16:24:52 +1000." <199810110624.QAA13368@godzilla.zeta.org.au> Date: Sun, 11 Oct 1998 15:20:55 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Bruce Evans wrote: > >> More vfork breakage: vfork is used in about 50 programs in /usr/src. > >> It is misused in all 7 programs that I looked at: > >... > >I suspect this has come about because of a change of implementation in > >exec*(). I suspect they used to do something like: > > > >execl(arg1, arg2) > >{ > > execve(arg1, &arg1, environ); > >} > > > >... but since prototypes has been changed to use malloc etc and build an > >array by sucking in args via va_arg() etc. > > ANSI should tell you that you can't do the above if a correct (varadic) > prototype is in scope. NetBSD has ifdefs to do it anyway on arches where > the varadic args are known to be on the stack. Well, can we do it too? Or move it to the MD part of libc source (eg: libc/i386/gen/execl.c) and the same on other systems that can do it? If we "define" execl*() as not having side effects, it would help. > >execl() > >{ > > int count; > > char **argv; > > > > count = (args by walking through the va_list with va_arg()); > > .. and rest of exec processing.. > > { > > char *newargv[count + 1]; > > This extension (variable length arrays) will be in C9x. I expect C9x > will take longer to become normal than C89 (30 years instead of only > 20? :-(). Heh. Somehow I suspect that language features are going to trickle through much sooner. C++ supports this, doesn't it? > We could just allocate ARG_MAX bytes on the stack. This has the same > problems as alloca() and VLAs - stack memory isn't quite free. It > may be better because it crashes more deterministically. We could use this method as a fallback for systems that we can't pull varadic args off the stack. > Bruce 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 Oct 11 01:14:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA00892 for cvs-all-outgoing; Sun, 11 Oct 1998 01:14:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from nlsystems.com (nlsys.demon.co.uk [158.152.125.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA00865; Sun, 11 Oct 1998 01:14:23 -0700 (PDT) (envelope-from dfr@nlsystems.com) Received: from herring.nlsystems.com (herring.nlsystems.com [10.0.0.2]) by nlsystems.com (8.9.1/8.8.5) with SMTP id JAA14811; Sun, 11 Oct 1998 09:14:01 +0100 (BST) Date: Sun, 11 Oct 1998 09:14:01 +0100 (BST) From: Doug Rabson To: Bruce Evans cc: bde@FreeBSD.ORG, peter@netplex.com.au, cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libc/gen popen.c In-Reply-To: <199810110440.OAA08152@godzilla.zeta.org.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, 11 Oct 1998, Bruce Evans wrote: > More vfork breakage: vfork is used in about 50 programs in /usr/src. > It is misused in all 7 programs that I looked at: > > as cron libdialog mv rcp rcs vipw > > Most of these call execl() from the forked child. cron calls execvp(), > which calls strdup(). Add make to that list. It used to crash 3/4 through a 'make release' on the alpha. I 'fixed' it by fixing a bug in malloc which caused it to use the wrong pagesize for the alpha. -- Doug Rabson Mail: dfr@nlsystems.com Nonlinear Systems Ltd. Phone: +44 181 951 1891 Fax: +44 181 381 1039 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 01:20:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA01652 for cvs-all-outgoing; Sun, 11 Oct 1998 01:20:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from panzer.plutotech.com (panzer.plutotech.com [206.168.67.125]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA01641; Sun, 11 Oct 1998 01:20:22 -0700 (PDT) (envelope-from ken@panzer.plutotech.com) Received: (from ken@localhost) by panzer.plutotech.com (8.9.1/8.8.5) id CAA15330; Sun, 11 Oct 1998 02:20:12 -0600 (MDT) From: "Kenneth D. Merry" Message-Id: <199810110820.CAA15330@panzer.plutotech.com> Subject: Re: cvs commit: ports/audio/kdemultimedia Makefile ports/audio/workman Makefile In-Reply-To: <199810110731.AAA14071@freefall.freebsd.org> from "Justin M. Seger" at "Oct 11, 98 00:31:38 am" To: jseger@FreeBSD.ORG (Justin M. Seger) Date: Sun, 11 Oct 1998 02:20:12 -0600 (MDT) Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL28s (25)] MIME-Version: 1.0 Content-Type: multipart/mixed; boundary=ELM908094012-15065-0_ Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk --ELM908094012-15065-0_ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Justin M. Seger wrote... > jseger 1998/10/11 00:31:38 PDT > > Modified files: > audio/kdemultimedia Makefile > audio/workman Makefile > Log: > Mark BROKEN for current. Can't find scsi.h > > Revision Changes Path > 1.20 +6 -1 ports/audio/kdemultimedia/Makefile > 1.8 +6 -1 ports/audio/workman/Makefile This can probably be fixed. I think it's kscd that breaks the kdemultimedia build. Both workman and kscd (which is supposedly based on workman) use the CD driver's ioctl interface, which hasn't changed in CAM. I tried commenting out the includes of scsi.h and sys/scsiio.h from plat_freebsd.c in the kscd directory, and it compiled just fine. I just tried the same in workman, and it compiles fine as well. I don't have a stable box to test this on, so someone else will have to try it out. IMO, neither program should be including SCSI header files, since they use the ioctl interface to the CD driver. Anyway, patches are attached. They are versus the ports as patched by the ports tree. The workman patch undoes some of the stuff that's done in patch-aa. (The reason I did them like that is just in case you want to make these patches conditional on 3.0. I suppose it's possible that some header pollution in 2.x might be fixed in 3.0, and that's why you don't need the SCSI headers in 3.0. Testing this on a -stable box will tell you what the real scoop is.) Ken -- Kenneth Merry ken@plutotech.com --ELM908094012-15065-0_ Content-Type: text/plain; charset=ISO-8859-1 Content-Disposition: attachment; filename=kscd.diffs.101198 Content-Description: kscd.diffs.101198 Content-Transfer-Encoding: 7bit *** kscd/plat_freebsd.c.orig Sun Oct 11 02:01:53 1998 --- kscd/plat_freebsd.c Sun Oct 11 02:07:48 1998 *************** *** 51,57 **** #include #include #include - #include #ifdef __NetBSD__ --- 51,56 ---- *************** *** 62,70 **** #include "/sys/scsi/scsi_all.h" #include "/sys/scsi/scsi_cd.h" - #else - #include - #include #endif #include "struct.h" --- 61,66 ---- --ELM908094012-15065-0_ Content-Type: text/plain; charset=ISO-8859-1 Content-Disposition: attachment; filename=workman.diffs.101198 Content-Description: workman.diffs.101198 Content-Transfer-Encoding: 7bit *** plat_freebsd.c.ports_patched Sun Oct 11 02:11:46 1998 --- plat_freebsd.c Sun Oct 11 02:12:29 1998 *************** *** 25,44 **** #include #include #include - #include #ifdef __NetBSD__ #define MSF_MINUTES 1 #define MSF_SECONDS 2 #define MSF_FRAMES 3 #include "/sys/scsi/scsi_all.h" #include "/sys/scsi/scsi_cd.h" - #else - /* - #include - #include - */ - #include - #include #endif #include "struct.h" --- 25,36 ---- --ELM908094012-15065-0_-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 01:47:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA03118 for cvs-all-outgoing; Sun, 11 Oct 1998 01:47:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.15.68.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA03113; Sun, 11 Oct 1998 01:47:27 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id SAA20497; Sun, 11 Oct 1998 18:46:54 +1000 Date: Sun, 11 Oct 1998 18:46:54 +1000 From: Bruce Evans Message-Id: <199810110846.SAA20497@godzilla.zeta.org.au> To: bde@zeta.org.au, peter@netplex.com.au Subject: Re: cvs commit: src/lib/libc/gen popen.c Cc: bde@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >> >I suspect this has come about because of a change of implementation in >> >exec*(). I suspect they used to do something like: >> > >> >execl(arg1, arg2) >> >{ >> > execve(arg1, &arg1, environ); >> >} >> > >> >... but since prototypes has been changed to use malloc etc and build an >> >array by sucking in args via va_arg() etc. >> >> ANSI should tell you that you can't do the above if a correct (varadic) >> prototype is in scope. NetBSD has ifdefs to do it anyway on arches where >> the varadic args are known to be on the stack. > >Well, can we do it too? Or move it to the MD part of libc source >(eg: libc/i386/gen/execl.c) and the same on other systems that can do it? This is more of a micro-optimization than I like. >If we "define" execl*() as not having side effects, it would help. We'll have to make it work to avoid fixing dusty decks, but it shouldn't be documented since it isn't portable. vfork.2 only mentions execve() and other pure syscalls as being safe. >> We could just allocate ARG_MAX bytes on the stack. This has the same >> problems as alloca() and VLAs - stack memory isn't quite free. It >> may be better because it crashes more deterministically. > >We could use this method as a fallback for systems that we can't pull >varadic args off the stack. More ifdefs :-(. The ARG_MAX limit exists mainly so the kernel doesn't need to do complicated or large allocations. Our kernel just allocates ARG_MAX (plus PAGE_SIZE) bytes of vm, and it knows more about allocation than the library. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 02:06:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA04799 for cvs-all-outgoing; Sun, 11 Oct 1998 02:06:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from apollo.backplane.com (apollo.backplane.com [209.157.86.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA04794; Sun, 11 Oct 1998 02:06:48 -0700 (PDT) (envelope-from dillon@backplane.com) Received: (dillon@localhost) by apollo.backplane.com (8.9.1/8.6.5) id CAA02043; Sun, 11 Oct 1998 02:06:17 -0700 (PDT) Date: Sun, 11 Oct 1998 02:06:17 -0700 (PDT) From: Matthew Dillon Message-Id: <199810110906.CAA02043@apollo.backplane.com> To: Peter Wemm Cc: Bruce Evans , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libc/gen popen.c References: <199810110309.LAA18511@spinner.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk :Bruce Evans wrote: :> bde 1998/10/10 12:30:45 PDT :> :> Modified files: :> lib/libc/gen popen.c :> Log: :> vfork -> fork. The child calls execl() which calls malloc(), so :> vfork() can't be used. We could use alloca() in execl() so that :> it can be called between vfork() and execve(), but a "portable" :... : :Why not fix it properly by not using execl()? Wait a second!!!!!! vfork() was specifically designed for situations where you call the exec*() functions. That's the whole point of using vfork() rather then fork()!!!!! If execl() is not compatible with vfork(), then execl() is seriously broken. And I do mean seriously. I can't begin to count the number of times I use vfork()/execl() in programs. The problem ought to be easily solvable by having the exec*() functions cache the returned argv in a static and 'free' them on the following call before allocating a new copy, so the parent process does not leak memory. Frankly, I'd prefer a solution that doesn't touch malloc at all... if it were me I'd just take &arg and be done with it, but alloca() is probably better then that. Still not fun, but better. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 02:53:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA07064 for cvs-all-outgoing; Sun, 11 Oct 1998 02:53:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA07059; Sun, 11 Oct 1998 02:53:32 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA17057; Sun, 11 Oct 1998 02:53:30 -0700 (PDT) Date: Sun, 11 Oct 1998 02:53:30 -0700 (PDT) Message-Id: <199810110953.CAA17057@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/libi386 time.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/11 02:53:30 PDT Modified files: sys/boot/i386/libi386 time.c Log: Fix comment to match code Revision Changes Path 1.2 +1 -1 src/sys/boot/i386/libi386/time.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 03:02:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA07997 for cvs-all-outgoing; Sun, 11 Oct 1998 03:02:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA07947; Sun, 11 Oct 1998 03:02:02 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA17226; Sun, 11 Oct 1998 03:01:56 -0700 (PDT) Date: Sun, 11 Oct 1998 03:01:56 -0700 (PDT) Message-Id: <199810111001.DAA17226@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/libi386 biosdisk.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/11 03:01:56 PDT Modified files: sys/boot/i386/libi386 biosdisk.c Log: Warn that one of the DEBUG statements has a v86 recursion bug. Revision Changes Path 1.13 +2 -1 src/sys/boot/i386/libi386/biosdisk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 03:05:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA08380 for cvs-all-outgoing; Sun, 11 Oct 1998 03:05:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA08355; Sun, 11 Oct 1998 03:05:15 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA17265; Sun, 11 Oct 1998 03:05:13 -0700 (PDT) Date: Sun, 11 Oct 1998 03:05:13 -0700 (PDT) Message-Id: <199810111005.DAA17265@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/libi386 comconsole.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/11 03:05:13 PDT Modified files: sys/boot/i386/libi386 comconsole.c Log: Fix comconsole mode. The int 0x14 read and status commands were reversed. Also, make sure we set %dx each time around otherwise the commands suddenly start trying to work on things like com92 instead of com1. Make sure comc_init() is only run once. Cosmetic change to init-time character eater. Revision Changes Path 1.4 +21 -7 src/sys/boot/i386/libi386/comconsole.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 03:08:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA08761 for cvs-all-outgoing; Sun, 11 Oct 1998 03:08:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA08730; Sun, 11 Oct 1998 03:07:54 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA17303; Sun, 11 Oct 1998 03:07:52 -0700 (PDT) Date: Sun, 11 Oct 1998 03:07:52 -0700 (PDT) Message-Id: <199810111007.DAA17303@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/libi386 vidconsole.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/11 03:07:52 PDT Modified files: sys/boot/i386/libi386 vidconsole.c Log: Only call vidc_init() once (unless forced). Cosmetic change to the init-time character eater (like, make it increment the index counter - if there's a problem, it would sit there in an infinite loop instead of only running 10 times). Revision Changes Path 1.6 +8 -3 src/sys/boot/i386/libi386/vidconsole.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 03:11:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA09081 for cvs-all-outgoing; Sun, 11 Oct 1998 03:11:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA09042; Sun, 11 Oct 1998 03:10:46 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA17362; Sun, 11 Oct 1998 03:10:42 -0700 (PDT) Date: Sun, 11 Oct 1998 03:10:42 -0700 (PDT) Message-Id: <199810111010.DAA17362@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/common boot.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/11 03:10:42 PDT Modified files: sys/boot/common boot.c Log: Cosmetic: After the autoboot timeout, print a \n. Revision Changes Path 1.6 +6 -2 src/sys/boot/common/boot.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 03:19:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA10180 for cvs-all-outgoing; Sun, 11 Oct 1998 03:19:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA10168; Sun, 11 Oct 1998 03:19:13 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA17488; Sun, 11 Oct 1998 03:19:12 -0700 (PDT) Date: Sun, 11 Oct 1998 03:19:12 -0700 (PDT) Message-Id: <199810111019.DAA17488@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/common console.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/11 03:19:11 PDT Modified files: sys/boot/common console.c Log: Probe all consoles, not just the first. It doesn't make a lot of difference, but might later on when we implement some sort of multi-head console mode. Select a console after probing them all. Don't strdup a potentially NULL return from getenv(). If we don't select an active console, choose the first regardless. Call the console init function, at startup time and on a manual change. The env_setenv() function needs EV_VOLATILE because it's pointing to data that isn't malloc'ed and will cause a fault if it's freed later. Revision Changes Path 1.3 +21 -7 src/sys/boot/common/console.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 03:28:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA11214 for cvs-all-outgoing; Sun, 11 Oct 1998 03:28:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA11185; Sun, 11 Oct 1998 03:28:54 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA17621; Sun, 11 Oct 1998 03:28:52 -0700 (PDT) Date: Sun, 11 Oct 1998 03:28:52 -0700 (PDT) Message-Id: <199810111028.DAA17621@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/common ls.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/11 03:28:52 PDT Modified files: sys/boot/common ls.c Log: Fix a warning Revision Changes Path 1.6 +2 -2 src/sys/boot/common/ls.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 03:30:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA11331 for cvs-all-outgoing; Sun, 11 Oct 1998 03:30:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA11294; Sun, 11 Oct 1998 03:29:52 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA17655; Sun, 11 Oct 1998 03:29:50 -0700 (PDT) Date: Sun, 11 Oct 1998 03:29:50 -0700 (PDT) Message-Id: <199810111029.DAA17655@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/libi386 biosdisk.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/11 03:29:50 PDT Modified files: sys/boot/i386/libi386 biosdisk.c Log: Fix a warning that's been bugging me for ages. Revision Changes Path 1.14 +10 -4 src/sys/boot/i386/libi386/biosdisk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 03:53:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA13498 for cvs-all-outgoing; Sun, 11 Oct 1998 03:53:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au (spinner.netplex.com.au [202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA13391; Sun, 11 Oct 1998 03:50:29 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.9.1/8.9.1/Spinner) with ESMTP id SAA20133; Sun, 11 Oct 1998 18:22:34 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199810111022.SAA20133@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/boot/common console.c In-reply-to: Your message of "Sun, 11 Oct 1998 03:19:12 MST." <199810111019.DAA17488@freefall.freebsd.org> Date: Sun, 11 Oct 1998 18:22:33 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Peter Wemm wrote: > peter 1998/10/11 03:19:11 PDT > > Modified files: > sys/boot/common console.c > Log: > Probe all consoles, not just the first. It doesn't make a lot of > difference, but might later on when we implement some sort of multi-head > console mode. Select a console after probing them all. > Don't strdup a potentially NULL return from getenv(). > If we don't select an active console, choose the first regardless. > Call the console init function, at startup time and on a manual change. > The env_setenv() function needs EV_VOLATILE because it's pointing to > data that isn't malloc'ed and will cause a fault if it's freed later. > > Revision Changes Path > 1.3 +21 -7 src/sys/boot/common/console.c And after this, comconsole works in /boot/loader. :-) 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 Oct 11 04:27:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA18401 for cvs-all-outgoing; Sun, 11 Oct 1998 04:27:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA18396; Sun, 11 Oct 1998 04:27:50 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA19803; Sun, 11 Oct 1998 04:27:49 -0700 (PDT) Date: Sun, 11 Oct 1998 04:27:49 -0700 (PDT) Message-Id: <199810111127.EAA19803@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/btx/lib Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/11 04:27:49 PDT Modified files: sys/boot/i386/btx/lib Makefile Log: Override for ELF. Override .s.o suffix rule. Revision Changes Path 1.2 +5 -1 src/sys/boot/i386/btx/lib/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 05:59:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA24150 for cvs-all-outgoing; Sun, 11 Oct 1998 05:59:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA24145; Sun, 11 Oct 1998 05:59:41 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA22745; Sun, 11 Oct 1998 05:59:40 -0700 (PDT) Date: Sun, 11 Oct 1998 05:59:40 -0700 (PDT) Message-Id: <199810111259.FAA22745@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/11 05:59:40 PDT Modified files: sys/boot/i386 Makefile Log: Override for ELF. Revision Changes Path 1.5 +4 -4 src/sys/boot/i386/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 07:11:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA28349 for cvs-all-outgoing; Sun, 11 Oct 1998 07:11:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA28343; Sun, 11 Oct 1998 07:11:53 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA29025; Sun, 11 Oct 1998 07:11:51 -0700 (PDT) Date: Sun, 11 Oct 1998 07:11:51 -0700 (PDT) Message-Id: <199810111411.HAA29025@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libc/gen popen.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/11 07:11:51 PDT Modified files: lib/libc/gen popen.c Log: Avoid the need for calling functions that malloc after a vfork(). Revision Changes Path 1.11 +10 -2 src/lib/libc/gen/popen.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 07:35:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA00303 for cvs-all-outgoing; Sun, 11 Oct 1998 07:35:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA00296; Sun, 11 Oct 1998 07:35:46 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA29781; Sun, 11 Oct 1998 07:35:45 -0700 (PDT) Date: Sun, 11 Oct 1998 07:35:45 -0700 (PDT) Message-Id: <199810111435.HAA29781@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/cad/felt Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/11 07:35:44 PDT Modified files: cad/felt Makefile Log: Mark BROKEN for current: gcc -O3 -I/usr/X11R6/include -I../../include -c xwd.c In file included from xwd.c:27: /usr/include/malloc.h:2: warning: #warning "this file includes which is deprecated, use instead" xwd.c: In function `DumpWidget': xwd.c:68: warning: passing arg 1 of `error' makes integer from pointer without a cast xwd.c:68: too few arguments to function `error' xwd.c:75: warning: passing arg 1 of `error' makes integer from pointer without a cast xwd.c:75: too few arguments to function `error' xwd.c:113: warning: passing arg 1 of `error' makes integer from pointer without a cast xwd.c:113: too few arguments to function `error' xwd.c: In function `Get_XColors': xwd.c:228: warning: passing arg 1 of `error' makes integer from pointer without a cast xwd.c:228: too few arguments to function `error' *** Error code 1 Revision Changes Path 1.7 +6 -1 ports/cad/felt/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 08:00:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA02476 for cvs-all-outgoing; Sun, 11 Oct 1998 08:00:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA02459; Sun, 11 Oct 1998 08:00:26 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA00493; Sun, 11 Oct 1998 08:00:24 -0700 (PDT) Date: Sun, 11 Oct 1998 08:00:24 -0700 (PDT) Message-Id: <199810111500.IAA00493@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf GENERIC98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/10/11 08:00:24 PDT Modified files: sys/pc98/conf GENERIC98 Log: Sync with sys/i386/conf/GENERIC revision 1.124. Revision Changes Path 1.49 +3 -1 src/sys/pc98/conf/GENERIC98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 08:01:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA02647 for cvs-all-outgoing; Sun, 11 Oct 1998 08:01:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA02632; Sun, 11 Oct 1998 08:01:41 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA00537; Sun, 11 Oct 1998 08:01:40 -0700 (PDT) Date: Sun, 11 Oct 1998 08:01:40 -0700 (PDT) Message-Id: <199810111501.IAA00537@freefall.freebsd.org> 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 1998/10/11 08:01:40 PDT Modified files: sys/pc98/conf Makefile.pc98 Log: Sync with sys/i386/conf/Makefile.i386 revision 1.126. Revision Changes Path 1.42 +2 -2 src/sys/pc98/conf/Makefile.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 08:02:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA03025 for cvs-all-outgoing; Sun, 11 Oct 1998 08:02:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA03018; Sun, 11 Oct 1998 08:02:51 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA00576; Sun, 11 Oct 1998 08:02:50 -0700 (PDT) Date: Sun, 11 Oct 1998 08:02:50 -0700 (PDT) Message-Id: <199810111502.IAA00576@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf files.pc98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/10/11 08:02:50 PDT Modified files: sys/pc98/conf files.pc98 Log: Sync with sys/i386/conf/files.i386 revision 1.206. Revision Changes Path 1.72 +3 -1 src/sys/pc98/conf/files.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 08:04:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA03288 for cvs-all-outgoing; Sun, 11 Oct 1998 08:04:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA03265; Sun, 11 Oct 1998 08:04:40 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA00680; Sun, 11 Oct 1998 08:04:39 -0700 (PDT) Date: Sun, 11 Oct 1998 08:04:39 -0700 (PDT) Message-Id: <199810111504.IAA00680@freefall.freebsd.org> 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 kato 1998/10/11 08:04:39 PDT Modified files: sys/pc98/i386 machdep.c Log: Sync with sys/i386/i386/machdep.c revision 1.313. Revision Changes Path 1.99 +8 -4 src/sys/pc98/i386/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 08:08:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA03954 for cvs-all-outgoing; Sun, 11 Oct 1998 08:08:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA03938; Sun, 11 Oct 1998 08:08:51 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA00866; Sun, 11 Oct 1998 08:08:50 -0700 (PDT) Date: Sun, 11 Oct 1998 08:08:50 -0700 (PDT) Message-Id: <199810111508.IAA00866@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/boot/biosboot boot.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/10/11 08:08:50 PDT Modified files: sys/pc98/boot/biosboot boot.h Log: Sync with sysi/386/boot/biosboot/boot.h revision 1.24. Revision Changes Path 1.14 +2 -2 src/sys/pc98/boot/biosboot/boot.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 08:09:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA03994 for cvs-all-outgoing; Sun, 11 Oct 1998 08:09:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA03987; Sun, 11 Oct 1998 08:09:16 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA00896; Sun, 11 Oct 1998 08:09:15 -0700 (PDT) Date: Sun, 11 Oct 1998 08:09:15 -0700 (PDT) Message-Id: <199810111509.IAA00896@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/boot/biosboot boot.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/10/11 08:09:15 PDT Modified files: sys/pc98/boot/biosboot boot.c Log: Sync with sys/i386/boot/biosboot/boot.c revision up to 1.74. Revision Changes Path 1.19 +9 -9 src/sys/pc98/boot/biosboot/boot.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 08:09:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA04049 for cvs-all-outgoing; Sun, 11 Oct 1998 08:09:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA04044; Sun, 11 Oct 1998 08:09:37 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA00930; Sun, 11 Oct 1998 08:09:36 -0700 (PDT) Date: Sun, 11 Oct 1998 08:09:36 -0700 (PDT) Message-Id: <199810111509.IAA00930@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/boot/biosboot table.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/10/11 08:09:36 PDT Modified files: sys/pc98/boot/biosboot table.c Log: Sync with sys/i386/boot/biosboot/table.c revision 1.17. Revision Changes Path 1.8 +2 -2 src/sys/pc98/boot/biosboot/table.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 08:18:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA05213 for cvs-all-outgoing; Sun, 11 Oct 1998 08:18:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA05206; Sun, 11 Oct 1998 08:18:20 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA01117; Sun, 11 Oct 1998 08:18:18 -0700 (PDT) Date: Sun, 11 Oct 1998 08:18:18 -0700 (PDT) Message-Id: <199810111518.IAA01117@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11/XttXF86srv-common/patches patch-ba patch-bb patch-bc patch-bd patch-be patch-bf patch-za patch-zb patch-zc patch-az Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk steve 1998/10/11 08:18:18 PDT Modified files: x11/XttXF86srv-common/patches patch-ba patch-bb patch-bc patch-bd patch-be patch-bf patch-za patch-zb patch-zc Removed files: x11/XttXF86srv-common/patches patch-az Log: Unbreak this port after my last little trick which left each patch file with two identical copies of the intended fix. PR: 8262 Submitted by: Murata Shuuichirou Approved by: jseger Revision Changes Path 1.2 +0 -42 ports/x11/XttXF86srv-common/patches/patch-ba 1.2 +0 -79 ports/x11/XttXF86srv-common/patches/patch-bb 1.2 +0 -11 ports/x11/XttXF86srv-common/patches/patch-bc 1.2 +0 -11 ports/x11/XttXF86srv-common/patches/patch-bd 1.2 +0 -11 ports/x11/XttXF86srv-common/patches/patch-be 1.2 +0 -11 ports/x11/XttXF86srv-common/patches/patch-bf 1.2 +0 -10 ports/x11/XttXF86srv-common/patches/patch-za 1.2 +0 -36 ports/x11/XttXF86srv-common/patches/patch-zb 1.2 +0 -11 ports/x11/XttXF86srv-common/patches/patch-zc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 08:32:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA06216 for cvs-all-outgoing; Sun, 11 Oct 1998 08:32:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA06211; Sun, 11 Oct 1998 08:32:18 -0700 (PDT) (envelope-from motoyuki@FreeBSD.org) From: Motoyuki Konno Received: (from motoyuki@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA01604; Sun, 11 Oct 1998 08:32:17 -0700 (PDT) Date: Sun, 11 Oct 1998 08:32:17 -0700 (PDT) Message-Id: <199810111532.IAA01604@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/ja/FAQ install.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk motoyuki 1998/10/11 08:32:17 PDT Modified files: ja/FAQ install.sgml Log: Merge the following changes in the English version: install.sgml : 1.9 -> 1.11 Submitted by: Mitsuru IWASAKI Revision Changes Path 1.7 +74 -6 doc/ja/FAQ/install.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 08:37:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA06650 for cvs-all-outgoing; Sun, 11 Oct 1998 08:37:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from nagual.pp.ru (lsd.relcom.eu.net [193.125.27.73]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA06638; Sun, 11 Oct 1998 08:37:22 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.9.1/8.9.1) id TAA29923; Sun, 11 Oct 1998 19:36:03 +0400 (MSD) (envelope-from ache) Message-ID: <19981011193603.A28135@nagual.pp.ru> Date: Sun, 11 Oct 1998 19:36:03 +0400 From: "Andrey A. Chernov" To: Matthew Dillon , Peter Wemm Cc: Bruce Evans , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libc/gen popen.c Mail-Followup-To: Matthew Dillon , Peter Wemm , Bruce Evans , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <199810110309.LAA18511@spinner.netplex.com.au> <199810110906.CAA02043@apollo.backplane.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199810110906.CAA02043@apollo.backplane.com>; from dillon@backplane.com on Sun, Oct 11, 1998 at 02:06:17AM -0700 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, Oct 11, 1998 at 02:06:17AM -0700, Matthew Dillon wrote: > Wait a second!!!!!! vfork() was specifically designed for situations > where you call the exec*() functions. That's the whole point of > using vfork() rather then fork()!!!!! Yes, I agree too. There is a lots programs which do that way, much more than in our src tree. Exec*() must be fixed instead to avoid calling malloc() -- Andrey A. Chernov http://www.nagual.pp.ru/~ache/ MTH/SH/HE S-- W-- N+ PEC>+ D A a++ C G>+ QH+(++) 666+>++ Y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 09:33:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA11483 for cvs-all-outgoing; Sun, 11 Oct 1998 09:33:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA11478; Sun, 11 Oct 1998 09:33:04 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA03137; Sun, 11 Oct 1998 09:33:02 -0700 (PDT) Date: Sun, 11 Oct 1998 09:33:02 -0700 (PDT) Message-Id: <199810111633.JAA03137@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libtelnet Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/11 09:33:02 PDT Modified files: lib/libtelnet Makefile Log: Fixed removing of obsolete shared libraries: - the directory was wrong if ${SHLIBDIR} != ${LIBDIR}. It's still wrong if the installation of the obsolete library was done before /aout was appended to LIBDIR. - the version would have become wrong when the default in ../Makefile.inc is changed from 2.0. - the comment mostly described moving of libraries to /usr/lib/compat, but we don't do that. Revision Changes Path 1.9 +5 -8 src/lib/libtelnet/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 10:14:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA14459 for cvs-all-outgoing; Sun, 11 Oct 1998 10:14:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA14453; Sun, 11 Oct 1998 10:14:57 -0700 (PDT) (envelope-from jdp@FreeBSD.org) From: John Polstra Received: (from jdp@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA04286; Sun, 11 Oct 1998 10:14:56 -0700 (PDT) Date: Sun, 11 Oct 1998 10:14:56 -0700 (PDT) Message-Id: <199810111714.KAA04286@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libm/common_source lgamma.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jdp 1998/10/11 10:14:56 PDT Modified files: lib/libm/common_source lgamma.c Log: Eliminate nested comment warning. Submitted by: lh@aus.org Revision Changes Path 1.2 +1 -1 src/lib/libm/common_source/lgamma.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 10:23:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA15014 for cvs-all-outgoing; Sun, 11 Oct 1998 10:23:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA15009; Sun, 11 Oct 1998 10:23:37 -0700 (PDT) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA04562; Sun, 11 Oct 1998 10:23:35 -0700 (PDT) Date: Sun, 11 Oct 1998 10:23:35 -0700 (PDT) Message-Id: <199810111723.KAA04562@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/contrib/perl5/ext/IPC/SysV Makefile.PL Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/10/11 10:23:35 PDT Modified files: contrib/perl5/ext/IPC/SysV Makefile.PL Log: Cleanup. No need to install manpages here; no other system module does it, and it is done /in toto/ elsewhere. Revision Changes Path 1.2 +2 -1 src/contrib/perl5/ext/IPC/SysV/Makefile.PL To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 10:27:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA15293 for cvs-all-outgoing; Sun, 11 Oct 1998 10:27:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA15286; Sun, 11 Oct 1998 10:27:34 -0700 (PDT) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA04685; Sun, 11 Oct 1998 10:27:33 -0700 (PDT) Date: Sun, 11 Oct 1998 10:27:33 -0700 (PDT) Message-Id: <199810111727.KAA04685@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/contrib/perl5/lib/ExtUtils Liblist.pm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/10/11 10:27:33 PDT Modified files: contrib/perl5/lib/ExtUtils Liblist.pm Log: Fix minor bogon pointed out by perl5's own perldoc. Revision Changes Path 1.2 +2 -2 src/contrib/perl5/lib/ExtUtils/Liblist.pm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 10:28:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA15404 for cvs-all-outgoing; Sun, 11 Oct 1998 10:28:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ns1.yes.no (ns1.yes.no [195.204.136.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA15390; Sun, 11 Oct 1998 10:28:42 -0700 (PDT) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [195.204.143.218]) by ns1.yes.no (8.9.1a/8.9.1) with ESMTP id TAA21969; Sun, 11 Oct 1998 19:27:56 +0200 (CEST) Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id TAA09593; Sun, 11 Oct 1998 19:27:54 +0200 (MET DST) Message-ID: <19981011192754.34404@follo.net> Date: Sun, 11 Oct 1998 19:27:54 +0200 From: Eivind Eklund To: Matthew Dillon , Peter Wemm , Bruce Evans , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libc/gen popen.c References: <199810110309.LAA18511@spinner.netplex.com.au> <199810110906.CAA02043@apollo.backplane.com> <19981011193603.A28135@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <19981011193603.A28135@nagual.pp.ru>; from Andrey A. Chernov on Sun, Oct 11, 1998 at 07:36:03PM +0400 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, Oct 11, 1998 at 07:36:03PM +0400, Andrey A. Chernov wrote: > On Sun, Oct 11, 1998 at 02:06:17AM -0700, Matthew Dillon wrote: > > Wait a second!!!!!! vfork() was specifically designed for situations > > where you call the exec*() functions. That's the whole point of > > using vfork() rather then fork()!!!!! > > Yes, I agree too. There is a lots programs which do that way, much more > than in our src tree. Exec*() must be fixed instead to avoid calling > malloc() exec() isn't the only problem. There are programs calling e.g. wanr() on failure of the exec(). We have to do an audit WRT which programs are abusing vfork(), anyway... Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 10:31:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA15651 for cvs-all-outgoing; Sun, 11 Oct 1998 10:31:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA15645; Sun, 11 Oct 1998 10:31:37 -0700 (PDT) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA04781; Sun, 11 Oct 1998 10:31:35 -0700 (PDT) Date: Sun, 11 Oct 1998 10:31:35 -0700 (PDT) Message-Id: <199810111731.KAA04781@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/etc/mtree BSD.local.dist BSD.usr.dist Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/10/11 10:31:35 PDT Modified files: etc/mtree BSD.local.dist BSD.usr.dist Log: Add extra directories required by Perl5. The one in local-land is contoversial and may be removed later. Revision Changes Path 1.42 +3 -1 src/etc/mtree/BSD.local.dist 1.135 +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 Sun Oct 11 10:47:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA16924 for cvs-all-outgoing; Sun, 11 Oct 1998 10:47:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from apollo.backplane.com (apollo.backplane.com [209.157.86.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA16913; Sun, 11 Oct 1998 10:47:48 -0700 (PDT) (envelope-from dillon@backplane.com) Received: (dillon@localhost) by apollo.backplane.com (8.9.1/8.6.5) id KAA04968; Sun, 11 Oct 1998 10:47:31 -0700 (PDT) Date: Sun, 11 Oct 1998 10:47:31 -0700 (PDT) From: Matthew Dillon Message-Id: <199810111747.KAA04968@apollo.backplane.com> To: Eivind Eklund Cc: Matthew Dillon , Peter Wemm , Bruce Evans , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libc/gen popen.c References: <199810110309.LAA18511@spinner.netplex.com.au> <199810110906.CAA02043@apollo.backplane.com> <19981011193603.A28135@nagual.pp.ru> <19981011192754.34404@follo.net> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk : :exec() isn't the only problem. There are programs calling e.g. wanr() :on failure of the exec(). We have to do an audit WRT which programs :are abusing vfork(), anyway... : :Eivind. True. We can't fix every programmer's bozoness, but we can fix the more professional programmer's expectations. If the programmer knows enough to call _exit() rather then exit(), they should know enough not to make random library calls... but even though execl() isn't a system call I think most programmers would expect it to work inside a vfork(). -Matt Matthew Dillon Engineering, HiWay Technologies, Inc. & BEST Internet Communications & God knows what else. (Please include original email in any response) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 11:13:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA19117 for cvs-all-outgoing; Sun, 11 Oct 1998 11:13:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA19104; Sun, 11 Oct 1998 11:13:44 -0700 (PDT) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA05938; Sun, 11 Oct 1998 11:13:42 -0700 (PDT) Date: Sun, 11 Oct 1998 11:13:42 -0700 (PDT) Message-Id: <199810111813.LAA05938@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/perl Makefile.inc src/gnu/usr.bin/perl/miniperl Makefile src/gnu/usr.bin/perl/perl Makefile install_perl_libs src/gnu/usr.bin/perl/pod/pod Makefile src/gnu/usr.bin/perl/suidperl Makefile src/gnu/usr.bin/perl/utils/h2ph Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/10/11 11:13:42 PDT Modified files: gnu/usr.bin/perl Makefile.inc gnu/usr.bin/perl/miniperl Makefile gnu/usr.bin/perl/perl Makefile gnu/usr.bin/perl/pod/pod Makefile gnu/usr.bin/perl/suidperl Makefile gnu/usr.bin/perl/utils/h2ph Makefile Removed files: gnu/usr.bin/perl/perl install_perl_libs Log: Very substantial debug/improvement of the FreeBSD/Perl5 build. o make install ; make install now works o make all ; make all is quiet the second time o Dependancies are properliy debugged; this means that make -jN has a far hihjer likelyhood of working. o a proper 'link farm' has been constructed for the build. This dramatically simplifies the dependancy tangle. o for perldoc's use, all the .pod files are installed. o the man3 docs are properly compressed. o the man pages and libary code are installed by the makefiles, not by a perl script. o at the end, h2ph is run. Revision Changes Path 1.6 +30 -8 src/gnu/usr.bin/perl/Makefile.inc 1.7 +3 -1 src/gnu/usr.bin/perl/miniperl/Makefile 1.15 +93 -67 src/gnu/usr.bin/perl/perl/Makefile 1.2 +6 -4 src/gnu/usr.bin/perl/pod/pod/Makefile 1.5 +28 -46 src/gnu/usr.bin/perl/suidperl/Makefile 1.2 +6 -1 src/gnu/usr.bin/perl/utils/h2ph/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 11:39:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA22518 for cvs-all-outgoing; Sun, 11 Oct 1998 11:39:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA22509; Sun, 11 Oct 1998 11:39:40 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA06695; Sun, 11 Oct 1998 11:39:39 -0700 (PDT) Date: Sun, 11 Oct 1998 11:39:39 -0700 (PDT) Message-Id: <199810111839.LAA06695@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src Makefile.inc1 src/sys Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/11 11:39:38 PDT Modified files: . Makefile.inc1 sys Makefile Log: In src/Makefile.inc1: Remove /sys/boot from legacy-build. Add btxld to build-tools. In src/sys/Makefile: Add /sys/boot for i386 ELF. I'm still not sure why the new boot code was being built along with the legacy stuff, which meant a completely wrong default environment for it. This may well still be the wrong way to go about this, but it can't work all that much worse than it has been. Revision Changes Path 1.31 +2 -3 src/Makefile.inc1 1.13 +3 -1 src/sys/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 12:02:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA25298 for cvs-all-outgoing; Sun, 11 Oct 1998 12:02:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA25293; Sun, 11 Oct 1998 12:02:29 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA07283; Sun, 11 Oct 1998 12:02:27 -0700 (PDT) Date: Sun, 11 Oct 1998 12:02:27 -0700 (PDT) Message-Id: <199810111902.MAA07283@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src Makefile.inc1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/11 12:02:27 PDT Modified files: . Makefile.inc1 Log: Remove sys/boot from the install as well. Revision Changes Path 1.32 +1 -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 Sun Oct 11 12:22:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA27592 for cvs-all-outgoing; Sun, 11 Oct 1998 12:22:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA27587; Sun, 11 Oct 1998 12:22:09 -0700 (PDT) (envelope-from jdp@FreeBSD.org) From: John Polstra Received: (from jdp@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA07735; Sun, 11 Oct 1998 12:22:08 -0700 (PDT) Date: Sun, 11 Oct 1998 12:22:08 -0700 (PDT) Message-Id: <199810111922.MAA07735@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern imgact_elf.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jdp 1998/10/11 12:22:08 PDT Modified files: sys/kern imgact_elf.c Log: If an ELF executable has a recognized brand, then believe it. Formerly, the heuristic involving the interpreter path took precedence. Also, print a better error message if the brand is missing or not recognized. If there is no brand at all, give the user a hint that "brandelf" needs to be run. Revision Changes Path 1.37 +48 -59 src/sys/kern/imgact_elf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 12:27:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA28001 for cvs-all-outgoing; Sun, 11 Oct 1998 12:27:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA27995; Sun, 11 Oct 1998 12:27:10 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA07855; Sun, 11 Oct 1998 12:27:08 -0700 (PDT) Date: Sun, 11 Oct 1998 12:27:08 -0700 (PDT) Message-Id: <199810111927.MAA07855@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/cad/sis Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/11 12:27:08 PDT Modified files: cad/sis Makefile Log: Mark BROKEN: fails here: ln: /usr/ports/cad/sis/work/sis-1.2/sis/unpack/*.o: File exists Revision Changes Path 1.4 +3 -1 ports/cad/sis/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 12:40:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA28959 for cvs-all-outgoing; Sun, 11 Oct 1998 12:40:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA28954; Sun, 11 Oct 1998 12:40:42 -0700 (PDT) (envelope-from jdp@FreeBSD.org) From: John Polstra Received: (from jdp@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA08178; Sun, 11 Oct 1998 12:40:39 -0700 (PDT) Date: Sun, 11 Oct 1998 12:40:39 -0700 (PDT) Message-Id: <199810111940.MAA08178@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pppd Makefile chap_ms.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jdp 1998/10/11 12:40:39 PDT Modified files: usr.sbin/pppd Makefile chap_ms.c Log: Fix the MS-CHAP support. The code was passing a bit count to MD4Update(), but our version in libmd expects a byte count. This code is not currently compiled or linked into pppd, so I'm reasonably sure I didn't break anything. :-) I added the necessary statements to the Makefile, but left them commented out because we are in feature freeze. When the code is enabled, we must be careful to build it only if the DES library is available. Revision Changes Path 1.12 +7 -1 src/usr.sbin/pppd/Makefile 1.6 +2 -2 src/usr.sbin/pppd/chap_ms.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 12:52:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA29569 for cvs-all-outgoing; Sun, 11 Oct 1998 12:52:01 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA29549; Sun, 11 Oct 1998 12:51:58 -0700 (PDT) (envelope-from smace@FreeBSD.org) From: Scott Mace Received: (from smace@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA08670; Sun, 11 Oct 1998 12:51:56 -0700 (PDT) Date: Sun, 11 Oct 1998 12:51:56 -0700 (PDT) Message-Id: <199810111951.MAA08670@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/tclX80 Makefile ports/lang/tclX80/patches patch-ab patch-ac ports/lang/tclX80/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk smace 1998/10/11 12:51:56 PDT Modified files: lang/tclX80 Makefile Log: Convert to ELF. use MAN3 macro PR: 8017 Approved by: jseger Revision Changes Path 1.25 +11 -4 ports/lang/tclX80/Makefile Modified files: lang/tclX80/patches patch-ab patch-ac Log: Convert to ELF. PR: 8017 Approved by: jseger Revision Changes Path 1.3 +24 -3 ports/lang/tclX80/patches/patch-ab 1.3 +23 -2 ports/lang/tclX80/patches/patch-ac Modified files: lang/tclX80/pkg PLIST Log: Convert to ELF. Use MAN3 macro. PR: 8017 Approved by: jseger Revision Changes Path 1.13 +15 -37 ports/lang/tclX80/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 Oct 11 14:08:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA08213 for cvs-all-outgoing; Sun, 11 Oct 1998 14:08:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA08199; Sun, 11 Oct 1998 14:08:04 -0700 (PDT) (envelope-from alex@FreeBSD.org) From: Alex Nash Received: (from alex@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA10238; Sun, 11 Oct 1998 14:08:03 -0700 (PDT) Date: Sun, 11 Oct 1998 14:08:03 -0700 (PDT) Message-Id: <199810112108.OAA10238@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lkm/linux linux.c src/sys/i386/linux linux_sysvec.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk alex 1998/10/11 14:08:03 PDT Modified files: lkm/linux linux.c sys/i386/linux linux_sysvec.c Log: Unregister the glibc2 brand at module unload time. Change the ELF registration/unregistration scheme to be less error prone. Adding a new brand requires a single addition to linux_brandlist instead of modifying linux_load(), linux_unload(), and linux_elf_init(). Approved by: jkh Reviewed by: msmith Revision Changes Path 1.14 +23 -6 src/lkm/linux/linux.c 1.36 +19 -5 src/sys/i386/linux/linux_sysvec.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 15:22:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA27106 for cvs-all-outgoing; Sun, 11 Oct 1998 15:22:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from apollo.backplane.com (apollo.backplane.com [209.157.86.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA27066 for ; Sun, 11 Oct 1998 15:22:51 -0700 (PDT) (envelope-from dillon@apollo.backplane.com) Received: (from dillon@localhost) by apollo.backplane.com (8.9.1/8.9.1) id PAA26398; Sun, 11 Oct 1998 15:22:40 -0700 (PDT) (envelope-from dillon) Date: Sun, 11 Oct 1998 15:22:40 -0700 (PDT) From: Matthew Dillon Message-Id: <199810112222.PAA26398@apollo.backplane.com> To: cvs-committers@FreeBSD.ORG Subject: Perl5 configure problem Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Trying to make the perl5 dist in ports, this occurs: cd /usr/ports/lang/perl5 make Directories to use for library searches? [/usr/lib/aout /usr/local/lib /usr/lib] ... ing /usr/bin/ar instead... /usr/libexec/elf/ar: /usr/lib/aout/libc.so.3.1: File format not recognized /usr/bin/ar didn't seem to work right. Maybe this is a Cray...trying bld instead... bld: not found bld: not found /usr/libexec/elf/ar: /usr/lib/aout/libm.so.2.0: File format not recognized bld: not found /usr/libexec/elf/ar: /usr/lib/aout/libcrypt.so.2.0: File format not recognized Ok. The perl build then fails completely because it doesn't set the appropriate feature defaults, because it's searching /usr/lib/aout before /usr/lib, which breaks ELF-builds because 'nm' and 'ar' default to ELF. The perl distribution is blowing itself up in hints/freebsd.sh, trying to set /usr/lib/aout AND /usr/lib at the same time... but primarily because it puts /usr/lib/aout first. Bewm. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 15:34:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA28471 for cvs-all-outgoing; Sun, 11 Oct 1998 15:34:29 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from metal.intt.org (metal.intt.org [206.109.108.186]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA28456; Sun, 11 Oct 1998 15:34:09 -0700 (PDT) (envelope-from smace@metal.intt.org) Received: (from smace@localhost) by metal.intt.org (8.9.1/8.9.1) id WAA03640; Sun, 11 Oct 1998 22:33:57 GMT From: Scott Mace Message-Id: <199810112233.WAA03640@metal.intt.org> Subject: Re: cvs commit: src/gnu/usr.bin/perl Makefile.inc src/gnu/usr.bin/perl/miniperl Makefile src/gnu/usr.bin/perl/perl Makefile In-Reply-To: <199810111813.LAA05938@freefall.freebsd.org> from Mark Murray at "Oct 11, 1998 11:13:42 am" To: markm@FreeBSD.ORG (Mark Murray) Date: Sun, 11 Oct 1998 22:33:57 +0000 (GMT) Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > markm 1998/10/11 11:13:42 PDT > > Modified files: > gnu/usr.bin/perl Makefile.inc > gnu/usr.bin/perl/miniperl Makefile > gnu/usr.bin/perl/perl Makefile > gnu/usr.bin/perl/pod/pod Makefile > gnu/usr.bin/perl/suidperl Makefile > gnu/usr.bin/perl/utils/h2ph Makefile > Removed files: > gnu/usr.bin/perl/perl install_perl_libs > Log: > Very substantial debug/improvement of the FreeBSD/Perl5 build. > > o make install ; make install now works > o make all ; make all is quiet the second time > o Dependancies are properliy debugged; this means that make -jN has a > far hihjer likelyhood of working. > o a proper 'link farm' has been constructed for the build. This > dramatically simplifies the dependancy tangle. > o for perldoc's use, all the .pod files are installed. > o the man3 docs are properly compressed. > o the man pages and libary code are installed by the makefiles, not > by a perl script. > o at the end, h2ph is run. > > Revision Changes Path > 1.6 +30 -8 src/gnu/usr.bin/perl/Makefile.inc > 1.7 +3 -1 src/gnu/usr.bin/perl/miniperl/Makefile > 1.15 +93 -67 src/gnu/usr.bin/perl/perl/Makefile > 1.2 +6 -4 src/gnu/usr.bin/perl/pod/pod/Makefile > 1.5 +28 -46 src/gnu/usr.bin/perl/suidperl/Makefile > 1.2 +6 -1 src/gnu/usr.bin/perl/utils/h2ph/Makefile > 1.6 version of src/gnu/usr.bin/perl/Makefile.inc needs dirname which is not installed the tmp usr/bin build area. Scott To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 15:44:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA29459 for cvs-all-outgoing; Sun, 11 Oct 1998 15:44:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA29452; Sun, 11 Oct 1998 15:44:35 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA11926; Sun, 11 Oct 1998 15:44:34 -0700 (PDT) Date: Sun, 11 Oct 1998 15:44:34 -0700 (PDT) Message-Id: <199810112244.PAA11926@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall/help hardware.hlp relnotes.hlp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/10/11 15:44:33 PDT Modified files: release/sysinstall/help hardware.hlp relnotes.hlp Log: Add comments about Luigi's audio drivers. Luigi said he had a better patch he'd commit if he could find it, but he hasn't done so so I'll assume he didn't find it :) Approved-by: jkh Revision Changes Path 1.40 +1 -0 src/release/sysinstall/help/hardware.hlp 1.93 +4 -1 src/release/sysinstall/help/relnotes.hlp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 16:34:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA05001 for cvs-all-outgoing; Sun, 11 Oct 1998 16:34:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA04989; Sun, 11 Oct 1998 16:34:40 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA13108; Sun, 11 Oct 1998 16:34:37 -0700 (PDT) Date: Sun, 11 Oct 1998 16:34:37 -0700 (PDT) Message-Id: <199810112334.QAA13108@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/comms/kpilot Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/11 16:34:37 PDT Modified files: comms/kpilot Makefile Log: Mark BROKEN for ELF. This hasn't been updated with new library names. Revision Changes Path 1.16 +3 -1 ports/comms/kpilot/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 16:36:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA05139 for cvs-all-outgoing; Sun, 11 Oct 1998 16:36:01 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA05118; Sun, 11 Oct 1998 16:35:57 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA13259; Sun, 11 Oct 1998 16:35:55 -0700 (PDT) Date: Sun, 11 Oct 1998 16:35:55 -0700 (PDT) Message-Id: <199810112335.QAA13259@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/graphics/hpscan Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/11 16:35:55 PDT Modified files: graphics/hpscan Makefile Log: MARK BROKEN for current. scsi.h Revision Changes Path 1.16 +6 -1 ports/graphics/hpscan/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 16:55:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA07628 for cvs-all-outgoing; Sun, 11 Oct 1998 16:55:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from sicily.odyssey.cs.cmu.edu (SICILY.ODYSSEY.CS.CMU.EDU [128.2.185.138]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id QAA07597; Sun, 11 Oct 1998 16:55:01 -0700 (PDT) (envelope-from rvb+@sicily.odyssey.cs.cmu.edu) To: Doug Rabson Cc: "Robert V. Baron" , Peter Wemm , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/sys kernel.h References: From: "Robert V. Baron" Date: 11 Oct 1998 19:54:16 -0400 In-Reply-To: Doug Rabson's message of Sat, 10 Oct 1998 22:09:20 +0100 (BST) Message-ID: Lines: 12 X-Mailer: Gnus v5.4.46/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk I like the model that I lump a bunch of files into a "module" and then the module initializes a bunch of "services/resources". Doug Rabson writes: > This is directly addressed by the KLD system. The terminology is that a > 'file' (ELF or a.out) is loaded by the kernel linker. The file contains a > number of 'modules', each of which is initialised and has an event handler > (similar to lkmdispatch). The kernel in many ways is a file which > contains all the statically linked modules. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 17:31:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA12464 for cvs-all-outgoing; Sun, 11 Oct 1998 17:31:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA12456; Sun, 11 Oct 1998 17:31:44 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA16244; Sun, 11 Oct 1998 17:31:43 -0700 (PDT) Date: Sun, 11 Oct 1998 17:31:43 -0700 (PDT) Message-Id: <199810120031.RAA16244@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/man/man4 xpt.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/11 17:31:43 PDT Added files: share/man/man4 xpt.4 Log: Add a man page for the transport layer driver.... my last commit blew up in the middle of adding this file... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 17:38:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA13348 for cvs-all-outgoing; Sun, 11 Oct 1998 17:38:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA13343; Sun, 11 Oct 1998 17:38:31 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA16393; Sun, 11 Oct 1998 17:38:30 -0700 (PDT) Date: Sun, 11 Oct 1998 17:38:30 -0700 (PDT) Message-Id: <199810120038.RAA16393@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pci - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/11 17:38:29 PDT src/sys/pci - Imported sources Update of /home/ncvs/src/sys/pci In directory freefall.freebsd.org:/x/tmp/cvs-serv16133 Log Message: Import the if_de driver from NetBSD-current as of yesterday onto the vendor branch. This isn't visible anywhere unless the changes are merged into the 3.0 mainline or the 2.2 branch. There are a number of important bugfixes here, but I'm waiting on a go/no-go from Jordan as to whether or not to risk it before 3.0. Status: Vendor Tag: NETBSD Release Tags: v981011 C src/sys/pci/if_de.c C src/sys/pci/if_devar.h U src/sys/pci/dc21040reg.h 2 conflicts created by this import. Use the following command to help the merge: cvs checkout -jNETBSD:yesterday -jNETBSD src/sys/pci To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 17:57:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA14860 for cvs-all-outgoing; Sun, 11 Oct 1998 17:57:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA14851; Sun, 11 Oct 1998 17:57:09 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA16765; Sun, 11 Oct 1998 17:57:08 -0700 (PDT) Date: Sun, 11 Oct 1998 17:57:08 -0700 (PDT) Message-Id: <199810120057.RAA16765@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/comms/pilot-link Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/11 17:57:08 PDT Modified files: comms/pilot-link Makefile Log: Mark for ELF: Creating gzip'd tar ball in '/usr/ports/packages/All/pilot-link-0.9.0.tgz' tar: can't add file lib/libpisock.so.3 : No such file or directory /usr/sbin/pkg_create: tar command failed with code 256 Revision Changes Path 1.22 +3 -1 ports/comms/pilot-link/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 18:03:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA15333 for cvs-all-outgoing; Sun, 11 Oct 1998 18:03:03 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA15327; Sun, 11 Oct 1998 18:03:02 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA17018; Sun, 11 Oct 1998 18:03:00 -0700 (PDT) Date: Sun, 11 Oct 1998 18:03:00 -0700 (PDT) Message-Id: <199810120103.SAA17018@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/loader Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/11 18:03:00 PDT Modified files: sys/boot/i386/loader Makefile Log: Use rather than for linking. This allows the new rather than stale version of libstand.a to be found. After this change, the new boot code is apparently building correctly in a make world. Revision Changes Path 1.11 +2 -2 src/sys/boot/i386/loader/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 18:05:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA15519 for cvs-all-outgoing; Sun, 11 Oct 1998 18:05:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA15513; Sun, 11 Oct 1998 18:05:10 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA17131; Sun, 11 Oct 1998 18:05:08 -0700 (PDT) Date: Sun, 11 Oct 1998 18:05:08 -0700 (PDT) Message-Id: <199810120105.SAA17131@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/graphics/mpeg_encode Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/11 18:05:07 PDT Modified files: graphics/mpeg_encode Makefile Log: Mark BROKEN for ELF: gcc -Iheaders -I/usr/include -Ijpeg -O -Wall -Wmissing-prototypes -o mpeg_encode mfwddct.o postdct.o huff.o bitio.o mheaders.o mpeg.o subsample.o param.o rgbtoycc.o readframe.o combine.o jrevdct.o frame.o fsize.o frametype.o libpnmrw.o specifics.o rate.o opts.o iframe.o pframe.o bframe.o psearch.o bsearch.o block.o parallel.o jpeg.o main.o -Ljpeg jpeg/libjpeg.a -lm gcc: jpeg/libjpeg.a: No such file or directory Revision Changes Path 1.6 +3 -1 ports/graphics/mpeg_encode/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 18:08:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA15939 for cvs-all-outgoing; Sun, 11 Oct 1998 18:08:29 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA15926; Sun, 11 Oct 1998 18:08:25 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA17331; Sun, 11 Oct 1998 18:08:24 -0700 (PDT) Date: Sun, 11 Oct 1998 18:08:24 -0700 (PDT) Message-Id: <199810120108.SAA17331@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/graphics/mpegedit Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/11 18:08:23 PDT Modified files: graphics/mpegedit Makefile Log: Mark BROKEN for ELF: g++ -O -I/usr/X11R6/include -o mpeg_edit main.o globals/version.o editor/editor.a ui/ui.a MpegCodec/mpeg.a -L/usr/X11R6/lib -lXext -lX11 -lpnm -lppm -lpbm -lpgm -lm cc: editor/editor.a: No such file or directory cc: ui/ui.a: No such file or directory cc: MpegCodec/mpeg.a: No such file or directory Revision Changes Path 1.7 +3 -1 ports/graphics/mpegedit/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 18:12:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA16455 for cvs-all-outgoing; Sun, 11 Oct 1998 18:12:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ceia.nordier.com (m2-42-dbn.dial-up.net [196.34.155.106]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA16444; Sun, 11 Oct 1998 18:12:47 -0700 (PDT) (envelope-from rnordier@nordier.com) Received: (from rnordier@localhost) by ceia.nordier.com (8.8.7/8.6.12) id DAA02071; Mon, 12 Oct 1998 03:11:45 +0200 (SAT) From: Robert Nordier Message-Id: <199810120111.DAA02071@ceia.nordier.com> Subject: Re: cvs commit: src/sys/boot/i386/loader Makefile In-Reply-To: <199810120103.SAA17018@freefall.freebsd.org> from Robert Nordier at "Oct 11, 98 06:03:00 pm" To: rnordier@FreeBSD.ORG (Robert Nordier) Date: Mon, 12 Oct 1998 03:11:42 +0200 (SAT) Cc: 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 Whoops, that commit message *should* have read: > rnordier 1998/10/11 18:03:00 PDT > > Modified files: > sys/boot/i386/loader Makefile > Log: ${CC} ${LD} > Use rather than for linking. This allows the new rather ^^ ^^ > than stale version of libstand.a to be found. > > After this change, the new boot code is apparently building correctly > in a make world. > > Revision Changes Path > 1.11 +2 -2 src/sys/boot/i386/loader/Makefile > -- Robert Nordier To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 18:21:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA17173 for cvs-all-outgoing; Sun, 11 Oct 1998 18:21:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from metal.intt.org (metal.intt.org [206.109.108.186]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA17143; Sun, 11 Oct 1998 18:21:30 -0700 (PDT) (envelope-from smace@metal.intt.org) Received: (from smace@localhost) by metal.intt.org (8.9.1/8.9.1) id BAA26265; Mon, 12 Oct 1998 01:21:18 GMT From: Scott Mace Message-Id: <199810120121.BAA26265@metal.intt.org> Subject: Re: cvs commit: src/gnu/usr.bin/perl Makefile.inc src/gnu/usr.bin/perl/miniperl Makefile src/gnu/usr.bin/perl/perl Makef In-Reply-To: <199810112233.WAA03640@metal.intt.org> from Scott Mace at "Oct 11, 1998 10:33:57 pm" To: smace@intt.ORG (Scott Mace) Date: Mon, 12 Oct 1998 01:21:18 +0000 (GMT) Cc: markm@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > > Revision Changes Path > > 1.6 +30 -8 src/gnu/usr.bin/perl/Makefile.inc > > 1.7 +3 -1 src/gnu/usr.bin/perl/miniperl/Makefile > > 1.15 +93 -67 src/gnu/usr.bin/perl/perl/Makefile > > 1.2 +6 -4 src/gnu/usr.bin/perl/pod/pod/Makefile > > 1.5 +28 -46 src/gnu/usr.bin/perl/suidperl/Makefile > > 1.2 +6 -1 src/gnu/usr.bin/perl/utils/h2ph/Makefile > > > > 1.6 version of src/gnu/usr.bin/perl/Makefile.inc needs dirname which is > not installed the tmp usr/bin build area. > > Scott > This seems to solve the problem cvs diff -c Makefile.inc1 Index: Makefile.inc1 =================================================================== RCS file: /usr/cvs/src/Makefile.inc1,v retrieving revision 1.32 diff -c -r1.32 Makefile.inc1 *** Makefile.inc1 1998/10/11 19:02:27 1.32 --- Makefile.inc1 1998/10/11 23:03:55 *************** *** 798,803 **** --- 798,804 ---- usr.bin/col \ usr.bin/colldef \ usr.bin/cpp \ + usr.bin/dirname \ usr.bin/expand \ usr.bin/file2c \ usr.bin/find \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 18:44:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA19512 for cvs-all-outgoing; Sun, 11 Oct 1998 18:44:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA19505; Sun, 11 Oct 1998 18:44:17 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA18288; Sun, 11 Oct 1998 18:44:15 -0700 (PDT) Date: Sun, 11 Oct 1998 18:44:15 -0700 (PDT) Message-Id: <199810120144.SAA18288@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/loader newvers.sh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/11 18:44:15 PDT Modified files: sys/boot/i386/loader newvers.sh Log: Do without head and tail: they're pretty unnecessary here anyway. Revision Changes Path 1.2 +2 -1 src/sys/boot/i386/loader/newvers.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 18:55:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA20420 for cvs-all-outgoing; Sun, 11 Oct 1998 18:55:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from resnet.uoregon.edu (resnet.uoregon.edu [128.223.144.32]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA20411 for ; Sun, 11 Oct 1998 18:55:10 -0700 (PDT) (envelope-from dwhite@resnet.uoregon.edu) Received: from localhost (dwhite@localhost) by resnet.uoregon.edu (8.8.8/8.8.8) with ESMTP id SAA11295; Sun, 11 Oct 1998 18:54:48 -0700 (PDT) (envelope-from dwhite@resnet.uoregon.edu) Date: Sun, 11 Oct 1998 18:54:47 -0700 (PDT) From: Doug White To: Matthew Dillon cc: cvs-committers@FreeBSD.ORG Subject: Re: Perl5 configure problem In-Reply-To: <199810112222.PAA26398@apollo.backplane.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, 11 Oct 1998, Matthew Dillon wrote: > Trying to make the perl5 dist in ports, this occurs: > > cd /usr/ports/lang/perl5 > make > > Directories to use for library searches? > [/usr/lib/aout /usr/local/lib /usr/lib] > > ... > ing /usr/bin/ar instead... > /usr/libexec/elf/ar: /usr/lib/aout/libc.so.3.1: File format not recognized ^^^ Hm, if you're running ELF you're running CURRENT, and CURRENT alreadyhas perl5. I'd say the port's deprecated and to use the system builtin. :) Doug White Internet: dwhite@resnet.uoregon.edu | FreeBSD: The Power to Serve http://gladstone.uoregon.edu/~dwhite | 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 Sun Oct 11 19:05:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA21115 for cvs-all-outgoing; Sun, 11 Oct 1998 19:05:49 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA21107; Sun, 11 Oct 1998 19:05:46 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA18656; Sun, 11 Oct 1998 19:05:44 -0700 (PDT) Date: Sun, 11 Oct 1998 19:05:44 -0700 (PDT) Message-Id: <199810120205.TAA18656@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/11 19:05:44 PDT Modified files: sys/boot/i386 Makefile Log: Drop .MAKEFLAGS: hack. Revision Changes Path 1.6 +1 -3 src/sys/boot/i386/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 19:14:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA21773 for cvs-all-outgoing; Sun, 11 Oct 1998 19:14:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from apollo.backplane.com (apollo.backplane.com [209.157.86.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA21768 for ; Sun, 11 Oct 1998 19:14:46 -0700 (PDT) (envelope-from dillon@apollo.backplane.com) Received: (from dillon@localhost) by apollo.backplane.com (8.9.1/8.9.1) id TAA10625; Sun, 11 Oct 1998 19:14:29 -0700 (PDT) (envelope-from dillon) Date: Sun, 11 Oct 1998 19:14:29 -0700 (PDT) From: Matthew Dillon Message-Id: <199810120214.TAA10625@apollo.backplane.com> To: Doug White Cc: cvs-committers@FreeBSD.ORG Subject: Re: Perl5 configure problem Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk :> /usr/libexec/elf/ar: /usr/lib/aout/libc.so.3.1: File format not recognized : ^^^ : :Hm, if you're running ELF you're running CURRENT, and CURRENT alreadyhas :perl5. I'd say the port's deprecated and to use the system builtin. :) : :Doug White :Internet: dwhite@resnet.uoregon.edu | FreeBSD: The Power to Serve :http://gladstone.uoregon.edu/~dwhite | www.freebsd.org Well, yes and no. It seems rather weird for perl to be part of the system dist, but that alone isn't a big deal. My worry is that the system version perl5 is not going to be kept as up to date as the port version of perl5. For example, the current system perl5 appears to be 5.004 while the port perl5 is 5.005. -Matt Matthew Dillon Engineering, HiWay Technologies, Inc. & BEST Internet Communications & God knows what else. (Please include original email in any response) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 19:59:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA24391 for cvs-all-outgoing; Sun, 11 Oct 1998 19:59:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA24386; Sun, 11 Oct 1998 19:59:14 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA19699; Sun, 11 Oct 1998 19:59:13 -0700 (PDT) Date: Sun, 11 Oct 1998 19:59:13 -0700 (PDT) Message-Id: <199810120259.TAA19699@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/graphics/p5-Image-Size Makefile ports/converters/p5-Convert-UU Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/11 19:59:12 PDT Modified files: graphics/p5-Image-Size Makefile converters/p5-Convert-UU Makefile Log: Mark BROKEN for current: The path for perl man pages is incorrect Revision Changes Path 1.15 +6 -1 ports/graphics/p5-Image-Size/Makefile 1.16 +6 -1 ports/converters/p5-Convert-UU/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 20:15:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA25362 for cvs-all-outgoing; Sun, 11 Oct 1998 20:15:49 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA25357; Sun, 11 Oct 1998 20:15:48 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA20112; Sun, 11 Oct 1998 20:15:47 -0700 (PDT) Date: Sun, 11 Oct 1998 20:15:47 -0700 (PDT) Message-Id: <199810120315.UAA20112@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/comms/pilot-link/patches patch-ad patch-ae Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/11 20:15:46 PDT Added files: comms/pilot-link/patches patch-ad patch-ae Log: ELF fixes. Submitted by: dima To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 20:18:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA25668 for cvs-all-outgoing; Sun, 11 Oct 1998 20:18:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA25662; Sun, 11 Oct 1998 20:17:57 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA20172; Sun, 11 Oct 1998 20:17:56 -0700 (PDT) Date: Sun, 11 Oct 1998 20:17:56 -0700 (PDT) Message-Id: <199810120317.UAA20172@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/p5-pRPC Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/11 20:17:55 PDT Modified files: net/p5-pRPC Makefile Log: Mark BROKEN for current : standard perl path problems Revision Changes Path 1.3 +6 -1 ports/net/p5-pRPC/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 20:19:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA25871 for cvs-all-outgoing; Sun, 11 Oct 1998 20:19:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA25865; Sun, 11 Oct 1998 20:19:05 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA20212; Sun, 11 Oct 1998 20:19:04 -0700 (PDT) Date: Sun, 11 Oct 1998 20:19:04 -0700 (PDT) Message-Id: <199810120319.UAA20212@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/graphics/pgplot Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/11 20:19:04 PDT Modified files: graphics/pgplot Makefile Log: Mark BROKEN for current: ./makehtml: not found *** Error code 127 Stop. Revision Changes Path 1.6 +6 -1 ports/graphics/pgplot/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 20:21:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA26096 for cvs-all-outgoing; Sun, 11 Oct 1998 20:21:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA26091; Sun, 11 Oct 1998 20:21:42 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA20272; Sun, 11 Oct 1998 20:21:40 -0700 (PDT) Date: Sun, 11 Oct 1998 20:21:40 -0700 (PDT) Message-Id: <199810120321.UAA20272@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/graphics/pgperl Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/11 20:21:40 PDT Modified files: graphics/pgperl Makefile Log: Mark BROKEN for current. Depends on BROKEN pgplot Revision Changes Path 1.11 +6 -1 ports/graphics/pgperl/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 20:27:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA26415 for cvs-all-outgoing; Sun, 11 Oct 1998 20:27:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA26408; Sun, 11 Oct 1998 20:27:53 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA20438; Sun, 11 Oct 1998 20:27:52 -0700 (PDT) Date: Sun, 11 Oct 1998 20:27:52 -0700 (PDT) Message-Id: <199810120327.UAA20438@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/man/man4 cd.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/11 20:27:51 PDT Modified files: share/man/man4 cd.4 Log: Update the cd(4) man page for the CAM cd driver. This includes a description of the changer timeout kernel options and sysctl variables. I didn't check to make sure the ioctl descriptions are up to date; that will come sometime later. (The ioctls haven't changed in the CAM driver, but I'm not sure if the man page was in sync with even the old driver.) Revision Changes Path 1.12 +76 -15 src/share/man/man4/cd.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 21:04:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA29795 for cvs-all-outgoing; Sun, 11 Oct 1998 21:04:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA29790; Sun, 11 Oct 1998 21:04:29 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA22005; Sun, 11 Oct 1998 21:04:28 -0700 (PDT) Date: Sun, 11 Oct 1998 21:04:28 -0700 (PDT) Message-Id: <199810120404.VAA22005@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/databases/p5-DBI Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/11 21:04:28 PDT Modified files: databases/p5-DBI Makefile Log: Mark BROKEN for current: ===> Compressing manual pages for p5-DBI-1.02 /usr/local/man//man1/dbiproxy.1: No such file or directory *** Error code 1 Revision Changes Path 1.17 +6 -1 ports/databases/p5-DBI/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 21:05:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA29881 for cvs-all-outgoing; Sun, 11 Oct 1998 21:05:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA29876; Sun, 11 Oct 1998 21:05:34 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA22077; Sun, 11 Oct 1998 21:05:33 -0700 (PDT) Date: Sun, 11 Oct 1998 21:05:33 -0700 (PDT) Message-Id: <199810120405.VAA22077@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/graphics/rayshade Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/11 21:05:33 PDT Modified files: graphics/rayshade Makefile Log: Mark BROKEN for ELF: bray/libray.a /usr/local/lib/librle.a -lm ../libshade/libshade.a(setup.o): In function `RSSetup': setup.o(.text+0x2bf): undefined reference to `SurfPush' ../libshade/libshade.a(shade.o): In function `ShadeRay': shade.o(.text+0xb7): undefined reference to `ComputeSurfProps' shade.o(.text+0x115): undefined reference to `Atmospherics' ../libshade/libshade.a(shade.o): In function `TransmitRay': shade.o(.text+0x714): undefined reference to `MediumPush' ../libshade/libshade.a(yacc.o): In function `yyparse': yacc.o(.text+0x1942): undefined reference to `SurfaceCopy' yacc.o(.text+0x196a): undefined reference to `SurfaceCopy' yacc.o(.text+0x199c): undefined reference to `SurfaceCopy' and about 20 more lines of similar errors Revision Changes Path 1.2 +3 -1 ports/graphics/rayshade/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 21:09:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA00472 for cvs-all-outgoing; Sun, 11 Oct 1998 21:09:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA00467; Sun, 11 Oct 1998 21:09:51 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA22208; Sun, 11 Oct 1998 21:09:50 -0700 (PDT) Date: Sun, 11 Oct 1998 21:09:50 -0700 (PDT) Message-Id: <199810120409.VAA22208@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/man/man9 cd.9 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/11 21:09:50 PDT Modified files: share/man/man9 cd.9 Log: Update the cd(9) man page for the CAM cd driver. This really just an update of the quirk entry descriptions to reflect the current state of things. Once I find out where such things belong, I'll document things like the changer scheduling mechanism, actions taken at probe, etc. Revision Changes Path 1.8 +32 -16 src/share/man/man9/cd.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 21:12:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA00754 for cvs-all-outgoing; Sun, 11 Oct 1998 21:12:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA00745; Sun, 11 Oct 1998 21:12:36 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA22308; Sun, 11 Oct 1998 21:12:35 -0700 (PDT) Date: Sun, 11 Oct 1998 21:12:35 -0700 (PDT) Message-Id: <199810120412.VAA22308@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/databases/postgresql Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/11 21:12:35 PDT Modified files: databases/postgresql Makefile Log: Mark BROKEN for ELF: ld -x -Bshareable -Bforcearchive -o libpq.so.1.1 fe-auth.o fe-connect.o fe-exec.o fe-misc.o fe-lobj.o dllist.o pqsignal.o pqcomprim.o /usr/libexec/elf/ld: unrecognized option `-Bforcearchive' gmake[2]: *** [libpq.so.1.1] Error 1 gmake[2]: Leaving directory `/usr/ports/databases/postgresql/work/postgresql-6.3.2/src/interfaces/libpq' gmake[1]: *** [all] Error 2 gmake[1]: Leaving directory `/usr/ports/databases/postgresql/work/postgresql-6.3.2/src/interfaces' gmake: *** [all] Error 2 Revision Changes Path 1.27 +3 -1 ports/databases/postgresql/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 21:14:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA00941 for cvs-all-outgoing; Sun, 11 Oct 1998 21:14:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA00935; Sun, 11 Oct 1998 21:14:46 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA22425; Sun, 11 Oct 1998 21:14:44 -0700 (PDT) Date: Sun, 11 Oct 1998 21:14:44 -0700 (PDT) Message-Id: <199810120414.VAA22425@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/databases/p5-DBD-Pg Makefile ports/databases/p5-Pg Makefile ports/databases/py-PyGreSQL Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/11 21:14:44 PDT Modified files: databases/p5-DBD-Pg Makefile databases/p5-Pg Makefile databases/py-PyGreSQL Makefile Log: Mark ports that depends on postgresql BROKEN for ELF Revision Changes Path 1.9 +3 -1 ports/databases/p5-DBD-Pg/Makefile 1.14 +3 -1 ports/databases/p5-Pg/Makefile 1.8 +3 -1 ports/databases/py-PyGreSQL/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 21:17:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA01197 for cvs-all-outgoing; Sun, 11 Oct 1998 21:17:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au (spinner.netplex.com.au [202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA01191 for ; Sun, 11 Oct 1998 21:17:51 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.9.1/8.9.1/Spinner) with ESMTP id LAA23328; Mon, 12 Oct 1998 11:47:29 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199810120347.LAA23328@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: Matthew Dillon cc: Doug White , cvs-committers@FreeBSD.ORG Subject: Re: Perl5 configure problem In-reply-to: Your message of "Sun, 11 Oct 1998 19:14:29 MST." <199810120214.TAA10625@apollo.backplane.com> Date: Mon, 12 Oct 1998 11:47:29 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Matthew Dillon wrote: > > :> /usr/libexec/elf/ar: /usr/lib/aout/libc.so.3.1: File format not recognized > : ^^^ > : > :Hm, if you're running ELF you're running CURRENT, and CURRENT alreadyhas > :perl5. I'd say the port's deprecated and to use the system builtin. :) > : > :Doug White > :Internet: dwhite@resnet.uoregon.edu | FreeBSD: The Power to Serve > :http://gladstone.uoregon.edu/~dwhite | www.freebsd.org > > Well, yes and no. It seems rather weird for perl to be part > of the system dist, but that alone isn't a big deal. > > My worry is that the system version perl5 is not going to be > kept as up to date as the port version of perl5. For example, > the current system perl5 appears to be 5.004 while the port > perl5 is 5.005. peter@spinner[11:46am]~src/sys_elf/kern-180> /usr/bin/perl5 -v This is perl, version 5.005_02 built for i386-freebsd [..] 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 Oct 11 21:19:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA01354 for cvs-all-outgoing; Sun, 11 Oct 1998 21:19:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA01344; Sun, 11 Oct 1998 21:19:28 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA22552; Sun, 11 Oct 1998 21:19:27 -0700 (PDT) Date: Sun, 11 Oct 1998 21:19:27 -0700 (PDT) Message-Id: <199810120419.VAA22552@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/p5-Data-ShowTable Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/11 21:19:27 PDT Modified files: devel/p5-Data-ShowTable Makefile Log: Mark BROKEN for current: ===> Generating temporary packing list ===> Compressing manual pages for p5-Data-ShowTable-3.3 /usr/local/man//man1/showtable.1: No such file or directory *** Error code 1 Revision Changes Path 1.6 +6 -1 ports/devel/p5-Data-ShowTable/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 21:25:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA01840 for cvs-all-outgoing; Sun, 11 Oct 1998 21:25:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA01835; Sun, 11 Oct 1998 21:25:36 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA22796; Sun, 11 Oct 1998 21:25:35 -0700 (PDT) Date: Sun, 11 Oct 1998 21:25:35 -0700 (PDT) Message-Id: <199810120425.VAA22796@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/graphics/hpscan Makefile ports/graphics/hpscan/files Imakefile ports/graphics/hpscan/patches patch-ah patch-ad patch-ae patch-af Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/11 21:25:34 PDT Modified files: graphics/hpscan Makefile graphics/hpscan/patches patch-ad patch-ae patch-af Added files: graphics/hpscan/files Imakefile graphics/hpscan/patches patch-ah Log: Unbreak for current. Submitted by: sprice Revision Changes Path 1.17 +3 -5 ports/graphics/hpscan/Makefile 1.2 +15 -17 ports/graphics/hpscan/patches/patch-ad 1.3 +0 -9 ports/graphics/hpscan/patches/patch-ae 1.2 +57 -16 ports/graphics/hpscan/patches/patch-af To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 21:26:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA02054 for cvs-all-outgoing; Sun, 11 Oct 1998 21:26:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA02038; Sun, 11 Oct 1998 21:26:24 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA22840; Sun, 11 Oct 1998 21:26:23 -0700 (PDT) Date: Sun, 11 Oct 1998 21:26:23 -0700 (PDT) Message-Id: <199810120426.VAA22840@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/databases/p5-Mysql Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/11 21:26:23 PDT Modified files: databases/p5-Mysql Makefile Log: Mark BROKEN for ELF: depends on BROKEN mysql-3.21.33 Revision Changes Path 1.11 +3 -1 ports/databases/p5-Mysql/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 21:34:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA03137 for cvs-all-outgoing; Sun, 11 Oct 1998 21:34:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from dingo.cdrom.com (castles306.castles.com [208.214.167.6]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA02861; Sun, 11 Oct 1998 21:31:58 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id VAA03290; Sun, 11 Oct 1998 21:36:34 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Message-Id: <199810120436.VAA03290@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: "Robert V. Baron" cc: Doug Rabson , Peter Wemm , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/sys kernel.h In-reply-to: Your message of "11 Oct 1998 19:54:16 EDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 11 Oct 1998 21:36:33 -0700 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk I actually also preferred this terminology; to me a module is a pluggable unit component, which may serve multiple functions but is effectively the atomic unit when it comes to mobility and connection. This is something that can be argued endlessly; I'm not sure that a debate would help at all. > > I like the model that I lump a bunch of files into a "module" and then > the module initializes a bunch of "services/resources". > > Doug Rabson writes: > > > This is directly addressed by the KLD system. The terminology is that a > > 'file' (ELF or a.out) is loaded by the kernel linker. The file contains a > > number of 'modules', each of which is initialised and has an event handler > > (similar to lkmdispatch). The kernel in many ways is a file which > > contains all the statically linked modules. > > -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 21:41:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA03730 for cvs-all-outgoing; Sun, 11 Oct 1998 21:41:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from apollo.backplane.com (apollo.backplane.com [209.157.86.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA03725 for ; Sun, 11 Oct 1998 21:41:54 -0700 (PDT) (envelope-from dillon@apollo.backplane.com) Received: (from dillon@localhost) by apollo.backplane.com (8.9.1/8.9.1) id VAA11676; Sun, 11 Oct 1998 21:41:25 -0700 (PDT) (envelope-from dillon) Date: Sun, 11 Oct 1998 21:41:25 -0700 (PDT) From: Matthew Dillon Message-Id: <199810120441.VAA11676@apollo.backplane.com> To: Peter Wemm Cc: Doug White , cvs-committers@FreeBSD.ORG Subject: Re: Perl5 configure problem References: <199810120347.LAA23328@spinner.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk :> :> My worry is that the system version perl5 is not going to be :> kept as up to date as the port version of perl5. For example, :> the current system perl5 appears to be 5.004 while the port :> perl5 is 5.005. : :peter@spinner[11:46am]~src/sys_elf/kern-180> /usr/bin/perl5 -v : :This is perl, version 5.005_02 built for i386-freebsd :[..] : :Cheers, :-Peter urp. ok. cvs update time. Hrmm.. make world time, probably. -Matt Matthew Dillon Engineering, HiWay Technologies, Inc. & BEST Internet Communications & God knows what else. (Please include original email in any response) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 22:59:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA09600 for cvs-all-outgoing; Sun, 11 Oct 1998 22:59:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA09584; Sun, 11 Oct 1998 22:59:11 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grondar.za (IDENT:Sxjt82i3GgFpStN1JKFmDYa1cu81kuhO@localhost [127.0.0.1]) by gratis.grondar.za (8.9.1/8.9.1) with ESMTP id HAA27788; Mon, 12 Oct 1998 07:58:36 +0200 (SAST) (envelope-from mark@grondar.za) Message-Id: <199810120558.HAA27788@gratis.grondar.za> To: Scott Mace cc: markm@FreeBSD.ORG (Mark Murray), cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/gnu/usr.bin/perl Makefile.inc src/gnu/usr.bin/perl/miniperl Makefile src/gnu/usr.bin/perl/perl Makefile In-Reply-To: Your message of " Sun, 11 Oct 1998 22:33:57 GMT." <199810112233.WAA03640@metal.intt.org> References: <199810112233.WAA03640@metal.intt.org> Date: Mon, 12 Oct 1998 07:58:33 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Scott Mace wrote: > 1.6 version of src/gnu/usr.bin/perl/Makefile.inc needs dirname which is > not installed the tmp usr/bin build area. Fix coming. 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 Sun Oct 11 23:00:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA09679 for cvs-all-outgoing; Sun, 11 Oct 1998 23:00:03 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA09636 for ; Sun, 11 Oct 1998 23:00:00 -0700 (PDT) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sjx-ca115-40.ix.netcom.com [207.223.162.104]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id WAA28402; Sun, 11 Oct 1998 22:59:31 -0700 (PDT) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id WAA15696; Sun, 11 Oct 1998 22:59:14 -0700 (PDT) (envelope-from asami) Date: Sun, 11 Oct 1998 22:59:14 -0700 (PDT) Message-Id: <199810120559.WAA15696@bubble.didi.com> To: dillon@apollo.backplane.com CC: peter@netplex.com.au, dwhite@resnet.uoregon.edu, cvs-committers@FreeBSD.ORG In-reply-to: <199810120441.VAA11676@apollo.backplane.com> (message from Matthew Dillon on Sun, 11 Oct 1998 21:41:25 -0700 (PDT)) Subject: Re: Perl5 configure problem From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * :> My worry is that the system version perl5 is not going to be * :> kept as up to date as the port version of perl5. For example, * :> the current system perl5 appears to be 5.004 while the port * :> perl5 is 5.005. * : * :peter@spinner[11:46am]~src/sys_elf/kern-180> /usr/bin/perl5 -v * : * :This is perl, version 5.005_02 built for i386-freebsd * :[..] * : * :Cheers, * :-Peter * * urp. ok. cvs update time. Hrmm.. make world time, probably. What are you talking about? 5.004 has *never* been imported to the source tree. Geeze, can we cut down on the noise please? The S/N ratio of the lists are awful these days. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 23:00:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA09728 for cvs-all-outgoing; Sun, 11 Oct 1998 23:00:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA09723; Sun, 11 Oct 1998 23:00:32 -0700 (PDT) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA25464; Sun, 11 Oct 1998 23:00:31 -0700 (PDT) Date: Sun, 11 Oct 1998 23:00:31 -0700 (PDT) Message-Id: <199810120600.XAA25464@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/perl Makefile.inc Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/10/11 23:00:31 PDT Modified files: gnu/usr.bin/perl Makefile.inc Log: Damn - dirname(1) is not available this early. Work-around. Revision Changes Path 1.7 +3 -5 src/gnu/usr.bin/perl/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 23:11:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA10737 for cvs-all-outgoing; Sun, 11 Oct 1998 23:11:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA10732; Sun, 11 Oct 1998 23:11:04 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA25736; Sun, 11 Oct 1998 23:11:03 -0700 (PDT) Date: Sun, 11 Oct 1998 23:11:03 -0700 (PDT) Message-Id: <199810120611.XAA25736@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/chinese/CJK/pkg COMMENT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/10/11 23:11:03 PDT Modified files: chinese/CJK/pkg COMMENT Log: Correct pkg/COMMENT. Remind by: asami Revision Changes Path 1.2 +1 -1 ports/chinese/CJK/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 Oct 11 23:13:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA10964 for cvs-all-outgoing; Sun, 11 Oct 1998 23:13:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA10955; Sun, 11 Oct 1998 23:13:49 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA25874; Sun, 11 Oct 1998 23:13:48 -0700 (PDT) Date: Sun, 11 Oct 1998 23:13:48 -0700 (PDT) Message-Id: <199810120613.XAA25874@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/sysutils/gtop Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk vanilla 1998/10/11 23:13:48 PDT Modified files: sysutils/gtop Makefile Log: Typo error. Submitted by: maintainer. Revision Changes Path 1.2 +2 -2 ports/sysutils/gtop/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 23:18:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA11472 for cvs-all-outgoing; Sun, 11 Oct 1998 23:18:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA11441; Sun, 11 Oct 1998 23:18:26 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grondar.za (IDENT:M7KpxHe+CLLjPS8FRZnA8rlZvWshQg0V@localhost [127.0.0.1]) by gratis.grondar.za (8.9.1/8.9.1) with ESMTP id IAA27911; Mon, 12 Oct 1998 08:18:01 +0200 (SAST) (envelope-from mark@grondar.za) Message-Id: <199810120618.IAA27911@gratis.grondar.za> To: Scott Mace cc: markm@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/gnu/usr.bin/perl Makefile.inc src/gnu/usr.bin/perl/miniperl Makefile src/gnu/usr.bin/perl/perl Makef In-Reply-To: Your message of " Mon, 12 Oct 1998 01:21:18 GMT." <199810120121.BAA26265@metal.intt.org> References: <199810120121.BAA26265@metal.intt.org> Date: Mon, 12 Oct 1998 08:17:59 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Scott Mace wrote: > This seems to solve the problem : > + usr.bin/dirname \ I just committed a fix that simplifies my own script :-). Thanks for the patch, though; much better than "ITS BROKE, HOW CAN I FIX IT??!!" 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 Sun Oct 11 23:27:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA12199 for cvs-all-outgoing; Sun, 11 Oct 1998 23:27:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA12186 for ; Sun, 11 Oct 1998 23:26:59 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grondar.za (IDENT:1xGAFuXXgb5juEvocnjBN0LV51slr7D6@localhost [127.0.0.1]) by gratis.grondar.za (8.9.1/8.9.1) with ESMTP id IAA27973; Mon, 12 Oct 1998 08:26:27 +0200 (SAST) (envelope-from mark@grondar.za) Message-Id: <199810120626.IAA27973@gratis.grondar.za> To: Matthew Dillon cc: cvs-committers@FreeBSD.ORG Subject: Re: Perl5 configure problem In-Reply-To: Your message of " Sun, 11 Oct 1998 15:22:40 MST." <199810112222.PAA26398@apollo.backplane.com> References: <199810112222.PAA26398@apollo.backplane.com> Date: Mon, 12 Oct 1998 08:26:24 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Matthew Dillon wrote: > Trying to make the perl5 dist in ports, this occurs: Perl5 in ports is broken for 3.0/ELF. Use the "contrib"'-ed one rather. 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 Sun Oct 11 23:29:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA12425 for cvs-all-outgoing; Sun, 11 Oct 1998 23:29:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA12420 for ; Sun, 11 Oct 1998 23:29:35 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grondar.za (IDENT:t9533DJvfxmMoUQIAzUAyQe3KDx4Pn/4@localhost [127.0.0.1]) by gratis.grondar.za (8.9.1/8.9.1) with ESMTP id IAA28038; Mon, 12 Oct 1998 08:28:53 +0200 (SAST) (envelope-from mark@grondar.za) Message-Id: <199810120628.IAA28038@gratis.grondar.za> To: Matthew Dillon cc: Doug White , cvs-committers@FreeBSD.ORG Subject: Re: Perl5 configure problem In-Reply-To: Your message of " Sun, 11 Oct 1998 19:14:29 MST." <199810120214.TAA10625@apollo.backplane.com> References: <199810120214.TAA10625@apollo.backplane.com> Date: Mon, 12 Oct 1998 08:28:51 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Matthew Dillon wrote: > My worry is that the system version perl5 is not going to be > kept as up to date as the port version of perl5. For example, > the current system perl5 appears to be 5.004 while the port > perl5 is 5.005. Incorrect. What gave you that idea? System perl 5 is 5.00502. 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 Sun Oct 11 23:34:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA12867 for cvs-all-outgoing; Sun, 11 Oct 1998 23:34:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA12859 for ; Sun, 11 Oct 1998 23:34:12 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grondar.za (IDENT:0BSgNNlpOlRGqzLP2bA9J7VOBEfLCLaM@localhost [127.0.0.1]) by gratis.grondar.za (8.9.1/8.9.1) with ESMTP id IAA28112; Mon, 12 Oct 1998 08:31:44 +0200 (SAST) (envelope-from mark@grondar.za) Message-Id: <199810120631.IAA28112@gratis.grondar.za> To: Matthew Dillon cc: Peter Wemm , Doug White , cvs-committers@FreeBSD.ORG Subject: Re: Perl5 configure problem In-Reply-To: Your message of " Sun, 11 Oct 1998 21:41:25 MST." <199810120441.VAA11676@apollo.backplane.com> References: <199810120347.LAA23328@spinner.netplex.com.au> <199810120441.VAA11676@apollo.backplane.com> Date: Mon, 12 Oct 1998 08:31:42 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Matthew Dillon wrote: > urp. ok. cvs update time. Hrmm.. make world time, probably. "Stop smoking crack time" ;-) Sysyem perl has _never_ been anything other than 4.nnn or 5.00502. 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 Sun Oct 11 23:35:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA12981 for cvs-all-outgoing; Sun, 11 Oct 1998 23:35:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from austin.polstra.com (austin.polstra.com [206.213.73.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA12970; Sun, 11 Oct 1998 23:35:35 -0700 (PDT) (envelope-from jdp@austin.polstra.com) Received: from austin.polstra.com (jdp@localhost) by austin.polstra.com (8.9.1/8.9.1) with ESMTP id XAA26486; Sun, 11 Oct 1998 23:35:23 -0700 (PDT) (envelope-from jdp) Message-Id: <199810120635.XAA26486@austin.polstra.com> To: markm@FreeBSD.ORG Subject: Re: cvs commit: src/gnu/usr.bin/perl Makefile.inc In-Reply-To: <199810120600.XAA25464@freefall.freebsd.org> References: <199810120600.XAA25464@freefall.freebsd.org> Organization: Polstra & Co., Seattle, WA Cc: committers@FreeBSD.ORG Date: Sun, 11 Oct 1998 23:35:23 -0700 From: John Polstra Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > markm 1998/10/11 23:00:31 PDT > > Modified files: > gnu/usr.bin/perl Makefile.inc > Log: > Damn - dirname(1) is not available this early. Work-around. FWIW, you can get the same effect in the shell with "${foo%/*}": vashon$ sh $ foo=/usr/src/gnu/usr.bin/Makefile $ echo ${foo%/*} /usr/src/gnu/usr.bin John -- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Self-knowledge is always bad news." -- John Barth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 23:38:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA13406 for cvs-all-outgoing; Sun, 11 Oct 1998 23:38:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA13344; Sun, 11 Oct 1998 23:38:14 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grondar.za (IDENT:j6AYxJ1ncosoxfAue0cZxXsGLgqgYFkM@localhost [127.0.0.1]) by gratis.grondar.za (8.9.1/8.9.1) with ESMTP id IAA28170; Mon, 12 Oct 1998 08:37:42 +0200 (SAST) (envelope-from mark@grondar.za) Message-Id: <199810120637.IAA28170@gratis.grondar.za> To: John Polstra cc: markm@FreeBSD.ORG, committers@FreeBSD.ORG Subject: Re: cvs commit: src/gnu/usr.bin/perl Makefile.inc In-Reply-To: Your message of " Sun, 11 Oct 1998 23:35:23 MST." <199810120635.XAA26486@austin.polstra.com> References: <199810120600.XAA25464@freefall.freebsd.org> <199810120635.XAA26486@austin.polstra.com> Date: Mon, 12 Oct 1998 08:37:39 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk John Polstra wrote: > > Damn - dirname(1) is not available this early. Work-around. > > FWIW, you can get the same effect in the shell with "${foo%/*}": This is true :-). I always forget that one; 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 Sun Oct 11 23:43:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA14182 for cvs-all-outgoing; Sun, 11 Oct 1998 23:43:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA14174; Sun, 11 Oct 1998 23:43:05 -0700 (PDT) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sjx-ca115-40.ix.netcom.com [207.223.162.104]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id XAA28441; Sun, 11 Oct 1998 23:42:50 -0700 (PDT) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id XAA15792; Sun, 11 Oct 1998 23:42:46 -0700 (PDT) (envelope-from asami) Date: Sun, 11 Oct 1998 23:42:46 -0700 (PDT) Message-Id: <199810120642.XAA15792@bubble.didi.com> To: vanilla@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199810120611.XAA25736@freefall.freebsd.org> (vanilla@FreeBSD.ORG) Subject: Re: cvs commit: ports/chinese/CJK/pkg COMMENT From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * vanilla 1998/10/11 23:11:03 PDT Hey, the tree is frozen now! Did you get Justin's ok? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Oct 11 23:51:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA14957 for cvs-all-outgoing; Sun, 11 Oct 1998 23:51:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA14952; Sun, 11 Oct 1998 23:51:09 -0700 (PDT) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA26861; Sun, 11 Oct 1998 23:51:08 -0700 (PDT) Date: Sun, 11 Oct 1998 23:51:08 -0700 (PDT) Message-Id: <199810120651.XAA26861@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/perl5 Makefile ports/lang/perl5/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/10/11 23:51:08 PDT Modified files: lang/perl5 Makefile lang/perl5/pkg PLIST Log: Perl 5 is in the system. Mark this port broken for 3.0 for that reason. (Also minor repairs to PLIST - nuke ranlibs) Reviewed by: asami OK-ed by: jseger Revision Changes Path 1.26 +6 -1 ports/lang/perl5/Makefile 1.20 +0 -2 ports/lang/perl5/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 Oct 12 00:52:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA20917 for cvs-all-outgoing; Mon, 12 Oct 1998 00:52:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA20912; Mon, 12 Oct 1998 00:52:36 -0700 (PDT) (envelope-from abial@FreeBSD.org) From: Andrzej Bialecki Received: (from abial@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA28559; Mon, 12 Oct 1998 00:52:35 -0700 (PDT) Date: Mon, 12 Oct 1998 00:52:35 -0700 (PDT) Message-Id: <199810120752.AAA28559@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/picobsd/doc/src bugs.html Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk abial 1998/10/12 00:52:34 PDT Modified files: release/picobsd/doc/src bugs.html Log: Update featu^H^H^H^H^Hbug list. Revision Changes Path 1.3 +9 -2 src/release/picobsd/doc/src/bugs.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 00:53:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA21001 for cvs-all-outgoing; Mon, 12 Oct 1998 00:53:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA20996; Mon, 12 Oct 1998 00:53:36 -0700 (PDT) (envelope-from abial@FreeBSD.org) From: Andrzej Bialecki Received: (from abial@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA28632; Mon, 12 Oct 1998 00:53:34 -0700 (PDT) Date: Mon, 12 Oct 1998 00:53:34 -0700 (PDT) Message-Id: <199810120753.AAA28632@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/picobsd/doc/src intro.html Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk abial 1998/10/12 00:53:34 PDT Modified files: release/picobsd/doc/src intro.html Log: Update the date for standalone tarball. Revision Changes Path 1.3 +2 -2 src/release/picobsd/doc/src/intro.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 01:30:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA25603 for cvs-all-outgoing; Mon, 12 Oct 1998 01:30:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mail.scsn.net (scsn.net [206.25.246.12]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA25597; Mon, 12 Oct 1998 01:30:11 -0700 (PDT) (envelope-from dmaddox@scsn.net) Received: from rhiannon.scsn.net ([209.12.57.81]) by mail.scsn.net (Post.Office MTA v3.1.2 release (PO205-101c) ID# 0-41950U6000L1100S0) with ESMTP id AAA129; Mon, 12 Oct 1998 04:20:58 -0400 Received: (from dmaddox@localhost) by rhiannon.scsn.net (8.9.1/8.9.1) id EAA01356; Mon, 12 Oct 1998 04:29:54 -0400 (EDT) (envelope-from dmaddox) Message-ID: <19981012042954.C1296@scsn.net> Date: Mon, 12 Oct 1998 04:29:54 -0400 From: dmaddox@scsn.net (Donald J. Maddox) To: Mark Murray , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/lang/perl5 Makefile ports/lang/perl5/pkg PLIST Reply-To: dmaddox@scsn.net References: <199810120651.XAA26861@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199810120651.XAA26861@freefall.freebsd.org>; from Mark Murray on Sun, Oct 11, 1998 at 11:51:08PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Sun, Oct 11, 1998 at 11:51:08PM -0700, Mark Murray wrote: > markm 1998/10/11 23:51:08 PDT > > Modified files: > lang/perl5 Makefile > lang/perl5/pkg PLIST > Log: > Perl 5 is in the system. Mark this port broken for 3.0 for that reason. There may be good reasons to mark this broken, but it seems to me that this is not one of them. When TCL was in the system, we still had a choice... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 02:02:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA28044 for cvs-all-outgoing; Mon, 12 Oct 1998 02:02:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA28034; Mon, 12 Oct 1998 02:02:21 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA01084; Mon, 12 Oct 1998 02:02:19 -0700 (PDT) Date: Mon, 12 Oct 1998 02:02:19 -0700 (PDT) Message-Id: <199810120902.CAA01084@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/ufs/mfs mfs_vfsops.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/12 02:02:19 PDT Modified files: sys/ufs/mfs mfs_vfsops.c Log: "fix" a warning Revision Changes Path 1.51 +2 -3 src/sys/ufs/mfs/mfs_vfsops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 02:03:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA28124 for cvs-all-outgoing; Mon, 12 Oct 1998 02:03:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA28119; Mon, 12 Oct 1998 02:03:52 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA01138; Mon, 12 Oct 1998 02:03:50 -0700 (PDT) Date: Mon, 12 Oct 1998 02:03:50 -0700 (PDT) Message-Id: <199810120903.CAA01138@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern subr_module.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/12 02:03:49 PDT Modified files: sys/kern subr_module.c Log: Relocate a few extra addresses that are stored as physical addresses via the boot loader. Revision Changes Path 1.3 +7 -3 src/sys/kern/subr_module.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 02:05:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA28365 for cvs-all-outgoing; Mon, 12 Oct 1998 02:05:20 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA28357; Mon, 12 Oct 1998 02:05:14 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA01210; Mon, 12 Oct 1998 02:05:12 -0700 (PDT) Date: Mon, 12 Oct 1998 02:05:12 -0700 (PDT) Message-Id: <199810120905.CAA01210@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/common load_aout.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/12 02:05:12 PDT Modified files: sys/boot/common load_aout.c Log: Only print filename and entry address for the kernel itself. The rest have a meaningless entry as they are relocatable. Revision Changes Path 1.10 +3 -2 src/sys/boot/common/load_aout.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 02:05:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA28385 for cvs-all-outgoing; Mon, 12 Oct 1998 02:05:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA28337; Mon, 12 Oct 1998 02:05:01 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca3-71.ix.netcom.com [209.109.233.71]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id CAA28563; Mon, 12 Oct 1998 02:04:48 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id CAA20600; Mon, 12 Oct 1998 02:04:43 -0700 (PDT) Date: Mon, 12 Oct 1998 02:04:43 -0700 (PDT) Message-Id: <199810120904.CAA20600@silvia.hip.berkeley.edu> To: dmaddox@scsn.net CC: markm@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <19981012042954.C1296@scsn.net> (dmaddox@scsn.net) Subject: Re: cvs commit: ports/lang/perl5 Makefile ports/lang/perl5/pkg PLIST From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * There may be good reasons to mark this broken, but it seems to me that this * is not one of them. When TCL was in the system, we still had a choice... The situation is different here. Besides, the fact that it doesn't build correctly in -current, and it is going to be (more) major work for markm to modify the system perl and/or port to not step on each other's toes, more than justifies not making it available on -current. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 02:13:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA29131 for cvs-all-outgoing; Mon, 12 Oct 1998 02:13:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA29125; Mon, 12 Oct 1998 02:13:52 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA01729; Mon, 12 Oct 1998 02:13:51 -0700 (PDT) Date: Mon, 12 Oct 1998 02:13:51 -0700 (PDT) Message-Id: <199810120913.CAA01729@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern link_elf.c src/sys/boot/common load_elf.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/12 02:13:50 PDT Modified files: sys/kern link_elf.c sys/boot/common load_elf.c Log: Only print kernel entry point during load. Drastically quieten down the verbose load progress messages. They were more useful for debugging than anything, but are beyond a joke when loading a few dozen modules. Simplify the ELF extended symbol table load format. Just take the main symbol table and the string table that corresponds. This is what we will be getting local symbols from. (needed for the alpha stack tracebacks). Use the (optional) full symbol tables in lookups. This means we have to furhter distinguish between symbols that can come from the dynamic linking table and the complete table. The alpha boot code now needs to be adapted as ddb/db_elf.c cannot use the simpler format. I have not implemented loading the extended symbol tables from the syscall interface yet, just for preloaded modules. I am not sure about the symbol resolution. I *think* it's possible that a local symbol can be found in preference to a global, depending on the search sequence and dependency tree. Revision Changes Path 1.4 +108 -21 src/sys/kern/link_elf.c 1.4 +76 -62 src/sys/boot/common/load_elf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 02:15:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA29300 for cvs-all-outgoing; Mon, 12 Oct 1998 02:15:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA29269; Mon, 12 Oct 1998 02:15:08 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grondar.za (IDENT:6Jr8VTvS7gRbGfeCSHBGfu+JXIFJrDzv@localhost [127.0.0.1]) by gratis.grondar.za (8.9.1/8.9.1) with ESMTP id LAA00706; Mon, 12 Oct 1998 11:14:26 +0200 (SAST) (envelope-from mark@grondar.za) Message-Id: <199810120914.LAA00706@gratis.grondar.za> To: dmaddox@scsn.net cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/lang/perl5 Makefile ports/lang/perl5/pkg PLIST In-Reply-To: Your message of " Mon, 12 Oct 1998 04:29:54 -0400." <19981012042954.C1296@scsn.net> References: <199810120651.XAA26861@freefall.freebsd.org> <19981012042954.C1296@scsn.net> Date: Mon, 12 Oct 1998 11:14:21 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > > Perl 5 is in the system. Mark this port broken for 3.0 for that reason. > > There may be good reasons to mark this broken, but it seems to me that this > is not one of them. When TCL was in the system, we still had a choice... TCL is no shining example. TCL was available in a few different versions, with little backward compatability maintained and lots of ports highly dependant on the previous versions. If the system TCL was too visible, it broke these ports. I have no intention of letting this happen with perl. If you wish to repair the perl5 port, patch out the relevant lines and run it on your system, this is 100% fine by me; if you want to have half our userbase using ports perl5 "just because they can", I suggest you consider the support nightmare before doing it. There is no functional difference (or there should not be any) between ports perl5 and system perl5; ergo, there is no need for both. 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 Oct 12 02:36:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA01028 for cvs-all-outgoing; Mon, 12 Oct 1998 02:36:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA01021; Mon, 12 Oct 1998 02:36:30 -0700 (PDT) (envelope-from yokota@FreeBSD.org) From: Kazutaka YOKOTA Received: (from yokota@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA02354; Mon, 12 Oct 1998 02:36:28 -0700 (PDT) Date: Mon, 12 Oct 1998 02:36:28 -0700 (PDT) Message-Id: <199810120936.CAA02354@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/moused moused.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk yokota 1998/10/12 02:36:28 PDT Modified files: usr.sbin/moused moused.c Log: Fix PnP mouse detection routine so that: - it has longer timeout as per the PnP COM Device Specificaiton 1.0, - and it tries to obtain the PnP ID string by strictly following the specification and if it fails, by deploying slightly simplified steps. (moused has used the simplified method because early PnP mice do not exactly follow the specification. But now, recent mice do not supply the ID string unless the strict procedure is used...) Jointly developed by luigi and yokota. Revision Changes Path 1.20 +113 -36 src/usr.sbin/moused/moused.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 02:53:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA02127 for cvs-all-outgoing; Mon, 12 Oct 1998 02:53:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA02122; Mon, 12 Oct 1998 02:53:20 -0700 (PDT) (envelope-from yokota@FreeBSD.org) From: Kazutaka YOKOTA Received: (from yokota@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA02758; Mon, 12 Oct 1998 02:53:18 -0700 (PDT) Date: Mon, 12 Oct 1998 02:53:18 -0700 (PDT) Message-Id: <199810120953.CAA02758@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/kbdcontrol kbdcontrol.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk yokota 1998/10/12 02:53:18 PDT Modified files: usr.sbin/kbdcontrol kbdcontrol.1 Log: Add description on the "quiet" modifier for bell types. Revision Changes Path 1.10 +6 -1 src/usr.sbin/kbdcontrol/kbdcontrol.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 04:32:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA11389 for cvs-all-outgoing; Mon, 12 Oct 1998 04:32:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA11380; Mon, 12 Oct 1998 04:32:37 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA06556; Mon, 12 Oct 1998 04:32:36 -0700 (PDT) Date: Mon, 12 Oct 1998 04:32:36 -0700 (PDT) Message-Id: <199810121132.EAA06556@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa isa_device.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/12 04:32:36 PDT Modified files: sys/i386/isa isa_device.h Log: Added flag CC_QUIET for quiet conflict checking. Fixed corrupted tabs. Revision Changes Path 1.55 +7 -6 src/sys/i386/isa/isa_device.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 05:26:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA14690 for cvs-all-outgoing; Mon, 12 Oct 1998 05:26:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA14685; Mon, 12 Oct 1998 05:26:43 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA08116; Mon, 12 Oct 1998 05:26:42 -0700 (PDT) Date: Mon, 12 Oct 1998 05:26:42 -0700 (PDT) Message-Id: <199810121226.FAA08116@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/acroread Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 05:26:42 PDT Modified files: print/acroread Makefile Log: Mark BROKEN for ELF: Creating gzip'd tar ball in '/usr/ports/packages/All/acroread-3.02.tgz' tar: can't add file Acrobat3/Reader/intellinux/lib/libagm.so.2 : No such file or directory tar: can't add file Acrobat3/Reader/intellinux/lib/libpfs.so.2 : No such file or directory tar: can't add file Acrobat3/Reader/intellinux/lib/libreadcore.so.3 : No such file or directory /usr/sbin/pkg_create: tar command failed with code 256 *** Error code 1 Revision Changes Path 1.6 +3 -1 ports/print/acroread/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 05:27:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA14725 for cvs-all-outgoing; Mon, 12 Oct 1998 05:27:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA14720; Mon, 12 Oct 1998 05:27:25 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA08173; Mon, 12 Oct 1998 05:27:24 -0700 (PDT) Date: Mon, 12 Oct 1998 05:27:24 -0700 (PDT) Message-Id: <199810121227.FAA08173@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/conf options src/sys/i386/conf LINT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/12 05:27:24 PDT Modified files: sys/conf options sys/i386/conf LINT Log: Fixed bitrot in mfs options. MFS_ROOT split into MFS_ROOT and MFS_ROOT_SIZE, and MFS_AUTOLOAD went away. Revision Changes Path 1.105 +2 -2 src/sys/conf/options 1.487 +2 -4 src/sys/i386/conf/LINT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 05:28:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA14808 for cvs-all-outgoing; Mon, 12 Oct 1998 05:28:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA14803; Mon, 12 Oct 1998 05:28:23 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA08211; Mon, 12 Oct 1998 05:28:21 -0700 (PDT) Date: Mon, 12 Oct 1998 05:28:21 -0700 (PDT) Message-Id: <199810121228.FAA08211@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/deskutils/plan Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 05:28:21 PDT Modified files: deskutils/plan Makefile Log: Mark BROKEN for ELF. Revision Changes Path 1.12 +3 -1 ports/deskutils/plan/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 05:33:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA15248 for cvs-all-outgoing; Mon, 12 Oct 1998 05:33:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA15243; Mon, 12 Oct 1998 05:33:24 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA08343; Mon, 12 Oct 1998 05:33:23 -0700 (PDT) Date: Mon, 12 Oct 1998 05:33:23 -0700 (PDT) Message-Id: <199810121233.FAA08343@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/asprint Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 05:33:23 PDT Modified files: print/asprint Makefile Log: Mark BROKEN for ELF: gcc -o asprint -O2 asprint.o -L/usr/X11R6/lib -lXaw -lXmu -lXt /usr/libexec/elf/ld: warning: libSM.so.6, needed by /usr/X11R6/lib/libXaw.so, no t found (try using --rpath) /usr/libexec/elf/ld: warning: libICE.so.6, needed by /usr/X11R6/lib/libXaw.so, n ot found (try using --rpath) /usr/libexec/elf/ld: warning: libXext.so.6, needed by /usr/X11R6/lib/libXaw.so, not found (try using --rpath) /usr/libexec/elf/ld: warning: libX11.so.6, needed by /usr/X11R6/lib/libXaw.so, n ot found (try using --rpath) /usr/X11R6/lib/libXaw.so: undefined reference to `XFreePixmap' /usr/X11R6/lib/libXt.so: undefined reference to `XrmEnumerateDatabase' Revision Changes Path 1.3 +3 -1 ports/print/asprint/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 05:45:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA16158 for cvs-all-outgoing; Mon, 12 Oct 1998 05:45:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA16153; Mon, 12 Oct 1998 05:45:45 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA08723; Mon, 12 Oct 1998 05:45:44 -0700 (PDT) Date: Mon, 12 Oct 1998 05:45:44 -0700 (PDT) Message-Id: <199810121245.FAA08723@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/dviselect Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 05:45:44 PDT Modified files: print/dviselect Makefile Log: Mark BROKEN for ELF: cc -O -pipe -I../h -I./h -DHAVE_VPRINTF -o dviselect dviselect.o lib/lib.a cc: lib/lib.a: No such file or directory *** Error code 1 Revision Changes Path 1.12 +3 -1 ports/print/dviselect/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 05:47:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA16325 for cvs-all-outgoing; Mon, 12 Oct 1998 05:47:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA16320; Mon, 12 Oct 1998 05:47:39 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA08778; Mon, 12 Oct 1998 05:47:38 -0700 (PDT) Date: Mon, 12 Oct 1998 05:47:38 -0700 (PDT) Message-Id: <199810121247.FAA08778@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/deskutils/xopps Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 05:47:38 PDT Modified files: deskutils/xopps Makefile Log: Mark BROKEN for ELF: gcc -O -ansi -fsigned-char activity.o beware.o bitmaps.o chart.o chdate.o color.o dialog.o drawing.o dynarray.o event.o export.o fileio.o filemenu.o gr_plot.o help.o hline.o image.o internals.o level.o line.o main.o marker.o menu_calls.o message.o mover.o mxutil.o object.o page.o pline.o plot.o print.o rectlist.o sactivity.o selectfile.o sequence.o shellmgmt.o slip.o status.o symbol.o text.o utc.o util.o -o xopps -L/SFOC//lib -L/sfoc/lib -L/TPS//lib -L/tps/lib -L/usr/X11R6/lib -lXm -lXext -lXt -lX11 /usr/libexec/elf/ld: warning: libSM.so.6, needed by /usr/X11R6/lib/libXt.so, not found (try using --rpath) /usr/libexec/elf/ld: warning: libICE.so.6, needed by /usr/X11R6/lib/libXt.so, not found (try using --rpath) /usr/X11R6/lib/libXt.so: undefined reference to `SmcSaveYourselfDone' /usr/X11R6/lib/libXt.so: undefined reference to `IceConnectionNumber' Revision Changes Path 1.6 +3 -1 ports/deskutils/xopps/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 06:11:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA18745 for cvs-all-outgoing; Mon, 12 Oct 1998 06:11:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from labinfo.iet.unipi.it (labinfo.iet.unipi.it [131.114.9.5]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id GAA18543; Mon, 12 Oct 1998 06:09:48 -0700 (PDT) (envelope-from luigi@labinfo.iet.unipi.it) Received: from localhost (luigi@localhost) by labinfo.iet.unipi.it (8.6.5/8.6.5) id MAA20051; Mon, 12 Oct 1998 12:10:05 +0100 From: Luigi Rizzo Message-Id: <199810121110.MAA20051@labinfo.iet.unipi.it> Subject: cvs commit src/release/ABOUT.TXT To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Date: Mon, 12 Oct 1998 12:10:05 +0100 (MET) In-Reply-To: <199810121245.FAA08723@freefall.freebsd.org> from "Justin M. Seger" at Oct 12, 98 05:45:25 am X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk luigi 1998/10/12 05:45:44 PDT Modified files: ABOUT.TXT Log: Record that there are only 28 ports out of 1500 not marked BROKEN for ELF Revision Changes Path 1.12 +1 -1 src/release/ABOUT.TXT cheers luigi (just kidding guys! -- this is not a real commit log) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 06:12:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA19084 for cvs-all-outgoing; Mon, 12 Oct 1998 06:12:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA19076; Mon, 12 Oct 1998 06:12:46 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA09661; Mon, 12 Oct 1998 06:12:45 -0700 (PDT) Date: Mon, 12 Oct 1998 06:12:45 -0700 (PDT) Message-Id: <199810121312.GAA09661@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa isa.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/12 06:12:45 PDT Modified files: sys/i386/isa isa.c Log: Don't print conflict messages in haveseen_isadev() if CC_QUIET is specified. This makes haveseen_isadev() useful for searching for a free resource. This increases the bitrot in the pci RESOURCE_CHECK code. Fixed the pre-attach conflict message. The flag for distinguishing pre-attach conflict checks from pre-probe ones was never set. Revision Changes Path 1.114 +16 -10 src/sys/i386/isa/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 Oct 12 08:04:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA06482 for cvs-all-outgoing; Mon, 12 Oct 1998 08:04:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA06477; Mon, 12 Oct 1998 08:04:37 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA18626; Mon, 12 Oct 1998 08:04:35 -0700 (PDT) Date: Mon, 12 Oct 1998 08:04:35 -0700 (PDT) Message-Id: <199810121504.IAA18626@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/glibstdc++28 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 08:04:35 PDT Modified files: lang/glibstdc++28 Makefile Log: Mark BROKEN for ELF: depends on BROKEN_ELF gcc28 Revision Changes Path 1.11 +3 -1 ports/lang/glibstdc++28/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 08:05:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA06583 for cvs-all-outgoing; Mon, 12 Oct 1998 08:05:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA06572; Mon, 12 Oct 1998 08:05:35 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA18706; Mon, 12 Oct 1998 08:05:33 -0700 (PDT) Date: Mon, 12 Oct 1998 08:05:33 -0700 (PDT) Message-Id: <199810121505.IAA18706@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/ORBacus Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 08:05:33 PDT Modified files: devel/ORBacus Makefile Log: Mark BROKEN for ELF: depends on gcc28 and glibstdc++28 Revision Changes Path 1.13 +3 -1 ports/devel/ORBacus/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 08:06:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA06716 for cvs-all-outgoing; Mon, 12 Oct 1998 08:06:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA06700; Mon, 12 Oct 1998 08:06:04 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA18752; Mon, 12 Oct 1998 08:06:02 -0700 (PDT) Date: Mon, 12 Oct 1998 08:06:02 -0700 (PDT) Message-Id: <199810121506.IAA18752@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 pc98.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/10/12 08:06:02 PDT Modified files: sys/pc98/pc98 pc98.c Log: Sync with sys/i386/isa/isa.c revision 1.114. Revision Changes Path 1.52 +16 -10 src/sys/pc98/pc98/pc98.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 08:07:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA06884 for cvs-all-outgoing; Mon, 12 Oct 1998 08:07:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA06878; Mon, 12 Oct 1998 08:07:22 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA18798; Mon, 12 Oct 1998 08:07:20 -0700 (PDT) Date: Mon, 12 Oct 1998 08:07:20 -0700 (PDT) Message-Id: <199810121507.IAA18798@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/ghostscript Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 08:07:20 PDT Modified files: print/ghostscript Makefile Log: Mark BROKEN for ELF: /usr/libexec/elf/ld: warning: libSM.so.6, needed by /usr/X11R6/lib/libXt.so, not found (try using --rpath) /usr/libexec/elf/ld: warning: libICE.so.6, needed by /usr/X11R6/lib/libXt.so, not found (try using --rpath) /usr/X11R6/lib/libXt.so: undefined reference to `SmcSaveYourselfDone' /usr/X11R6/lib/libXt.so: undefined reference to `IceConnectionNumber' Revision Changes Path 1.21 +3 -1 ports/print/ghostscript/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 08:24:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA08704 for cvs-all-outgoing; Mon, 12 Oct 1998 08:24:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA08699; Mon, 12 Oct 1998 08:24:16 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA19394; Mon, 12 Oct 1998 08:24:14 -0700 (PDT) Date: Mon, 12 Oct 1998 08:24:14 -0700 (PDT) Message-Id: <199810121524.IAA19394@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/mgv Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 08:24:14 PDT Modified files: print/mgv Makefile Log: Mark BROKEN for ELF: cc -O2 -O -pipe -D_POSIX_SOURCE -I/usr/X11R6/include -s -L/usr/X11R6/lib -o mgv Ghostview.o app.o auto.o center.o dsc.o events.o file.o help.o log.o magstep.o main.o mark.o media.o mgv.o mgv_create.o options.o orientation.o page.o page_control.o print.o process.o scroll.o sens.o strings.o toolbar.o track.o uiutil.o unmangle.o util.o view.o zoom.o _ad.o _switch_help.o _bld.o -Lwlib -lwlib -lXm -lXmu -lXt -lXpm -lXext -lX11 /usr/libexec/elf/ld: warning: libSM.so.6, needed by /usr/X11R6/lib/libXmu.so, not found (try using --rpath) /usr/libexec/elf/ld: warning: libICE.so.6, needed by /usr/X11R6/lib/libXmu.so, not found (try using --rpath) /usr/X11R6/lib/libXt.so: undefined reference to `SmcSaveYourselfDone' /usr/X11R6/lib/libXt.so: undefined reference to `IceConnectionNumber' Revision Changes Path 1.10 +3 -1 ports/print/mgv/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 08:36:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA10229 for cvs-all-outgoing; Mon, 12 Oct 1998 08:36:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA10223; Mon, 12 Oct 1998 08:36:29 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA19862; Mon, 12 Oct 1998 08:36:27 -0700 (PDT) Date: Mon, 12 Oct 1998 08:36:27 -0700 (PDT) Message-Id: <199810121536.IAA19862@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/amulet Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 08:36:27 PDT Modified files: devel/amulet Makefile Log: Mark BROKEN for ELF: g++ -O2 -DDEBUG -DAMULET2_CONVERSION -I/usr/ports/devel/amulet/work/amulet/include -I/usr/X11R6/include -Wall -DGCC -DMEMORY -DDEFAULT_AMULET_DIR=\"/usr/X11R6/share/amulet\" /usr/ports/devel/amulet/work/amulet/src/gem/testdpy.o /usr/ports/devel/amulet/work/amulet/src/gem/test_utils.o /usr/ports/devel/amulet/work/amulet/src/gem/testbits.o /usr/ports/devel/amulet/work/amulet/src/gem/testcolor.o /usr/ports/devel/amulet/work/amulet/src/gem/testfonts.o /usr/ports/devel/amulet/work/amulet/src/gem/testwinprops.o -L/usr/ports/devel/amulet/work/amulet/lib -lamulet -L/usr/X11R6/lib -lX11 -lm -o testdpy /usr/ports/devel/amulet/work/amulet/lib/libamulet.so: file not recognized: File truncated *** Error code 1 Revision Changes Path 1.5 +3 -1 ports/devel/amulet/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 08:47:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA12082 for cvs-all-outgoing; Mon, 12 Oct 1998 08:47:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA12064; Mon, 12 Oct 1998 08:47:46 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA20426; Mon, 12 Oct 1998 08:47:44 -0700 (PDT) Date: Mon, 12 Oct 1998 08:47:44 -0700 (PDT) Message-Id: <199810121547.IAA20426@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/boehm-gc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 08:47:44 PDT Modified files: devel/boehm-gc Makefile Log: Mark BROKEN for ELF: ===> Installing for boehm-gc-4.12 /bin/cp fbsd-libgc.a libgc.a /bin/cp: fbsd-libgc.a: No such file or directory *** Error code 1 Revision Changes Path 1.3 +3 -1 ports/devel/boehm-gc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 08:54:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA13466 for cvs-all-outgoing; Mon, 12 Oct 1998 08:54:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA13460; Mon, 12 Oct 1998 08:54:25 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA20909; Mon, 12 Oct 1998 08:54:23 -0700 (PDT) Date: Mon, 12 Oct 1998 08:54:23 -0700 (PDT) Message-Id: <199810121554.IAA20909@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/cccc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 08:54:23 PDT Modified files: devel/cccc Makefile Log: Mark BROKEN for current: CVS ---------------------------------------------------------------------- error in signal.h Revision Changes Path 1.4 +6 -1 ports/devel/cccc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 09:32:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA19945 for cvs-all-outgoing; Mon, 12 Oct 1998 09:32:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA19930; Mon, 12 Oct 1998 09:32:34 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA22433; Mon, 12 Oct 1998 09:32:33 -0700 (PDT) Date: Mon, 12 Oct 1998 09:32:33 -0700 (PDT) Message-Id: <199810121632.JAA22433@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libcurses refresh.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/12 09:32:33 PDT Modified files: lib/libcurses refresh.c Log: Fix a curses bug exposed by the ":numbers" display of systat -iostat. This bug showed up when you had more than 3 devices displayed. (thus requiring a second line of display) Here's a quote From the PR: When wrefresh() is called with a subwindow as argument, __set_subwin might be called with reversed arguments if wrefresh() decides to calls quickch(). This may cause use of negative array indexes, with a resulting segfault. Since quickch() manipulates the line structures belonging to curscr, it looks like all subwindows of curscr should be updated. PR: bin/8086 Submitted by: Tor Egge Revision Changes Path 1.14 +2 -2 src/lib/libcurses/refresh.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 09:38:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA20561 for cvs-all-outgoing; Mon, 12 Oct 1998 09:38:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA20556; Mon, 12 Oct 1998 09:38:07 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA22699; Mon, 12 Oct 1998 09:38:06 -0700 (PDT) Date: Mon, 12 Oct 1998 09:38:06 -0700 (PDT) Message-Id: <199810121638.JAA22699@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/modula-3-lib Makefile ports/lang/modula-3 Makefile ports/print/virtualpaper Makefile ports/net/cvsup Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 09:38:05 PDT Modified files: lang/modula-3-lib Makefile lang/modula-3 Makefile print/virtualpaper Makefile net/cvsup Makefile Log: Mark BROKEN for ELF. Depends on modula-3 which is BROKEN: *** *** runtime error: *** Segmentation violation - possible attempt to dereference NIL *** *** runtime error: *** ASSERT failed *** file "../src/runtime/common/RTHeapMap.m3", line 35 *** Abort trap - core dumped *** error code 134 (ignored) missing libm3formsvbtpixmaps.a: not building libm3formsvbtpixmaps.so.6 followed by many more errors Revision Changes Path 1.12 +3 -1 ports/lang/modula-3-lib/Makefile 1.25 +3 -1 ports/lang/modula-3/Makefile 1.9 +3 -1 ports/print/virtualpaper/Makefile 1.28 +3 -1 ports/net/cvsup/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 10:02:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA23865 for cvs-all-outgoing; Mon, 12 Oct 1998 10:02:49 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA23848; Mon, 12 Oct 1998 10:02:39 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA23542; Mon, 12 Oct 1998 10:02:38 -0700 (PDT) Date: Mon, 12 Oct 1998 10:02:38 -0700 (PDT) Message-Id: <199810121702.KAA23542@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/cam/scsi scsi_cd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/12 10:02:38 PDT Modified files: sys/cam/scsi scsi_cd.c Log: Bring over a quirk entry from the old SCSI code for a Chinon CDROM drive that returns track numbers in BCD. Reviewed by: gibbs Revision Changes Path 1.6 +5 -1 src/sys/cam/scsi/scsi_cd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 10:16:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA25836 for cvs-all-outgoing; Mon, 12 Oct 1998 10:16:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA25831; Mon, 12 Oct 1998 10:16:49 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA24148; Mon, 12 Oct 1998 10:16:47 -0700 (PDT) Date: Mon, 12 Oct 1998 10:16:47 -0700 (PDT) Message-Id: <199810121716.KAA24148@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/cam/scsi scsi_da.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/12 10:16:47 PDT Modified files: sys/cam/scsi scsi_da.c Log: Add quirk entries to disable the synchronize cache command for Micropolis 2217's (reported by Matthew Jacob in NetBSD PR kern/6027) and Fujitsu M2954's (reported by Tom Jackson). Some of the Fujitsus at least hang when they get a cache sync command. (Others just return illegal request.) Also, make error printing in dashutdown() a little more selective. Don't print any error when the sense key is illegal request. Drives that don't support the synchronize cache command usually return illegal request. Also, make sure the scsi status is check condition before going into scsi_sense_print(). Reviewed by: gibbs Revision Changes Path 1.9 +28 -10 src/sys/cam/scsi/scsi_da.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 10:17:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA25926 for cvs-all-outgoing; Mon, 12 Oct 1998 10:17:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from emmi.physik.TU-Berlin.DE (emmi.physik.TU-Berlin.DE [130.149.160.103]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA25442; Mon, 12 Oct 1998 10:15:19 -0700 (PDT) (envelope-from ibex@emmi.physik.TU-Berlin.DE) Received: from rosa.physik.TU-Berlin.DE (rosa.physik.TU-Berlin.DE [130.149.160.209]) by emmi.physik.TU-Berlin.DE (8.9.1/8.9.1) with ESMTP id TAA10469; Mon, 12 Oct 1998 19:14:44 +0200 (CEST) (envelope-from ibex@emmi.physik.TU-Berlin.DE) Received: (from ibex@localhost) by rosa.physik.TU-Berlin.DE (8.8.8/8.8.7) id TAA28544; Mon, 12 Oct 1998 19:14:43 +0200 (CEST) Message-ID: <19981012191443.A28515@physik.TU-Berlin.DE> Date: Mon, 12 Oct 1998 19:14:43 +0200 From: Dirk Froemberg To: "Justin M. Seger" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/databases/p5-Mysql Makefile References: <199810120426.VAA22840@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93i In-Reply-To: <199810120426.VAA22840@freefall.freebsd.org>; from Justin M. Seger on Sun, Oct 11, 1998 at 09:26:23PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Hello Justin! mysql321 has been fixed for ELF. Have a look at PR ports/8254 Regard Dirk On Sun, Oct 11, 1998 at 09:26:23PM -0700, Justin M. Seger wrote: > jseger 1998/10/11 21:26:23 PDT > > Modified files: > databases/p5-Mysql Makefile > Log: > Mark BROKEN for ELF: depends on BROKEN mysql-3.21.33 > > Revision Changes Path > 1.11 +3 -1 ports/databases/p5-Mysql/Makefile > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe cvs-all" in the body of the message -- e-mail: ibex@physik.tu-berlin.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 10:23:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA27232 for cvs-all-outgoing; Mon, 12 Oct 1998 10:23:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA27225; Mon, 12 Oct 1998 10:23:06 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA24374; Mon, 12 Oct 1998 10:23:04 -0700 (PDT) Date: Mon, 12 Oct 1998 10:23:04 -0700 (PDT) Message-Id: <199810121723.KAA24374@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/xdvik Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 10:23:04 PDT Modified files: print/xdvik Makefile Log: Mark BROKEN for ELF: ./../klibtool link cc -o xdvi xdvi.o dvi_draw.o dvi_init.o events.o font-open.o gf.o pk.o psdps.o psgs.o psheader.o psnews.o special.o util.o vf.o sfDir.o sfDraw.o sfPath.o sfSelFile.o hypertex.o mime.o wwwfetch.o alloca.o -L/usr/X11R6/lib -lXaw -lXmu -lXt -lSM -lICE -lX11 ../kpathsea/libkpathsea.la -lm cc -o xdvi xdvi.o dvi_draw.o dvi_init.o events.o font-open.o gf.o pk.o psdps.o psgs.o psheader.o psnews.o special.o util.o vf.o sfDir.o sfDraw.o sfPath.o sfSelFile.o hypertex.o mime.o wwwfetch.o alloca.o -L/usr/X11R6/lib -lXaw -lXmu -lXt -lSM -lICE -lX11 ../kpathsea/STATIC/libkpathsea.a -lm /usr/libexec/elf/ld: warning: libXext.so.6, needed by /usr/X11R6/lib/libXaw.so, not found (try using --rpath) /usr/X11R6/lib/libXmu.so: undefined reference to `XShapeCombineMask' /usr/X11R6/lib/libXaw.so: undefined reference to `XShapeQueryExtension' Revision Changes Path 1.2 +3 -1 ports/print/xdvik/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 10:29:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA28229 for cvs-all-outgoing; Mon, 12 Oct 1998 10:29:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA28224; Mon, 12 Oct 1998 10:29:17 -0700 (PDT) (envelope-from luigi@FreeBSD.org) From: Luigi Rizzo Received: (from luigi@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA24604; Mon, 12 Oct 1998 10:29:16 -0700 (PDT) Date: Mon, 12 Oct 1998 10:29:16 -0700 (PDT) Message-Id: <199810121729.KAA24604@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sbin/ipfw ipfw.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk luigi 1998/10/12 10:29:16 PDT Modified files: (Branch: RELENG_2_2) sbin/ipfw ipfw.c Log: Accept pipe numbers beginning with '9' Reported by Vince Vielhaber Revision Changes Path 1.34.2.20 +2 -2 src/sbin/ipfw/ipfw.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 10:33:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA28883 for cvs-all-outgoing; Mon, 12 Oct 1998 10:33:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA28878; Mon, 12 Oct 1998 10:33:16 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA24823; Mon, 12 Oct 1998 10:33:15 -0700 (PDT) Date: Mon, 12 Oct 1998 10:33:15 -0700 (PDT) Message-Id: <199810121733.KAA24823@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/search web.atoz Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/10/12 10:33:14 PDT Modified files: en/search web.atoz Log: Delete dead entries. Submitted by: mark thompson Revision Changes Path 1.42 +1 -4 www/en/search/web.atoz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 10:38:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA29901 for cvs-all-outgoing; Mon, 12 Oct 1998 10:38:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from awfulhak.org (awfulhak.force9.co.uk [195.166.136.63]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA29661; Mon, 12 Oct 1998 10:37:58 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from woof.lan.awfulhak.org (brian@woof.lan.awfulhak.org [172.16.0.7]) by awfulhak.org (8.8.8/8.8.8) with ESMTP id SAA05314; Mon, 12 Oct 1998 18:37:42 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from woof.lan.awfulhak.org (brian@localhost [127.0.0.1]) by woof.lan.awfulhak.org (8.9.1/8.9.1) with ESMTP id MAA11238; Mon, 12 Oct 1998 12:10:09 +0100 (BST) (envelope-from brian@woof.lan.awfulhak.org) Message-Id: <199810121110.MAA11238@woof.lan.awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: Satoshi Asami cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/x11/kworldwatch Makefile In-reply-to: Your message of "Fri, 09 Oct 1998 21:52:25 PDT." <199810100452.VAA20370@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 12 Oct 1998 12:10:08 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > asami 1998/10/09 21:52:25 PDT > > Modified files: > x11/kworldwatch Makefile > Log: > So, I gave you giflib, you don't like my giflib. Fine, go broke! > > === > checking for getsecretkey... no > checking for X... /usr/X11R6/bin/X > checking for xdm configuration dir... /usr/X11R6/lib/X11/xdm > checking for PAM... no > checking for giflib... configure: error: You need giflib23. Please install the kdesupport package > *** Error code 1 > > Stop. > > Revision Changes Path > 1.10 +3 -1 ports/x11/kworldwatch/Makefile I'm clearly missing something here. I have: ===> Extracting for kworldwatch-0.6 >> Checksum OK for kworldwatch-0.6.tgz. ===> kworldwatch-0.6 depends on shared library: gif.3 - found ===> kworldwatch-0.6 depends on shared library: kdecore.1 - found ===> kworldwatch-0.6 depends on shared library: kdeui.1 - found ===> kworldwatch-0.6 depends on shared library: kfm.1 - found ===> kworldwatch-0.6 depends on shared library: qt.1 - found ===> Patching for kworldwatch-0.6 ===> Configuring for kworldwatch-0.6 creating cache ./config.cache [.....] checking for getsecretkey... no checking for X... /usr/X11R6/bin/X checking for xdm configuration dir... /usr/X11R6/lib/X11/xdm checking for PAM... no checking for giflib... yes checking for jpeglib... -ljpeg checking for dirent.h that defines DIR... yes checking for opendir in -ldir... no checking for ANSI C header files... yes [.....] $ objformat elf $ ls -l /usr/local/lib/libgif* -rw-rw-r-- 1 root wheel 39354 Oct 1 16:38 /usr/local/lib/libgif.a lrwxrwxr-x 1 root wheel 11 Oct 1 16:38 /usr/local/lib/libgif.so -> libgif.so.3 -rwxrwxr-x 1 root wheel 32497 Oct 1 16:38 /usr/local/lib/libgif.so.3 $ ls -ld /var/db/pkg/*gif* drwxrwxr-x 2 root bin 512 Oct 1 17:10 /var/db/pkg/giflib-3.0 -- 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 Mon Oct 12 10:38:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA29911 for cvs-all-outgoing; Mon, 12 Oct 1998 10:38:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from awfulhak.org (awfulhak.force9.co.uk [195.166.136.63]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA29665; Mon, 12 Oct 1998 10:38:02 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from woof.lan.awfulhak.org (brian@woof.lan.awfulhak.org [172.16.0.7]) by awfulhak.org (8.8.8/8.8.8) with ESMTP id SAA05317; Mon, 12 Oct 1998 18:37:43 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from woof.lan.awfulhak.org (brian@localhost [127.0.0.1]) by woof.lan.awfulhak.org (8.9.1/8.9.1) with ESMTP id LAA09844; Mon, 12 Oct 1998 11:39:18 +0100 (BST) (envelope-from brian@woof.lan.awfulhak.org) Message-Id: <199810121039.LAA09844@woof.lan.awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: "Justin M. Seger" cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/comms/kpilot Makefile In-reply-to: Your message of "Sun, 11 Oct 1998 16:34:37 PDT." <199810112334.QAA13108@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 12 Oct 1998 11:39:17 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > jseger 1998/10/11 16:34:37 PDT > > Modified files: > comms/kpilot Makefile > Log: > Mark BROKEN for ELF. This hasn't been updated with new library names. > > Revision Changes Path > 1.16 +3 -1 ports/comms/kpilot/Makefile > What new library names ? Did I miss something in the 1.14->1.15 update ? -- 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 Mon Oct 12 11:05:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA06320 for cvs-all-outgoing; Mon, 12 Oct 1998 11:05:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from dingo.cdrom.com (castles238.castles.com [208.214.165.238]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA06304; Mon, 12 Oct 1998 11:05:07 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id LAA07119; Mon, 12 Oct 1998 11:09:56 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Message-Id: <199810121809.LAA07119@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Kenneth Merry cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c In-reply-to: Your message of "Mon, 12 Oct 1998 10:16:47 PDT." <199810121716.KAA24148@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 12 Oct 1998 11:09:54 -0700 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk I think what this is telling us is that attempting to use anything other than the least common denominator as the default is a Bad Idea. Don't kid yourselves folks; you're not going to manage to add quirk entries for all the drives and firmware revisions that screw up royally when you try to do fancy things to them. Better to add quirk entries for the drives that get it _right_. Shipping a release with this sort of dangerous behaviour enabled is going to be a support _nightmare_. I realise you folks aren't in the support firing line, but for the sake of those that are, not to mention the extremely negative publicity this sort of problem will cause, please consider turning it off. > ken 1998/10/12 10:16:47 PDT > > Modified files: > sys/cam/scsi scsi_da.c > Log: > Add quirk entries to disable the synchronize cache command for Micropolis > 2217's (reported by Matthew Jacob in NetBSD PR kern/6027) and Fujitsu > M2954's (reported by Tom Jackson). > > Some of the Fujitsus at least hang when they get a cache sync command. > (Others just return illegal request.) > > Also, make error printing in dashutdown() a little more selective. Don't > print any error when the sense key is illegal request. Drives that don't > support the synchronize cache command usually return illegal request. > Also, make sure the scsi status is check condition before going into > scsi_sense_print(). > > Reviewed by: gibbs > > Revision Changes Path > 1.9 +28 -10 src/sys/cam/scsi/scsi_da.c > -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 11:09:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA06792 for cvs-all-outgoing; Mon, 12 Oct 1998 11:09:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from austin.polstra.com (austin.polstra.com [206.213.73.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA06783; Mon, 12 Oct 1998 11:09:54 -0700 (PDT) (envelope-from jdp@austin.polstra.com) Received: from austin.polstra.com (jdp@localhost) by austin.polstra.com (8.9.1/8.9.1) with ESMTP id LAA05011; Mon, 12 Oct 1998 11:09:41 -0700 (PDT) (envelope-from jdp) Message-Id: <199810121809.LAA05011@austin.polstra.com> To: jseger@FreeBSD.ORG Subject: Re: cvs commit: ports/lang/modula-3-lib Makefile ports/lang/modula-3 Makefile ports/print/virtualpaper Makefile ports/net/cvsup Makefile In-Reply-To: <199810121638.JAA22699@freefall.freebsd.org> References: <199810121638.JAA22699@freefall.freebsd.org> Organization: Polstra & Co., Seattle, WA Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Date: Mon, 12 Oct 1998 11:09:41 -0700 From: John Polstra Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In article <199810121638.JAA22699@freefall.freebsd.org>, Justin M. Seger wrote: > jseger 1998/10/12 09:38:05 PDT > > Modified files: > lang/modula-3-lib Makefile > lang/modula-3 Makefile > print/virtualpaper Makefile > net/cvsup Makefile > Log: > Mark BROKEN for ELF. Depends on modula-3 which is BROKEN: > *** > *** runtime error: > *** Segmentation violation - possible attempt to dereference NIL No it is NOT broken, to the best of my knowledge. You are probably using an SMP kernel that is out of date. If you have an SMP kernel, you must update your "src/sys/vm/vm_map.c" to revision 1.136, and build and install a new kernel. If that is not the problem, please let me know. I put a lot of work into this, and don't want to see 3.0 go out with it marked broken. Thanks, John -- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Self-knowledge is always bad news." -- John Barth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 11:15:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA07313 for cvs-all-outgoing; Mon, 12 Oct 1998 11:15:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA07308; Mon, 12 Oct 1998 11:15:33 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA26121; Mon, 12 Oct 1998 11:15:32 -0700 (PDT) Date: Mon, 12 Oct 1998 11:15:32 -0700 (PDT) Message-Id: <199810121815.LAA26121@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/gdbtk Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 11:15:32 PDT Modified files: devel/gdbtk Makefile Log: Mark BROKEN for ELF: ===> Configuring for gdbtk-4.16 Configuring for a i386-unknown-freebsd3.0 host. Created "Makefile" in /usr/ports/devel/gdbtk/work/gdb-4.16 configure: error: /usr/local/lib directory doesn't contain libraries Configure in /usr/ports/devel/gdbtk/work/gdb-4.16/gdb failed, exiting. *** Error code 1 Revision Changes Path 1.10 +3 -1 ports/devel/gdbtk/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 11:16:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA07430 for cvs-all-outgoing; Mon, 12 Oct 1998 11:16:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA07419; Mon, 12 Oct 1998 11:16:49 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA26197; Mon, 12 Oct 1998 11:16:47 -0700 (PDT) Date: Mon, 12 Oct 1998 11:16:47 -0700 (PDT) Message-Id: <199810121816.LAA26197@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/xtem Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 11:16:47 PDT Modified files: print/xtem Makefile Log: Mark BROKEN for ELF: ===> Patching for xtem-6.18 ===> Applying FreeBSD patches for xtem-6.18 In string, @WISHX now must be written as \@WISHX at -e line 1, near "@WISHX" In string, @TCLSH now must be written as \@TCLSH at -e line 1, near "@TCLSH" In string, @XTEMPATH now must be written as \@XTEMPATH at -e line 1, near "@XTEMPATH" Execution of -e aborted due to compilation errors. *** Error code 255 Revision Changes Path 1.6 +3 -1 ports/print/xtem/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 11:26:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA08841 for cvs-all-outgoing; Mon, 12 Oct 1998 11:26:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from feral.com (hat4.ppp.lmi.net [208.25.88.72]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA08804; Mon, 12 Oct 1998 11:26:27 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from localhost (mjacob@localhost) by feral.com (8.8.6/8.8.6) with SMTP id LAA12551; Mon, 12 Oct 1998 11:25:19 -0700 Date: Mon, 12 Oct 1998 11:25:19 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@feral-gw Reply-To: mjacob@feral.com To: Mike Smith cc: Kenneth Merry , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c In-Reply-To: <199810121809.LAA07119@dingo.cdrom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk I'm not quite sure I agree. It's a judgement call as to what the state overall of the existing population of devices there are out there. Nearly all SCSI-2 devices out there will sensibly support this command (actually, I didn't see any test within scsi_da to actually *not* try this with < SCSI2 support- that probably ought to be fixed for the (still somewhat large) population of CCS disks out there), or return some sensible kind of error. As far as I recall with the early f/w version of the Micropolis drive that I put in as a quirk for NetBSD, this drive just wandered into the weeds- but that is very likely the exception. Also the case *where* the quirks apply makes some difference. In this case, the quirk entries are for close/shutdown cases (rarely executed), and are definitely for older devices. I would, for example, be a bit more worried about the current "run the number of tagged commands up until where you get a QFULL condition and then back off" than this case. That said, I agree with you "in principle", but not "in this specific case". -matt On Mon, 12 Oct 1998, Mike Smith wrote: > > I think what this is telling us is that attempting to use anything other > than the least common denominator as the default is a Bad Idea. > > Don't kid yourselves folks; you're not going to manage to add quirk > entries for all the drives and firmware revisions that screw up royally > when you try to do fancy things to them. Better to add quirk entries > for the drives that get it _right_. > > Shipping a release with this sort of dangerous behaviour enabled is > going to be a support _nightmare_. I realise you folks aren't in the > support firing line, but for the sake of those that are, not to mention > the extremely negative publicity this sort of problem will cause, please > consider turning it off. > > > ken 1998/10/12 10:16:47 PDT > > > > Modified files: > > sys/cam/scsi scsi_da.c > > Log: > > Add quirk entries to disable the synchronize cache command for Micropolis > > 2217's (reported by Matthew Jacob in NetBSD PR kern/6027) and Fujitsu > > M2954's (reported by Tom Jackson). > > > > Some of the Fujitsus at least hang when they get a cache sync command. > > (Others just return illegal request.) > > > > Also, make error printing in dashutdown() a little more selective. Don't > > print any error when the sense key is illegal request. Drives that don't > > support the synchronize cache command usually return illegal request. > > Also, make sure the scsi status is check condition before going into > > scsi_sense_print(). > > > > Reviewed by: gibbs > > > > Revision Changes Path > > 1.9 +28 -10 src/sys/cam/scsi/scsi_da.c > > > > -- > \\ Sometimes you're ahead, \\ Mike Smith > \\ sometimes you're behind. \\ mike@smith.net.au > \\ The race is long, and in the \\ msmith@freebsd.org > \\ end it's only with yourself. \\ msmith@cdrom.com > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 11:33:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA09753 for cvs-all-outgoing; Mon, 12 Oct 1998 11:33:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA09748; Mon, 12 Oct 1998 11:33:57 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA26749; Mon, 12 Oct 1998 11:33:56 -0700 (PDT) Date: Mon, 12 Oct 1998 11:33:56 -0700 (PDT) Message-Id: <199810121833.LAA26749@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mail/bulk_mailer Makefile ports/mail/bulk_mailer/patches patch-ac Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 11:33:55 PDT Modified files: mail/bulk_mailer Makefile Removed files: mail/bulk_mailer/patches patch-ac Log: Mark BROKEN for ELF: ===> Installing for bulk_mailer-1.11 ===> Generating temporary packing list -s: not found *** Error code 1 also remove patch-ac which is no longer neccessary Revision Changes Path 1.5 +3 -1 ports/mail/bulk_mailer/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 11:36:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA10118 for cvs-all-outgoing; Mon, 12 Oct 1998 11:36:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA10113; Mon, 12 Oct 1998 11:36:26 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA26835; Mon, 12 Oct 1998 11:36:24 -0700 (PDT) Date: Mon, 12 Oct 1998 11:36:24 -0700 (PDT) Message-Id: <199810121836.LAA26835@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/libdlmalloc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 11:36:24 PDT Modified files: devel/libdlmalloc Makefile Log: Mark BROKEN for ELF: ===> Building package for dlmalloc-2.6.4 Creating package /usr/ports/packages/All/dlmalloc-2.6.4.tgz Registering depends:. Creating gzip'd tar ball in '/usr/ports/packages/All/dlmalloc-2.6.4.tgz' tar: can't add file lib/libdlmalloc.so.2 : No such file or directory /usr/sbin/pkg_create: tar command failed with code 256 *** Error code 1 Revision Changes Path 1.8 +3 -1 ports/devel/libdlmalloc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 11:38:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA10309 for cvs-all-outgoing; Mon, 12 Oct 1998 11:38:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA10266; Mon, 12 Oct 1998 11:38:01 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA26900; Mon, 12 Oct 1998 11:38:00 -0700 (PDT) Date: Mon, 12 Oct 1998 11:38:00 -0700 (PDT) Message-Id: <199810121838.LAA26900@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mail/coolmail Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 11:38:00 PDT Modified files: mail/coolmail Makefile Log: Mark BROKEN for ELF: cc coolmail.o display_list.o render1.o colors.o -L/usr/X11R6/lib -lXt -lX11 -lm -lXext -o coolmail /usr/libexec/elf/ld: warning: libSM.so.6, needed by /usr/X11R6/lib/libXt.so, not found (try using --rpath) /usr/libexec/elf/ld: warning: libICE.so.6, needed by /usr/X11R6/lib/libXt.so, not found (try using --rpath) /usr/X11R6/lib/libXt.so: undefined reference to `SmcSaveYourselfDone' /usr/X11R6/lib/libXt.so: undefined reference to `IceConnectionNumber' Revision Changes Path 1.2 +3 -1 ports/mail/coolmail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 11:42:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA10846 for cvs-all-outgoing; Mon, 12 Oct 1998 11:42:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA10826; Mon, 12 Oct 1998 11:42:24 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA27044; Mon, 12 Oct 1998 11:42:20 -0700 (PDT) Date: Mon, 12 Oct 1998 11:42:20 -0700 (PDT) Message-Id: <199810121842.LAA27044@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/libffi Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 11:42:20 PDT Modified files: devel/libffi Makefile Log: Mark BROKEN for ELF: /bin/sh ../libtool --mode=link cc -O -pipe -o ffitest ffitest.o libffi.la cc -O -pipe -o .libs/ffitest ffitest.o -Wl,-rpath -Wl,/usr/local/lib .libs/libffi.so .libs/libffi.so: undefined reference to `ffi_call_SYSV' .libs/libffi.so: undefined reference to `_ffi_prep_args' *** Error code 1 Revision Changes Path 1.2 +3 -1 ports/devel/libffi/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 11:48:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA11777 for cvs-all-outgoing; Mon, 12 Oct 1998 11:48:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA11771; Mon, 12 Oct 1998 11:48:54 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA27239; Mon, 12 Oct 1998 11:48:53 -0700 (PDT) Date: Mon, 12 Oct 1998 11:48:53 -0700 (PDT) Message-Id: <199810121848.LAA27239@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mail/exim Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 11:48:52 PDT Modified files: mail/exim Makefile Log: Mark BROKEN for ELF: gcc -o eximon.bin -L/usr/X11R6/lib dummies.o os.o spool_in.o store.o string.o tree.o em_StripChart.o em_TextPop.o em_globals.o em_init.o em_log.o em_main.o em_menu.o em_queue.o em_strip.o em_text.o em_xs.o em_version.o -lXaw -lXmu -lXt -lXext -lX11 pcre/libpcre.a -lc /usr/libexec/elf/ld: warning: libSM.so.6, needed by /usr/X11R6/lib/libXaw.so, not found (try using --rpath) /usr/libexec/elf/ld: warning: libICE.so.6, needed by /usr/X11R6/lib/libXaw.so, not found (try using --rpath) /usr/X11R6/lib/libXt.so: undefined reference to `SmcSaveYourselfDone' /usr/X11R6/lib/libXt.so: undefined reference to `IceConnectionNumber' Revision Changes Path 1.17 +3 -1 ports/mail/exim/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 11:53:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA12377 for cvs-all-outgoing; Mon, 12 Oct 1998 11:53:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA12370; Mon, 12 Oct 1998 11:53:11 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA27390; Mon, 12 Oct 1998 11:53:10 -0700 (PDT) Date: Mon, 12 Oct 1998 11:53:10 -0700 (PDT) Message-Id: <199810121853.LAA27390@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/linux_devel Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 11:53:10 PDT Modified files: devel/linux_devel Makefile Log: Mark BROKEN for ELF: ===> Building package for linux_devel-0.2 Creating package /usr/ports/packages/All/linux_devel-0.2.tgz Registering depends: linux_lib-2.5. Creating gzip'd tar ball in '/usr/ports/packages/All/linux_devel-0.2.tgz' tar: can't add file usr/lib/libfbm.so.1 : No such file or directory tar: can't add file usr/lib/libjpeg.so.1 : No such file or directory tar: can't add file usr/lib/libtiff.so.1 : No such file or directory /usr/sbin/pkg_create: tar command failed with code 256 Revision Changes Path 1.6 +3 -1 ports/devel/linux_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 Oct 12 11:53:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA12449 for cvs-all-outgoing; Mon, 12 Oct 1998 11:53:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA12442; Mon, 12 Oct 1998 11:53:35 -0700 (PDT) (envelope-from imp@FreeBSD.org) From: Warner Losh Received: (from imp@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA27442; Mon, 12 Oct 1998 11:53:34 -0700 (PDT) Date: Mon, 12 Oct 1998 11:53:34 -0700 (PDT) Message-Id: <199810121853.LAA27442@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa aha_isa.c bt_isa.c adv_isa.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk imp 1998/10/12 11:53:33 PDT Modified files: sys/i386/isa aha_isa.c bt_isa.c adv_isa.c Log: Fix breakage introduced by last patch. bde has added CC_QUIET flag to hasseen_isadev so this will be less noisy when conflicts do exist. Also eliminate redundant warnings about conflicts. Requested by: bde Reviewed by: gibbs Revision Changes Path 1.4 +4 -28 src/sys/i386/isa/aha_isa.c 1.4 +4 -27 src/sys/i386/isa/bt_isa.c 1.6 +3 -18 src/sys/i386/isa/adv_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 Oct 12 11:57:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA13223 for cvs-all-outgoing; Mon, 12 Oct 1998 11:57:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from panzer.plutotech.com (panzer.plutotech.com [206.168.67.125]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA13215; Mon, 12 Oct 1998 11:57:55 -0700 (PDT) (envelope-from ken@panzer.plutotech.com) Received: (from ken@localhost) by panzer.plutotech.com (8.9.1/8.8.5) id MAA25903; Mon, 12 Oct 1998 12:57:34 -0600 (MDT) From: "Kenneth D. Merry" Message-Id: <199810121857.MAA25903@panzer.plutotech.com> Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c In-Reply-To: <199810121809.LAA07119@dingo.cdrom.com> from Mike Smith at "Oct 12, 98 11:09:54 am" To: mike@smith.net.au (Mike Smith) Date: Mon, 12 Oct 1998 12:57:34 -0600 (MDT) Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL28s (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Mike Smith wrote... > > I think what this is telling us is that attempting to use anything other > than the least common denominator as the default is a Bad Idea. > > Don't kid yourselves folks; you're not going to manage to add quirk > entries for all the drives and firmware revisions that screw up royally > when you try to do fancy things to them. Better to add quirk entries > for the drives that get it _right_. > > Shipping a release with this sort of dangerous behaviour enabled is > going to be a support _nightmare_. I realise you folks aren't in the > support firing line, but for the sake of those that are, not to mention > the extremely negative publicity this sort of problem will cause, please > consider turning it off. Somehow I'm not surprised that someone responded to that commit with a "sky is falling" message. I wish people would be a little slower with the knee-jerk reactions. Cache sync has been turned on in the DA driver for a very long time now (since the first revision, June 27th, 1997) and there have been very few problems with it. By far, most drives out there do something reasonable when they get this command. I think there are plenty of other things in -current that are much more likely to cause support nightmares and bad publicity. Ken -- Kenneth Merry ken@plutotech.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 12:03:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA14300 for cvs-all-outgoing; Mon, 12 Oct 1998 12:03:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from panzer.plutotech.com (panzer.plutotech.com [206.168.67.125]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA14266; Mon, 12 Oct 1998 12:03:38 -0700 (PDT) (envelope-from ken@panzer.plutotech.com) Received: (from ken@localhost) by panzer.plutotech.com (8.9.1/8.8.5) id NAA25964; Mon, 12 Oct 1998 13:03:10 -0600 (MDT) From: "Kenneth D. Merry" Message-Id: <199810121903.NAA25964@panzer.plutotech.com> Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c In-Reply-To: from Matthew Jacob at "Oct 12, 98 11:25:19 am" To: mjacob@feral.com Date: Mon, 12 Oct 1998 13:03:10 -0600 (MDT) Cc: mike@smith.net.au, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL28s (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Matthew Jacob wrote... > > I'm not quite sure I agree. It's a judgement call as to what the > state overall of the existing population of devices there are out there. > Nearly all SCSI-2 devices out there will sensibly support this > command (actually, I didn't see any test within scsi_da to actually > *not* try this with < SCSI2 support- that probably ought to be fixed > for the (still somewhat large) population of CCS disks out there), or > return some sensible kind of error. As far as I recall with the early > f/w version of the Micropolis drive that I put in as a quirk for > NetBSD, this drive just wandered into the weeds- but that is very likely > the exception. We're going to put in a mechanism in the next day or two to allow specifying SCSI revision in quirk entries. This will allow us to disable cache sync, multi-lun probing and serial number inquiries for SCSI-1 devices. > Also the case *where* the quirks apply makes some difference. > In this case, the quirk entries are for close/shutdown cases (rarely > executed), and are definitely for older devices. Right. Not to mention the fact that we've had cache sync turned on in daclose() from the beginning, and we've only run into problems in one or two cases. Ken -- Kenneth Merry ken@plutotech.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 12:09:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA15425 for cvs-all-outgoing; Mon, 12 Oct 1998 12:09:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from dingo.cdrom.com (castles203.castles.com [208.214.165.203]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA15401; Mon, 12 Oct 1998 12:09:02 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id MAA07536; Mon, 12 Oct 1998 12:13:30 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Message-Id: <199810121913.MAA07536@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: "Kenneth D. Merry" cc: mike@smith.net.au (Mike Smith), cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c In-reply-to: Your message of "Mon, 12 Oct 1998 12:57:34 MDT." <199810121857.MAA25903@panzer.plutotech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 12 Oct 1998 12:13:29 -0700 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Mike Smith wrote... > > > > I think what this is telling us is that attempting to use anything other > > than the least common denominator as the default is a Bad Idea. > > > > Don't kid yourselves folks; you're not going to manage to add quirk > > entries for all the drives and firmware revisions that screw up royally > > when you try to do fancy things to them. Better to add quirk entries > > for the drives that get it _right_. > > > > Shipping a release with this sort of dangerous behaviour enabled is > > going to be a support _nightmare_. I realise you folks aren't in the > > support firing line, but for the sake of those that are, not to mention > > the extremely negative publicity this sort of problem will cause, please > > consider turning it off. > > Somehow I'm not surprised that someone responded to that commit with a "sky > is falling" message. I wish people would be a little slower with the > knee-jerk reactions. This isn't a "knee-jerk reaction". I've been watching and weighing the situation, and particularly the symptoms, since they first started to manifest. The "sky is (not) falling"; you probably won't even hear the noise. But a large proportion of people with broken-but-not-quirked drives are going to bitch about their systems not rebooting, or their drives having to be power-cycled, etc. I also asked you to "consider" turning it off. This means "please weight the issues", and implies "please offer a reasonable justification, becase we are going to have to use this justification to placate the plaintiffs". > Cache sync has been turned on in the DA driver for a very long time now > (since the first revision, June 27th, 1997) and there have been very > few problems with it. By far, most drives out there do something > reasonable when they get this command. There were "very few problems" with CAM in general until it reached a slightly wider audience with its incoporation into -current. The audience for the 3.0 release will be at least an order of magnitude larger again. The problems may well be trivial and confined to a tiny corner of the userbase, but there will be people in that corner nonetheless. > I think there are plenty of other things in -current that are much more > likely to cause support nightmares and bad publicity. Indeed. Don't think that you're somehow being singled out for "special treatment" here. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 12:11:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA16053 for cvs-all-outgoing; Mon, 12 Oct 1998 12:11:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from dingo.cdrom.com (castles203.castles.com [208.214.165.203]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA16030; Mon, 12 Oct 1998 12:11:33 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id MAA07560; Mon, 12 Oct 1998 12:15:50 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Message-Id: <199810121915.MAA07560@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: "Kenneth D. Merry" cc: mjacob@feral.com, mike@smith.net.au, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c In-reply-to: Your message of "Mon, 12 Oct 1998 13:03:10 MDT." <199810121903.NAA25964@panzer.plutotech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 12 Oct 1998 12:15:49 -0700 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > We're going to put in a mechanism in the next day or two to allow > specifying SCSI revision in quirk entries. This will allow us to disable > cache sync, multi-lun probing and serial number inquiries for SCSI-1 > devices. Hmm. Would you consider adding a facility to parse a text-format quirk description and add it to the compiled-in tables (if unique?). If you were to do this, it would be possible to read quirk entries from a file during the boot phase, decoupling the quirk data from the kernel code. (This would eg. make it possible to boot/install on a system which wouldn't run without a quirk entry.) -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 12:17:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA17203 for cvs-all-outgoing; Mon, 12 Oct 1998 12:17:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA17198; Mon, 12 Oct 1998 12:17:40 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA28532; Mon, 12 Oct 1998 12:17:34 -0700 (PDT) Date: Mon, 12 Oct 1998 12:17:34 -0700 (PDT) Message-Id: <199810121917.MAA28532@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mail/imap-uw Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 12:17:34 PDT Modified files: mail/imap-uw Makefile Log: Mark BROKEN for ELF: cd mtest;make `cat ../c-client/CCTYPE` -I../c-client `cat ../c-client/CFLAGS` -c mtest.c `cat ../c-client/CCTYPE` -I../c-client `cat ../c-client/CFLAGS` -o mtest mtest.o -L../c-client -lc-client `cat ../c-client/LDFLAGS` /usr/libexec/elf/ld: cannot open -lc-client: No such file or directory *** Error code 1 Revision Changes Path 1.18 +3 -1 ports/mail/imap-uw/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 12:24:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA18770 for cvs-all-outgoing; Mon, 12 Oct 1998 12:24:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA18757; Mon, 12 Oct 1998 12:24:15 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA28791; Mon, 12 Oct 1998 12:24:10 -0700 (PDT) Date: Mon, 12 Oct 1998 12:24:10 -0700 (PDT) Message-Id: <199810121924.MAA28791@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mail/mmr Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 12:24:09 PDT Modified files: mail/mmr Makefile Log: Mark BROKEN for ELF: g++ -o mmr main.o rcfile.o listing.o handlemail.o commands.o terminal.o mailmsg.o mime.o mimetype.o base64.o filemap.o iobottle.o my_regex.o outgoing.o md5/libmd5.a -lncurses -lcompat cc: md5/libmd5.a: No such file or directory *** Error code 1 Revision Changes Path 1.3 +3 -1 ports/mail/mmr/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 12:25:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA19065 for cvs-all-outgoing; Mon, 12 Oct 1998 12:25:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from panzer.plutotech.com (panzer.plutotech.com [206.168.67.125]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA19035; Mon, 12 Oct 1998 12:25:16 -0700 (PDT) (envelope-from ken@panzer.plutotech.com) Received: (from ken@localhost) by panzer.plutotech.com (8.9.1/8.8.5) id NAA26149; Mon, 12 Oct 1998 13:24:53 -0600 (MDT) From: "Kenneth D. Merry" Message-Id: <199810121924.NAA26149@panzer.plutotech.com> Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c In-Reply-To: <199810121915.MAA07560@dingo.cdrom.com> from Mike Smith at "Oct 12, 98 12:15:49 pm" To: mike@smith.net.au (Mike Smith) Date: Mon, 12 Oct 1998 13:24:53 -0600 (MDT) Cc: mjacob@feral.com, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL28s (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Mike Smith wrote... > > We're going to put in a mechanism in the next day or two to allow > > specifying SCSI revision in quirk entries. This will allow us to disable > > cache sync, multi-lun probing and serial number inquiries for SCSI-1 > > devices. > > Hmm. Would you consider adding a facility to parse a text-format quirk > description and add it to the compiled-in tables (if unique?). Yes, I'll certainly think about doing it. It would probably be best to do it via camcontrol. It'll require mallocing memory in the kernel to store the additional quirk entries, and therefore could be abused by a malicious hacker. But then again, it would be much easier to just send a nice format unit command..:) Another difficulty will be handling the fact that we've got a number of quirk tables, not one master quirk table like the old code. This will probably require some thought/design to implement. This won't happen before 3.0. > If you were to do this, it would be possible to read quirk entries from > a file during the boot phase, decoupling the quirk data from the kernel > code. (This would eg. make it possible to boot/install on a system > which wouldn't run without a quirk entry.) Hmm, how early in the boot phase? The earlier in the boot phase it goes, the more difficult it would be to do. If you're talking about from /etc/rc, then sure, it could be done via camcontrol or something similar. Doing it before the CAM probe phase would be much more difficult. Ken -- Kenneth Merry ken@plutotech.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 12:25:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA19148 for cvs-all-outgoing; Mon, 12 Oct 1998 12:25:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA19120; Mon, 12 Oct 1998 12:25:32 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA28844; Mon, 12 Oct 1998 12:25:27 -0700 (PDT) Date: Mon, 12 Oct 1998 12:25:27 -0700 (PDT) Message-Id: <199810121925.MAA28844@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/omniORB Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 12:25:27 PDT Modified files: devel/omniORB Makefile Log: Mark BROKEN for ELF: g++ -fhandle-exceptions -pipe -I. -D__OMNIORB2__ -I../../../include -DDEFAULT_LOGDIR=\"/var/omninames\" -o omniNames NamingContext_i.o log.o omniNames.o -L../../../src/lib/omniORB2 -lomniORB2 -L../../../src/lib/omnithread -lomnithread ../../../src/lib/omnithread/libomnithread.a(posix.o): In function `omni_mutex::omni_mutex(void)': posix.o(.text+0x10): undefined reference to `pthread_mutex_init' ../../../src/lib/omnithread/libomnithread.a(posix.o): In function `omni_mutex::~omni_mutex(void)': posix.o(.text+0xa2): undefined reference to `pthread_mutex_destroy' ../../../src/lib/omnithread/libomnithread.a(posix.o): In function `omni_mutex::lock(void)': Revision Changes Path 1.4 +3 -1 ports/devel/omniORB/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 12:27:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA19824 for cvs-all-outgoing; Mon, 12 Oct 1998 12:27:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from apollo.backplane.com (apollo.backplane.com [209.157.86.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA19786; Mon, 12 Oct 1998 12:27:53 -0700 (PDT) (envelope-from dillon@apollo.backplane.com) Received: (from dillon@localhost) by apollo.backplane.com (8.9.1/8.9.1) id MAA16373; Mon, 12 Oct 1998 12:27:30 -0700 (PDT) (envelope-from dillon) Date: Mon, 12 Oct 1998 12:27:30 -0700 (PDT) From: Matthew Dillon Message-Id: <199810121927.MAA16373@apollo.backplane.com> To: Mike Smith Cc: "Kenneth D. Merry" , mike@smith.net.au (Mike Smith), cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c References: <199810121913.MAA07536@dingo.cdrom.com> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk cache-sync is such a fundamental command, I can't imagine any drive not doing the right thing with it, especially drives which support tagged commands. The command is tightly integrated into the disk cache paradigm as given by the SCSI-II standard. But I guess there could be a few... even so, I think we have to support it. It's just too important a command, especially in larger RAID SCSI systems which have huge write caches. Consider a UPS signalling a machine that it's about to die and the machine trying to flush everything out and shut down. Better to get the cache flushed to disk (non-volatile or not) before power goes poof. Have there been any specific reports of problems with the use of the command other then the vague micropolis report in the first email (first email that I got, anyway) ? -Matt Matthew Dillon Engineering, HiWay Technologies, Inc. & BEST Internet Communications & God knows what else. (Please include original email in any response) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 12:29:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA20515 for cvs-all-outgoing; Mon, 12 Oct 1998 12:29:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from apollo.backplane.com (apollo.backplane.com [209.157.86.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA20508; Mon, 12 Oct 1998 12:29:41 -0700 (PDT) (envelope-from dillon@apollo.backplane.com) Received: (from dillon@localhost) by apollo.backplane.com (8.9.1/8.9.1) id MAA16403; Mon, 12 Oct 1998 12:29:22 -0700 (PDT) (envelope-from dillon) Date: Mon, 12 Oct 1998 12:29:22 -0700 (PDT) From: Matthew Dillon Message-Id: <199810121929.MAA16403@apollo.backplane.com> To: asami@FreeBSD.ORG (Satoshi Asami) Cc: peter@netplex.com.au, dwhite@resnet.uoregon.edu, cvs-committers@FreeBSD.ORG Subject: Re: Perl5 configure problem References: <199810120559.WAA15696@bubble.didi.com> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk : * : * urp. ok. cvs update time. Hrmm.. make world time, probably. : :What are you talking about? 5.004 has *never* been imported to the :source tree. : :Geeze, can we cut down on the noise please? The S/N ratio of the :lists are awful these days. : :Satoshi I don't know *HOW* 5.004 got installed on my machine in /usr/bin. This is so weird :-) The S/N ratio is aweful because everyone and their grandmother insist on responding a question to death. Includding me, sometimes. -Matt Matthew Dillon Engineering, HiWay Technologies, Inc. & BEST Internet Communications & God knows what else. (Please include original email in any response) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 12:32:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA21267 for cvs-all-outgoing; Mon, 12 Oct 1998 12:32:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from dingo.cdrom.com (castles203.castles.com [208.214.165.203]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA21154; Mon, 12 Oct 1998 12:32:01 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id MAA07717; Mon, 12 Oct 1998 12:36:26 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Message-Id: <199810121936.MAA07717@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: "Kenneth D. Merry" cc: mike@smith.net.au (Mike Smith), mjacob@feral.com, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c In-reply-to: Your message of "Mon, 12 Oct 1998 13:24:53 MDT." <199810121924.NAA26149@panzer.plutotech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 12 Oct 1998 12:36:25 -0700 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Mike Smith wrote... > > > We're going to put in a mechanism in the next day or two to allow > > > specifying SCSI revision in quirk entries. This will allow us to disable > > > cache sync, multi-lun probing and serial number inquiries for SCSI-1 > > > devices. > > > > Hmm. Would you consider adding a facility to parse a text-format quirk > > description and add it to the compiled-in tables (if unique?). > > Yes, I'll certainly think about doing it. It would probably be best to do > it via camcontrol. That would be too late. > It'll require mallocing memory in the kernel to store the additional quirk > entries, and therefore could be abused by a malicious hacker. But then > again, it would be much easier to just send a nice format unit command..:) Indeed. > Another difficulty will be handling the fact that we've got a number of > quirk tables, not one master quirk table like the old code. This will > probably require some thought/design to implement. No problem. > This won't happen before 3.0. I had no delusions about this. 8) > > If you were to do this, it would be possible to read quirk entries from > > a file during the boot phase, decoupling the quirk data from the kernel > > code. (This would eg. make it possible to boot/install on a system > > which wouldn't run without a quirk entry.) > > Hmm, how early in the boot phase? The earlier in the boot phase it goes, > the more difficult it would be to do. If you're talking about from > /etc/rc, then sure, it could be done via camcontrol or something similar. > Doing it before the CAM probe phase would be much more difficult. Why? You'd just have a set of linked lists of quirk tables, initialised by a SYSINIT very early on. This would know how to look for sources of quirk data, including the compiled-in "standard" tables, and possible extra sources. The real plus here is decoupling the quirk data from the code itself; the two don't belong together. You should, ideally, be able to add a line to a configuration file describing the quirk and have things "just work" without having to rebuild the kernel. I realise this is not likely to be a high priority for you folks, and in reality it's probably not massively important, but it's one of many small steps towards organising the kernel. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 12:32:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA21415 for cvs-all-outgoing; Mon, 12 Oct 1998 12:32:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA21310; Mon, 12 Oct 1998 12:32:31 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA29165; Mon, 12 Oct 1998 12:32:28 -0700 (PDT) Date: Mon, 12 Oct 1998 12:32:28 -0700 (PDT) Message-Id: <199810121932.MAA29165@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/p5-Devel-DProf Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 12:32:28 PDT Modified files: devel/p5-Devel-DProf Makefile Log: Mark BROKEN for current. Perl paths are BROKEN. Revision Changes Path 1.6 +6 -1 ports/devel/p5-Devel-DProf/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 12:33:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA21576 for cvs-all-outgoing; Mon, 12 Oct 1998 12:33:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from dingo.cdrom.com (castles203.castles.com [208.214.165.203]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA21535; Mon, 12 Oct 1998 12:33:15 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id MAA07732; Mon, 12 Oct 1998 12:37:56 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Message-Id: <199810121937.MAA07732@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Matthew Dillon cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c In-reply-to: Your message of "Mon, 12 Oct 1998 12:27:30 PDT." <199810121927.MAA16373@apollo.backplane.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 12 Oct 1998 12:37:55 -0700 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Have there been any specific reports of problems with the use of > the command other then the vague micropolis report in the first > email (first email that I got, anyway) ? It looks like it kills a number of Fujitsu units (which are fairly common in the bargain market); the symptoms I have noted were that the fault prevents the system from rebooting. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 12:36:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA22278 for cvs-all-outgoing; Mon, 12 Oct 1998 12:36:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from panzer.plutotech.com (panzer.plutotech.com [206.168.67.125]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA22253; Mon, 12 Oct 1998 12:36:42 -0700 (PDT) (envelope-from ken@panzer.plutotech.com) Received: (from ken@localhost) by panzer.plutotech.com (8.9.1/8.8.5) id NAA26254; Mon, 12 Oct 1998 13:36:19 -0600 (MDT) From: "Kenneth D. Merry" Message-Id: <199810121936.NAA26254@panzer.plutotech.com> Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c In-Reply-To: <199810121927.MAA16373@apollo.backplane.com> from Matthew Dillon at "Oct 12, 98 12:27:30 pm" To: dillon@apollo.backplane.com (Matthew Dillon) Date: Mon, 12 Oct 1998 13:36:19 -0600 (MDT) Cc: mike@smith.net.au, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL28s (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Matthew Dillon wrote... > cache-sync is such a fundamental command, I can't imagine any drive > not doing the right thing with it, especially drives which support tagged > commands. The command is tightly integrated into the disk cache paradigm > as given by the SCSI-II standard. > > But I guess there could be a few... even so, I think we have to support > it. It's just too important a command, especially in larger RAID SCSI > systems which have huge write caches. Consider a UPS signalling a machine > that it's about to die and the machine trying to flush everything out and > shut down. Better to get the cache flushed to disk (non-volatile or not) > before power goes poof. Good example. > Have there been any specific reports of problems with the use of > the command other then the vague micropolis report in the first > email (first email that I got, anyway) ? Well, basically Tom Jackson has three Fujitsu drives, two of them are the M2954's that are quirked in the da driver now. He sent one of those drives to Justin this summer, and we figured out that it was returning the cache sync command with an illegal request sense key. That isn't really a big problem, since we just ignore the error. It looks like his other drive (slightly different version of the same model) hangs when it gets the cache sync command. I'm not sure that's what is happening, but it seems to be the case. Eventually, I think, the command timeout should hit and the machine should reboot, though. The reason he didn't see this before my most recent changes is because the drive in question is his boot drive, and for some reason wasn't getting final close. The shutdown hook I put in does a cache sync for all da devices that haven't seen final close already. Ken -- Kenneth Merry ken@plutotech.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 12:56:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA27001 for cvs-all-outgoing; Mon, 12 Oct 1998 12:56:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from panzer.plutotech.com (panzer.plutotech.com [206.168.67.125]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA26963; Mon, 12 Oct 1998 12:56:49 -0700 (PDT) (envelope-from ken@panzer.plutotech.com) Received: (from ken@localhost) by panzer.plutotech.com (8.9.1/8.8.5) id NAA26363; Mon, 12 Oct 1998 13:56:25 -0600 (MDT) From: "Kenneth D. Merry" Message-Id: <199810121956.NAA26363@panzer.plutotech.com> Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c In-Reply-To: <199810121937.MAA07732@dingo.cdrom.com> from Mike Smith at "Oct 12, 98 12:37:55 pm" To: mike@smith.net.au (Mike Smith) Date: Mon, 12 Oct 1998 13:56:25 -0600 (MDT) Cc: dillon@apollo.backplane.com, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL28s (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Mike Smith wrote... > > Have there been any specific reports of problems with the use of > > the command other then the vague micropolis report in the first > > email (first email that I got, anyway) ? > > It looks like it kills a number of Fujitsu units (which are fairly > common in the bargain market); the symptoms I have noted were that the > fault prevents the system from rebooting. It'll reboot eventually, just not until after the command timeout hits. (which is set to 5 minutes, probably to allow big RAID arrays to sync things out to disk. We can probably decrease this a bit.) Ken -- Kenneth Merry ken@plutotech.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 13:00:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA27998 for cvs-all-outgoing; Mon, 12 Oct 1998 13:00:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from pluto.plutotech.com (mail.plutotech.com [206.168.67.137]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA27981; Mon, 12 Oct 1998 13:00:09 -0700 (PDT) (envelope-from gibbs@plutotech.com) Received: from narnia.plutotech.com (narnia.plutotech.com [206.168.67.130]) by pluto.plutotech.com (8.8.7/8.8.5) with ESMTP id NAA03712; Mon, 12 Oct 1998 13:59:45 -0600 (MDT) Message-Id: <199810121959.NAA03712@pluto.plutotech.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Mike Smith cc: Kenneth Merry , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c In-reply-to: Your message of "Mon, 12 Oct 1998 11:09:54 PDT." <199810121809.LAA07119@dingo.cdrom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 12 Oct 1998 13:53:00 -0600 From: "Justin T. Gibbs" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > >I think what this is telling us is that attempting to use anything other >than the least common denominator as the default is a Bad Idea. > If a device has an enabled write cache and you don't perform a synchronize cache on shutdown, the user may corrupt their file systems when powering off the system. The number of drives that fail to respond to a synchronize cache command is far, far smaller than the number of drives shipped with new systems that have write cache enabled and require the use of this command in order to guarantee safe shutdown. To not use the command would encourage a tech support nightmare. I'm certainly open to suggestions on how to limit the chances of the synchronize cache command causing problems. Perhaps we should only do this if WCE is turned on in the cache control page. -- Justin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 13:01:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA28273 for cvs-all-outgoing; Mon, 12 Oct 1998 13:01:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from panzer.plutotech.com (panzer.plutotech.com [206.168.67.125]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA28260; Mon, 12 Oct 1998 13:01:49 -0700 (PDT) (envelope-from ken@panzer.plutotech.com) Received: (from ken@localhost) by panzer.plutotech.com (8.9.1/8.8.5) id OAA26409; Mon, 12 Oct 1998 14:01:26 -0600 (MDT) From: "Kenneth D. Merry" Message-Id: <199810122001.OAA26409@panzer.plutotech.com> Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c In-Reply-To: <199810121936.MAA07717@dingo.cdrom.com> from Mike Smith at "Oct 12, 98 12:36:25 pm" To: mike@smith.net.au (Mike Smith) Date: Mon, 12 Oct 1998 14:01:26 -0600 (MDT) Cc: mjacob@feral.com, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL28s (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Mike Smith wrote... > > This won't happen before 3.0. > > I had no delusions about this. 8) Good. :) > > > If you were to do this, it would be possible to read quirk entries from > > > a file during the boot phase, decoupling the quirk data from the kernel > > > code. (This would eg. make it possible to boot/install on a system > > > which wouldn't run without a quirk entry.) > > > > Hmm, how early in the boot phase? The earlier in the boot phase it goes, > > the more difficult it would be to do. If you're talking about from > > /etc/rc, then sure, it could be done via camcontrol or something similar. > > Doing it before the CAM probe phase would be much more difficult. > > Why? You'd just have a set of linked lists of quirk tables, initialised > by a SYSINIT very early on. This would know how to look for sources of > quirk data, including the compiled-in "standard" tables, and possible > extra sources. > > The real plus here is decoupling the quirk data from the code itself; > the two don't belong together. You should, ideally, be able to add a > line to a configuration file describing the quirk and have things "just > work" without having to rebuild the kernel. Well, the main problem would be how to get the quirk entries off the disk without a disk driver? I guess the answer is by using the BIOS driver or something like that, but I have no idea how that would work. > I realise this is not likely to be a high priority for you folks, and > in reality it's probably not massively important, but it's one of many > small steps towards organising the kernel. It would be more important if we were a commercial, binary-only operating system. Since folks have the source and can easily add their own quirks and recompile, it's less of a priority. :) Ken -- Kenneth Merry ken@plutotech.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 13:01:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA28274 for cvs-all-outgoing; Mon, 12 Oct 1998 13:01:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA28262; Mon, 12 Oct 1998 13:01:50 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA00333; Mon, 12 Oct 1998 13:01:49 -0700 (PDT) Date: Mon, 12 Oct 1998 13:01:49 -0700 (PDT) Message-Id: <199810122001.NAA00333@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pkg_install/add extract.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/12 13:01:49 PDT Modified files: usr.sbin/pkg_install/add extract.c Log: Correct a misleading comment. Revision Changes Path 1.22 +2 -2 src/usr.sbin/pkg_install/add/extract.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 13:09:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA29630 for cvs-all-outgoing; Mon, 12 Oct 1998 13:09:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA29620; Mon, 12 Oct 1998 13:09:36 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.8.7/8.7.3) id NAA29819; Mon, 12 Oct 1998 13:09:18 -0700 (PDT) Date: Mon, 12 Oct 1998 13:09:18 -0700 (PDT) Message-Id: <199810122009.NAA29819@vader.cs.berkeley.edu> To: jseger@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199810121853.LAA27390@freefall.freebsd.org> (jseger@FreeBSD.ORG) Subject: Re: cvs commit: ports/devel/linux_devel Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * tar: can't add file usr/lib/libfbm.so.1 : No such file or directory * tar: can't add file usr/lib/libjpeg.so.1 : No such file or directory * tar: can't add file usr/lib/libtiff.so.1 : No such file or directory You should be able to get around this with NO_FILTER_SHLIBS. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 13:13:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA00353 for cvs-all-outgoing; Mon, 12 Oct 1998 13:13:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA00348; Mon, 12 Oct 1998 13:13:13 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.8.7/8.7.3) id NAA29825; Mon, 12 Oct 1998 13:10:27 -0700 (PDT) Date: Mon, 12 Oct 1998 13:10:27 -0700 (PDT) Message-Id: <199810122010.NAA29825@vader.cs.berkeley.edu> To: brian@Awfulhak.org CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199810121110.MAA11238@woof.lan.awfulhak.org> (message from Brian Somers on Mon, 12 Oct 1998 12:10:08 +0100) Subject: Re: cvs commit: ports/x11/kworldwatch Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * I'm clearly missing something here. I have: * checking for giflib... yes What command does config.log say that it's running here? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 13:14:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA00633 for cvs-all-outgoing; Mon, 12 Oct 1998 13:14:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA00621; Mon, 12 Oct 1998 13:14:11 -0700 (PDT) (envelope-from dt@FreeBSD.org) From: Dmitrij Tejblum Received: (from dt@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA00716; Mon, 12 Oct 1998 13:14:09 -0700 (PDT) Date: Mon, 12 Oct 1998 13:14:09 -0700 (PDT) Message-Id: <199810122014.NAA00716@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern vfs_subr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dt 1998/10/12 13:14:09 PDT Modified files: sys/kern vfs_subr.c Log: UnVMIO vnodes of block devices when they are no longer in use. (Some things, like msdosfs, do not work (panic) on devices with VMIO enabled. FFS enable VMIO on mounted devices, and nothing previously disabled it, so, after you mounted FFS floppy, you could not mount msdosfs floppy anymore...) This is mostly a quick before-release fix. Reviewed by: bde Revision Changes Path 1.164 +13 -2 src/sys/kern/vfs_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 13:16:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA01118 for cvs-all-outgoing; Mon, 12 Oct 1998 13:16:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from feral.com (prope3.ppp.lmi.net [208.25.88.169]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA01096; Mon, 12 Oct 1998 13:16:28 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from localhost (mjacob@localhost) by feral.com (8.8.6/8.8.6) with SMTP id NAA12872; Mon, 12 Oct 1998 13:15:33 -0700 Date: Mon, 12 Oct 1998 13:15:33 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@feral-gw Reply-To: mjacob@feral.com To: Mike Smith cc: "Kenneth D. Merry" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c In-Reply-To: <199810121915.MAA07560@dingo.cdrom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Mon, 12 Oct 1998, Mike Smith wrote: > > We're going to put in a mechanism in the next day or two to allow > > specifying SCSI revision in quirk entries. This will allow us to disable > > cache sync, multi-lun probing and serial number inquiries for SCSI-1 > > devices. > > Hmm. Would you consider adding a facility to parse a text-format quirk > description and add it to the compiled-in tables (if unique?). > > If you were to do this, it would be possible to read quirk entries from > a file during the boot phase, decoupling the quirk data from the kernel > code. (This would eg. make it possible to boot/install on a system > which wouldn't run without a quirk entry.) I like this idea. Perhaps a sysctl variant. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 13:36:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA05143 for cvs-all-outgoing; Mon, 12 Oct 1998 13:36:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA05123; Mon, 12 Oct 1998 13:36:35 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA01305; Mon, 12 Oct 1998 13:36:34 -0700 (PDT) Date: Mon, 12 Oct 1998 13:36:34 -0700 (PDT) Message-Id: <199810122036.NAA01305@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libkvm kvm_proc.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/10/12 13:36:33 PDT Modified files: lib/libkvm kvm_proc.c Log: Avoid the "Cannot allocate memory" problem that appears on heavily loaded systems by retrying the sysctl() with a larger buffer if it fails with ENOMEM. For good measure, allocate 10% more memory than sysctl() claims is necessary. PR: 8275 Reviewed by: David Greenman Revision Changes Path 1.22 +10 -4 src/lib/libkvm/kvm_proc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 13:42:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA06875 for cvs-all-outgoing; Mon, 12 Oct 1998 13:42:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA06869; Mon, 12 Oct 1998 13:42:35 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA01588; Mon, 12 Oct 1998 13:42:34 -0700 (PDT) Date: Mon, 12 Oct 1998 13:42:34 -0700 (PDT) Message-Id: <199810122042.NAA01588@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/prc-tools Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 13:42:34 PDT Modified files: devel/prc-tools Makefile Log: BROKEN for ELF: cd libglib.0.1.0 ; make PREFIX=/usr/local/pilot TOOLDIR=/usr/local/pilot/bin LIBCDIR=libc.0.1.2 LIBMDIR=libmf.0.1.2 LIBGLIBDIR=libglib.0.1.0 cd libc.0.1.2 ; make PREFIX=/usr/local/pilot TOOLDIR=/usr/local/pilot/bin LIBCDIR=libc.0.1.2 LIBMDIR=libmf.0.1.2 LIBGLIBDIR=libglib.0.1.0 rm -f libc.sa ../exportlist libc.a > libc.exp ../stubgen "C Library" Libc libcstub.c Libc.S < libc.exp ../stubgen: not found *** Error code 127 Revision Changes Path 1.9 +3 -1 ports/devel/prc-tools/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 13:43:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA07063 for cvs-all-outgoing; Mon, 12 Oct 1998 13:43:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA07027; Mon, 12 Oct 1998 13:43:29 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA01623; Mon, 12 Oct 1998 13:43:28 -0700 (PDT) Date: Mon, 12 Oct 1998 13:43:28 -0700 (PDT) Message-Id: <199810122043.NAA01623@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mail/pine3 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 13:43:27 PDT Modified files: mail/pine3 Makefile Log: Mark BROKEN for ELF: cc -O -pipe -DDEBUG -DBSDI -DSYSTYPE=\"BSF\" -DMOUSE -DTERMCAP_WINS -o pine addrbook.o adrbklib.o args.o context.o filter.o folder.o help.o helptext.o imap.o init.o mailcap.o mailcmd.o mailindx.o mailpart.o mailview.o newmail.o other.o pine.o reply.o screen.o send.o signals.o status.o strings.o ttyin.o ttyout.o os.o date.c -L../pico -lpico ../c-client/c-client.a -ltermlib -lcrypt /usr/libexec/elf/ld: cannot open -lpico: No such file or directory *** Error code 1 Revision Changes Path 1.24 +3 -1 ports/mail/pine3/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 13:55:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA10136 for cvs-all-outgoing; Mon, 12 Oct 1998 13:55:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA10015; Mon, 12 Oct 1998 13:54:46 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from dolgtvari.ifi.uio.no (2602@dolgtvari.ifi.uio.no [129.240.65.8]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with SMTP id WAA11273; Mon, 12 Oct 1998 22:53:35 +0200 (MET DST) Received: from localhost (dag-erli@localhost) by dolgtvari.ifi.uio.no ; Mon, 12 Oct 1998 20:53:34 GMT Mime-Version: 1.0 To: "Kenneth D. Merry" Cc: mike@smith.net.au (Mike Smith), mjacob@feral.com, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c References: <199810122001.OAA26409@panzer.plutotech.com> Organization: University of Oslo, Department of Informatics X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-other-addresses: 'finger dag-erli@ifi.uio.no' for a list X-disclaimer-1: The views expressed in this article are mine alone, and do X-disclaimer-2: not necessarily coincide with those of any organisation or X-disclaimer-3: company with which I am or have been affiliated. X-Stop-Spam: http://www.cauce.org/ From: dag-erli@ifi.uio.no (Dag-Erling C. =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 12 Oct 1998 22:53:30 +0200 In-Reply-To: "Kenneth D. Merry"'s message of "Mon, 12 Oct 1998 14:01:26 -0600 (MDT)" Message-ID: Lines: 10 X-Mailer: Gnus v5.5/Emacs 19.34 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by hub.freebsd.org id NAB10053 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Kenneth D. Merry" writes: > Well, the main problem would be how to get the quirk entries off the disk > without a disk driver? I guess the answer is by using the BIOS driver or > something like that, but I have no idea how that would work. /kernel.config DES -- Dag-Erling Smørgrav - dag-erli@ifi.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 14:08:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA14513 for cvs-all-outgoing; Mon, 12 Oct 1998 14:08:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA14454; Mon, 12 Oct 1998 14:08:39 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA02291; Mon, 12 Oct 1998 14:08:35 -0700 (PDT) Date: Mon, 12 Oct 1998 14:08:35 -0700 (PDT) Message-Id: <199810122108.OAA02291@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/tvision Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 14:08:35 PDT Modified files: devel/tvision Makefile Log: Mark BROKEN for ELF: Creating package /usr/ports/packages/All/tvision-0.6.tgz Registering depends:. Creating gzip'd tar ball in '/usr/ports/packages/All/tvision-0.6.tgz' tar: can't add file lib/libtvision.so.0 : No such file or directory /usr/sbin/pkg_create: tar command failed with code 256 *** Error code 1 Revision Changes Path 1.7 +3 -1 ports/devel/tvision/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 14:11:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA15345 for cvs-all-outgoing; Mon, 12 Oct 1998 14:11:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA15337; Mon, 12 Oct 1998 14:11:50 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA02449; Mon, 12 Oct 1998 14:11:48 -0700 (PDT) Date: Mon, 12 Oct 1998 14:11:48 -0700 (PDT) Message-Id: <199810122111.OAA02449@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mail/tkrat Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 14:11:48 PDT Modified files: mail/tkrat Makefile Log: Mark BROKEN for ELF: depends on imap-uw Revision Changes Path 1.10 +3 -1 ports/mail/tkrat/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 14:14:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA16114 for cvs-all-outgoing; Mon, 12 Oct 1998 14:14:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA16104; Mon, 12 Oct 1998 14:14:32 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA02565; Mon, 12 Oct 1998 14:14:31 -0700 (PDT) Date: Mon, 12 Oct 1998 14:14:31 -0700 (PDT) Message-Id: <199810122114.OAA02565@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/12 14:14:31 PDT Modified files: . modules Log: boot2 --> src/sys/boot/i386/boot2 Revision Changes Path 1.2413 +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 Oct 12 14:16:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA16572 for cvs-all-outgoing; Mon, 12 Oct 1998 14:16:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA16566; Mon, 12 Oct 1998 14:16:28 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA02622; Mon, 12 Oct 1998 14:16:26 -0700 (PDT) Date: Mon, 12 Oct 1998 14:16:26 -0700 (PDT) Message-Id: <199810122116.OAA02622@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/boot2 - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/12 14:16:26 PDT src/sys/boot/i386/boot2 - Imported sources Update of /home/ncvs/src/sys/boot/i386/boot2 In directory freefall.freebsd.org:/d/users/rnordier/boot2 Log Message: New boot blocks: support for /boot/loader; a.out & ELF; cyl > 1023; multiple 0xa5 slices; etc. Status: Vendor Tag: RNORDIER Release Tags: v1 N src/sys/boot/i386/boot2/boot1.s N src/sys/boot/i386/boot2/boot1.m4 N src/sys/boot/i386/boot2/Makefile N src/sys/boot/i386/boot2/boot2.c I src/sys/boot/i386/boot2/CVS 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 Oct 12 14:50:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA23329 for cvs-all-outgoing; Mon, 12 Oct 1998 14:50:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA23222; Mon, 12 Oct 1998 14:50:16 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA03426; Mon, 12 Oct 1998 14:50:13 -0700 (PDT) Date: Mon, 12 Oct 1998 14:50:13 -0700 (PDT) Message-Id: <199810122150.OAA03426@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/editors/cooledit Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 14:50:12 PDT Modified files: editors/cooledit Makefile Log: Mark BROKEN for ELF: ===> Building package for cooledit-3.7.4 Creating package /usr/ports/packages/All/cooledit-3.7.4.tgz Registering depends: XFree86-3.3.2 xpm-3.4k. Creating gzip'd tar ball in '/usr/ports/packages/All/cooledit-3.7.4.tgz' tar: can't add file lib/libCw.so.1 : No such file or directory /usr/sbin/pkg_create: tar command failed with code 256 *** Error code 1 Revision Changes Path 1.8 +3 -1 ports/editors/cooledit/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 14:54:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA23869 for cvs-all-outgoing; Mon, 12 Oct 1998 14:54:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA23857; Mon, 12 Oct 1998 14:54:15 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA03654; Mon, 12 Oct 1998 14:54:14 -0700 (PDT) Date: Mon, 12 Oct 1998 14:54:14 -0700 (PDT) Message-Id: <199810122154.OAA03654@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libcam camlib.c src/sys/cam cam_xpt.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/12 14:54:13 PDT Modified files: lib/libcam camlib.c sys/cam cam_xpt.c Log: Add a "dummy light" (actually two dummy lights) to catch people who don't have the passthrough device configured in their kernel. This will hopefully reduce the number of people complaining that they can't get {camcontrol, xmcd, tosha, cdrecord, etc.} to work. Reviewed by: gibbs Revision Changes Path 1.2 +27 -4 src/lib/libcam/camlib.c 1.19 +18 -1 src/sys/cam/cam_xpt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 14:54:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA23906 for cvs-all-outgoing; Mon, 12 Oct 1998 14:54:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mail.scsn.net (scsn.net [206.25.246.12]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA23778; Mon, 12 Oct 1998 14:53:44 -0700 (PDT) (envelope-from dmaddox@scsn.net) Received: from rhiannon.scsn.net ([209.12.57.71]) by mail.scsn.net (Post.Office MTA v3.1.2 release (PO205-101c) ID# 0-41950U6000L1100S0) with ESMTP id AAA171; Mon, 12 Oct 1998 17:44:01 -0400 Received: (from dmaddox@localhost) by rhiannon.scsn.net (8.9.1/8.9.1) id RAA01280; Mon, 12 Oct 1998 17:53:29 -0400 (EDT) (envelope-from dmaddox) Message-ID: <19981012175329.E1157@scsn.net> Date: Mon, 12 Oct 1998 17:53:29 -0400 From: dmaddox@scsn.net (Donald J. Maddox) To: Satoshi Asami Cc: markm@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/lang/perl5 Makefile ports/lang/perl5/pkg PLIST Reply-To: dmaddox@scsn.net References: <19981012042954.C1296@scsn.net> <199810120904.CAA20600@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199810120904.CAA20600@silvia.hip.berkeley.edu>; from Satoshi Asami on Mon, Oct 12, 1998 at 02:04:43AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Mon, Oct 12, 1998 at 02:04:43AM -0700, Satoshi Asami wrote: > * There may be good reasons to mark this broken, but it seems to me that this > * is not one of them. When TCL was in the system, we still had a choice... > > The situation is different here. Besides, the fact that it doesn't > build correctly in -current, and it is going to be (more) major work > for markm to modify the system perl and/or port to not step on each > other's toes, more than justifies not making it available on -current. Read what I wrote :-) I'm not disputing that there may be good reasons for marking this port broken for -current; however, in Marks commit msg, he says that the port is being marked broken simply because perl5 is present in the system in -current: > Perl 5 is in the system. Mark this port broken for 3.0 for that reason. I just think that it would be nice to have a choice. I notice, however, that Mark is the perl5 port maintainer as well, so I guess theres not much chance of the port being better maintained than the system perl :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 14:56:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA24358 for cvs-all-outgoing; Mon, 12 Oct 1998 14:56:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA24343; Mon, 12 Oct 1998 14:56:20 -0700 (PDT) (envelope-from nik@FreeBSD.org) From: Nik Clayton Received: (from nik@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA03741; Mon, 12 Oct 1998 14:56:18 -0700 (PDT) Date: Mon, 12 Oct 1998 14:56:18 -0700 (PDT) Message-Id: <199810122156.OAA03741@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/en/handbook README handbook.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nik 1998/10/12 14:56:18 PDT Modified files: en/handbook README handbook.sgml Log: Reviewing the use of and . In some cases wasn't appropriate, and the markup was changed to or other. In some cases there were spurious elements before and after the . These were removed. Reformatted text within elements because the whitespace *is* significant. Added and elements within where necessary. If I spotted inappropriate use of markup within the immediate vicinity of the elements then I fixed that (mostly the use of ). This is part one of these changes -- there's a load of them, and this goes up to line 11,284 or thereabouts, roughly one third of the way through. Revision Changes Path 1.32 +21 -0 doc/en/handbook/README 1.31 +1543 -1081doc/en/handbook/handbook.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 14:57:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA24553 for cvs-all-outgoing; Mon, 12 Oct 1998 14:57:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mail.scsn.net (scsn.net [206.25.246.12]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA24519; Mon, 12 Oct 1998 14:57:09 -0700 (PDT) (envelope-from dmaddox@scsn.net) Received: from rhiannon.scsn.net ([209.12.57.71]) by mail.scsn.net (Post.Office MTA v3.1.2 release (PO205-101c) ID# 0-41950U6000L1100S0) with ESMTP id AAA68; Mon, 12 Oct 1998 17:47:15 -0400 Received: (from dmaddox@localhost) by rhiannon.scsn.net (8.9.1/8.9.1) id RAA01290; Mon, 12 Oct 1998 17:56:43 -0400 (EDT) (envelope-from dmaddox) Message-ID: <19981012175642.F1157@scsn.net> Date: Mon, 12 Oct 1998 17:56:42 -0400 From: dmaddox@scsn.net (Donald J. Maddox) To: Mark Murray Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/lang/perl5 Makefile ports/lang/perl5/pkg PLIST Reply-To: dmaddox@scsn.net References: <199810120651.XAA26861@freefall.freebsd.org> <19981012042954.C1296@scsn.net> <199810120914.LAA00706@gratis.grondar.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199810120914.LAA00706@gratis.grondar.za>; from Mark Murray on Mon, Oct 12, 1998 at 11:14:21AM +0200 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Mon, Oct 12, 1998 at 11:14:21AM +0200, Mark Murray wrote: > > > Perl 5 is in the system. Mark this port broken for 3.0 for that reason. > > > > There may be good reasons to mark this broken, but it seems to me that this > > is not one of them. When TCL was in the system, we still had a choice... > > TCL is no shining example. God knows, I'm not holding the system TCL up as *any* kind of example... I just wanted to emphasize the importance of having a choice. > I have no intention of letting this happen with perl. If you wish > to repair the perl5 port, patch out the relevant lines and run it > on your system, this is 100% fine by me; if you want to have half > our userbase using ports perl5 "just because they can", I suggest > you consider the support nightmare before doing it. > > There is no functional difference (or there should not be any) > between ports perl5 and system perl5; ergo, there is no need for > both. Thank you. I notice that you are the maintainer of the port as well, so I guess there's not much chance of the port being better maintained than the system perl :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 14:57:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA24620 for cvs-all-outgoing; Mon, 12 Oct 1998 14:57:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA24614; Mon, 12 Oct 1998 14:57:40 -0700 (PDT) (envelope-from ben@scientia.demon.co.uk) Received: from ben by scientia.demon.co.uk with local (Exim 2.05 #3) id 0zSppO-0003IQ-00; Mon, 12 Oct 1998 22:48:30 +0100 Date: Mon, 12 Oct 1998 22:48:30 +0100 From: Ben Smithurst To: "Justin M. Seger" Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/mail/imap-uw Makefile Message-ID: <19981012224830.A12660@scientia.demon.co.uk> References: <199810121917.MAA28532@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <199810121917.MAA28532@freefall.freebsd.org> User-Agent: Mutt/0.94.11i (FreeBSD 3.0-BETA i386) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Justin M. Seger wrote: > Mark BROKEN for ELF: > cd mtest;make > `cat ../c-client/CCTYPE` -I../c-client `cat ../c-client/CFLAGS` -c mtest.c > `cat ../c-client/CCTYPE` -I../c-client `cat ../c-client/CFLAGS` -o mtest mtest.o -L../c-client -lc-client `cat ../c-client/LDFLAGS` > /usr/libexec/elf/ld: cannot open -lc-client: No such file or directory > *** Error code 1 This fixes that, I beleive... (seems a bit silly marking ports broken when it's so easy to fix :-) --- src/osdep/unix/Makefile.orig Mon Oct 12 22:40:54 1998 +++ src/osdep/unix/Makefile Mon Oct 12 22:40:32 1998 @@ -88,7 +88,7 @@ # Normally no need to change any of these +ARCHIVE=libc-client.a -ARCHIVE=c-client.a BINARIES=mail.o misc.o newsrc.o smanager.o osdep.o utf8.o siglocal.o \ dummy.o pseudo.o netmsg.o flstring.o fdstring.o \ rfc822.o nntp.o smtp.o imap4r1.o pop3.o \ -- Ben Smithurst ben@scientia.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 15:40:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA00606 for cvs-all-outgoing; Mon, 12 Oct 1998 15:40:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from server.amis.net (server.amis.net [195.10.52.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA00573; Mon, 12 Oct 1998 15:40:34 -0700 (PDT) (envelope-from blaz@gold.amis.net) Received: (from uucp@localhost) by server.amis.net (8.8.8/8.8.8) with UUCP id AAA09771; Tue, 13 Oct 1998 00:39:51 +0200 (CEST) Received: from localhost (blaz@localhost) by gold.amis.net (8.9.1/8.8.8) with SMTP id AAA03098; Tue, 13 Oct 1998 00:39:47 +0200 (CEST) Date: Tue, 13 Oct 1998 00:39:47 +0200 (CEST) From: Blaz Zupan To: Matthew Dillon cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c In-Reply-To: <199810121927.MAA16373@apollo.backplane.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Have there been any specific reports of problems with the use of > the command other then the vague micropolis report in the first > email (first email that I got, anyway) ? Yes, one of my disks completely hangs so a CAM-ified kernel can not boot. One disk is an old Quantum 540MB, the other is a 1.5GB NEC. I suspect the Quantum, I'll be finding out which one is the culprit tomorrow. Blaz Zupan, blaz@medinet.si, http://home.amis.net/blaz Medinet d.o.o., Linhartova 21, 2000 Maribor, Slovenia To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 15:49:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA02045 for cvs-all-outgoing; Mon, 12 Oct 1998 15:49:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from panzer.plutotech.com (panzer.plutotech.com [206.168.67.125]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA01998; Mon, 12 Oct 1998 15:48:28 -0700 (PDT) (envelope-from ken@panzer.plutotech.com) Received: (from ken@localhost) by panzer.plutotech.com (8.9.1/8.8.5) id QAA27886; Mon, 12 Oct 1998 16:47:49 -0600 (MDT) From: "Kenneth D. Merry" Message-Id: <199810122247.QAA27886@panzer.plutotech.com> Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c In-Reply-To: from Blaz Zupan at "Oct 13, 98 00:39:47 am" To: blaz@gold.amis.net (Blaz Zupan) Date: Mon, 12 Oct 1998 16:47:49 -0600 (MDT) Cc: dillon@apollo.backplane.com, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL28s (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Blaz Zupan wrote... > > Have there been any specific reports of problems with the use of > > the command other then the vague micropolis report in the first > > email (first email that I got, anyway) ? > > Yes, one of my disks completely hangs so a CAM-ified kernel can not boot. > One disk is an old Quantum 540MB, the other is a 1.5GB NEC. I suspect the > Quantum, I'll be finding out which one is the culprit tomorrow. Then you've probably got a different problem. The cache sync doesn't happen until final close, or system shutdown. Ken -- Kenneth Merry ken@plutotech.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 16:14:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA06874 for cvs-all-outgoing; Mon, 12 Oct 1998 16:14:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA06867; Mon, 12 Oct 1998 16:14:31 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA05661; Mon, 12 Oct 1998 16:14:29 -0700 (PDT) Date: Mon, 12 Oct 1998 16:14:29 -0700 (PDT) Message-Id: <199810122314.QAA05661@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/i386 userconfig.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/12 16:14:29 PDT Modified files: sys/i386/i386 userconfig.c Log: Add adw device. Noticed by: phk Revision Changes Path 1.112 +4 -3 src/sys/i386/i386/userconfig.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 16:39:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA12131 for cvs-all-outgoing; Mon, 12 Oct 1998 16:39:49 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA12120; Mon, 12 Oct 1998 16:39:43 -0700 (PDT) (envelope-from ben@scientia.demon.co.uk) Received: from ben by scientia.demon.co.uk with local (Exim 2.05 #3) id 0zSqLe-0005HN-00; Mon, 12 Oct 1998 23:21:50 +0100 Date: Mon, 12 Oct 1998 23:21:50 +0100 From: Ben Smithurst To: "Justin M. Seger" Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/mail/bulk_mailer Makefile ports/mail/bulk_mailer/patches patch-ac Message-ID: <19981012232150.A20278@scientia.demon.co.uk> References: <199810121833.LAA26749@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <199810121833.LAA26749@freefall.freebsd.org> User-Agent: Mutt/0.94.11i (FreeBSD 3.0-BETA i386) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Justin M. Seger wrote: > Mark BROKEN for ELF: > ===> Installing for bulk_mailer-1.11 > ===> Generating temporary packing list > -s: not found > *** Error code 1 Looks like it expects ${STRIP} == strip, or something. Since (from what I can see in other things) ${STRIP} isn't used for that, about the only way to fix it must be ... --- Makefile.orig Mon Oct 12 23:02:33 1998 +++ Makefile Mon Oct 12 23:11:53 1998 @@ -28,6 +28,6 @@ @ ${INSTALL_MAN} ${WRKSRC}/bulk_mailer.1 ${PREFIX}/man/man1/bulk_mailer.1 post-install: - @ ${STRIP} ${PREFIX}/bin/bulk_mailer + @strip ${PREFIX}/bin/bulk_mailer .include I'll probably get told this is a really bad idea, but never mind :-( -- Ben Smithurst ben@scientia.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 16:45:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA13164 for cvs-all-outgoing; Mon, 12 Oct 1998 16:45:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA13132; Mon, 12 Oct 1998 16:45:10 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA07113; Mon, 12 Oct 1998 16:45:08 -0700 (PDT) Date: Mon, 12 Oct 1998 16:45:08 -0700 (PDT) Message-Id: <199810122345.QAA07113@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall floppy.c install.c media.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/12 16:45:07 PDT Modified files: release/sysinstall floppy.c install.c media.c Log: Make floppy media code more generic so that fixit floppy can use it. Revision Changes Path 1.30 +6 -5 src/release/sysinstall/floppy.c 1.214 +9 -13 src/release/sysinstall/install.c 1.89 +3 -1 src/release/sysinstall/media.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 16:48:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA13509 for cvs-all-outgoing; Mon, 12 Oct 1998 16:48:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA13479; Mon, 12 Oct 1998 16:47:53 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA07189; Mon, 12 Oct 1998 16:47:52 -0700 (PDT) Date: Mon, 12 Oct 1998 16:47:52 -0700 (PDT) Message-Id: <199810122347.QAA07189@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall install.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/12 16:47:51 PDT Modified files: release/sysinstall install.c Log: Whoops; fix my X11R6 fixup. Now the package should be marked as installed correctly. Revision Changes Path 1.215 +2 -2 src/release/sysinstall/install.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 16:52:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA14065 for cvs-all-outgoing; Mon, 12 Oct 1998 16:52:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA13994; Mon, 12 Oct 1998 16:51:56 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id SAA07988; Mon, 12 Oct 1998 18:51:36 -0500 (CDT) Date: Mon, 12 Oct 1998 18:51:36 -0500 (CDT) From: Steve Price To: Ben Smithurst cc: "Justin M. Seger" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/mail/bulk_mailer Makefile ports/mail/bulk_mailer/patches patch-ac In-Reply-To: <19981012232150.A20278@scientia.demon.co.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk How about the attached patch instead since ${INSTALL_PROGRAM} strips the executable by default? :) Steve On Mon, 12 Oct 1998, Ben Smithurst wrote: # Justin M. Seger wrote: # # > Mark BROKEN for ELF: # > ===> Installing for bulk_mailer-1.11 # > ===> Generating temporary packing list # > -s: not found # > *** Error code 1 # # Looks like it expects ${STRIP} == strip, or something. Since (from what # I can see in other things) ${STRIP} isn't used for that, about the only # way to fix it must be ... [patch elided] # I'll probably get told this is a really bad idea, but never mind :-( # # -- # Ben Smithurst ben@scientia.demon.co.uk # Index: Makefile =================================================================== RCS file: /home/ncvs/ports/mail/bulk_mailer/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- Makefile 1998/10/12 18:33:55 1.5 +++ Makefile 1998/10/12 22:17:14 @@ -14,8 +14,6 @@ MAN1= bulk_mailer.1 -BROKEN_ELF= -s: not found - WRKSRC= ${WRKDIR}/bulk_mailer #EXTRACT_BEFORE_ARGS= -C ${WRKDIR} -xf @@ -28,8 +26,5 @@ @ ${INSTALL_DATA} ${WRKSRC}/bulk_mailer.README \ ${PREFIX}/share/doc/bulk_mailer.README @ ${INSTALL_MAN} ${WRKSRC}/bulk_mailer.1 ${PREFIX}/man/man1/bulk_mailer.1 - -post-install: - @ ${STRIP} ${PREFIX}/bin/bulk_mailer .include To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 16:54:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA14246 for cvs-all-outgoing; Mon, 12 Oct 1998 16:54:01 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA14240; Mon, 12 Oct 1998 16:53:59 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA07344; Mon, 12 Oct 1998 16:53:58 -0700 (PDT) Date: Mon, 12 Oct 1998 16:53:58 -0700 (PDT) Message-Id: <199810122353.QAA07344@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall sysinstall.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/12 16:53:58 PDT Modified files: release/sysinstall sysinstall.8 Log: Adjust docs to reflect reality. Revision Changes Path 1.11 +3 -3 src/release/sysinstall/sysinstall.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 16:58:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA14768 for cvs-all-outgoing; Mon, 12 Oct 1998 16:58:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA14726; Mon, 12 Oct 1998 16:58:01 -0700 (PDT) (envelope-from alex@FreeBSD.org) From: Alex Nash Received: (from alex@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA07478; Mon, 12 Oct 1998 16:57:59 -0700 (PDT) Date: Mon, 12 Oct 1998 16:57:59 -0700 (PDT) Message-Id: <199810122357.QAA07478@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/alpha/include ansi.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk alex 1998/10/12 16:57:59 PDT Modified files: sys/alpha/include ansi.h Log: Bring in _BSD_UINT8_T_, _BSD_UINT16_T_, and _BSD_UINT32_T from the i386 ansi.h. Revision Changes Path 1.3 +4 -1 src/sys/alpha/include/ansi.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 18:07:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA24314 for cvs-all-outgoing; Mon, 12 Oct 1998 18:07:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from dingo.cdrom.com (dingo.cdrom.com [204.216.28.145]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA24294; Mon, 12 Oct 1998 18:07:14 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost.cdrom.com [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id SAA01071; Mon, 12 Oct 1998 18:10:58 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Message-Id: <199810130110.SAA01071@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: "Kenneth D. Merry" cc: mike@smith.net.au (Mike Smith), mjacob@feral.com, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c In-reply-to: Your message of "Mon, 12 Oct 1998 14:01:26 MDT." <199810122001.OAA26409@panzer.plutotech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 12 Oct 1998 18:10:57 -0700 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > > Why? You'd just have a set of linked lists of quirk tables, initialised > > by a SYSINIT very early on. This would know how to look for sources of > > quirk data, including the compiled-in "standard" tables, and possible > > extra sources. > > > > The real plus here is decoupling the quirk data from the code itself; > > the two don't belong together. You should, ideally, be able to add a > > line to a configuration file describing the quirk and have things "just > > work" without having to rebuild the kernel. > > Well, the main problem would be how to get the quirk entries off the disk > without a disk driver? I guess the answer is by using the BIOS driver or > something like that, but I have no idea how that would work. They'd be loaded by the bootstrap; one of the features of the 3-stage bootstrap is that it can do this sort of thing. There's a simple lookup interface available within the kernel for locating stuff loaded by this. > > I realise this is not likely to be a high priority for you folks, and > > in reality it's probably not massively important, but it's one of many > > small steps towards organising the kernel. > > It would be more important if we were a commercial, binary-only operating > system. Since folks have the source and can easily add their own quirks > and recompile, it's less of a priority. :) Yes, although we are endeavouring to penetrate markets where rebuilding from source is less of an option (due more to the people than the situations involved nonetheless). -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 18:17:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA25975 for cvs-all-outgoing; Mon, 12 Oct 1998 18:17:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA25951; Mon, 12 Oct 1998 18:17:30 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA09951; Mon, 12 Oct 1998 18:17:28 -0700 (PDT) Date: Mon, 12 Oct 1998 18:17:28 -0700 (PDT) Message-Id: <199810130117.SAA09951@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/modula-3-lib Makefile ports/lang/modula-3 Makefile ports/print/virtualpaper Makefile ports/net/cvsup Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 18:17:28 PDT Modified files: lang/modula-3-lib Makefile lang/modula-3 Makefile print/virtualpaper Makefile net/cvsup Makefile Log: Unmark BROKEN. It was a previously fixed SMP problem. Pointed out by: jdp Revision Changes Path 1.13 +1 -3 ports/lang/modula-3-lib/Makefile 1.26 +1 -3 ports/lang/modula-3/Makefile 1.10 +1 -3 ports/print/virtualpaper/Makefile 1.29 +1 -3 ports/net/cvsup/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 18:25:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA27634 for cvs-all-outgoing; Mon, 12 Oct 1998 18:25:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA27614; Mon, 12 Oct 1998 18:25:34 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA10100; Mon, 12 Oct 1998 18:25:33 -0700 (PDT) Date: Mon, 12 Oct 1998 18:25:33 -0700 (PDT) Message-Id: <199810130125.SAA10100@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/editors/jed Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 18:25:32 PDT Modified files: editors/jed Makefile Log: Mark BROKEN for ELF: cd /usr/ports/editors/jed/work/jed/src/objs; cc vfile.o rgrep.o -o rgrep -L/usr/local/lib -lslang /usr/local/lib/libslang.so: undefined reference to `tgetnum' /usr/local/lib/libslang.so: undefined reference to `tgetflag' /usr/local/lib/libslang.so: undefined reference to `tgetent' /usr/local/lib/libslang.so: undefined reference to `tgetstr' *** Error code 1 Revision Changes Path 1.6 +3 -1 ports/editors/jed/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 18:33:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA28850 for cvs-all-outgoing; Mon, 12 Oct 1998 18:33:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA28842; Mon, 12 Oct 1998 18:33:01 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA10303; Mon, 12 Oct 1998 18:32:56 -0700 (PDT) Date: Mon, 12 Oct 1998 18:32:56 -0700 (PDT) Message-Id: <199810130132.SAA10303@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mail/bulk_mailer Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 18:32:56 PDT Modified files: mail/bulk_mailer Makefile Log: Unbreak for ELF. Submitted by: steve Revision Changes Path 1.6 +1 -7 ports/mail/bulk_mailer/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 18:47:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA00912 for cvs-all-outgoing; Mon, 12 Oct 1998 18:47:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freebsd.scds.com (jseger.shore.net [204.167.102.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA00883; Mon, 12 Oct 1998 18:47:08 -0700 (PDT) (envelope-from jseger@jseger.scds.com) Received: from jseger.scds.com (localhost.scds.com [127.0.0.1]) by freebsd.scds.com (8.9.1/8.8.8) with ESMTP id VAA28814; Mon, 12 Oct 1998 21:46:43 -0400 (EDT) (envelope-from jseger@jseger.scds.com) Message-Id: <199810130146.VAA28814@freebsd.scds.com> To: Ben Smithurst cc: "Justin M. Seger" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/mail/imap-uw Makefile In-reply-to: Your message of "Mon, 12 Oct 1998 22:48:30 BST." <19981012224830.A12660@scientia.demon.co.uk> Date: Mon, 12 Oct 1998 21:46:43 -0400 From: "Justin M. Seger" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > --- src/osdep/unix/Makefile.orig Mon Oct 12 22:40:54 1998 > +++ src/osdep/unix/Makefile Mon Oct 12 22:40:32 1998 > @@ -88,7 +88,7 @@ > > # Normally no need to change any of these > > +ARCHIVE=libc-client.a > -ARCHIVE=c-client.a > BINARIES=mail.o misc.o newsrc.o smanager.o osdep.o utf8.o siglocal.o \ > dummy.o pseudo.o netmsg.o flstring.o fdstring.o \ > rfc822.o nntp.o smtp.o imap4r1.o pop3.o \ > Thanks, but still BROKEN: ===> Building package for imap-uw-4.2 Creating package /usr/ports/packages/All/imap-uw-4.2.tgz Registering depends:. Creating gzip'd tar ball in '/usr/ports/packages/All/imap-uw-4.2.tgz' tar: can't add file lib/libc-client.so.2 : No such file or directory /usr/sbin/pkg_create: tar command failed with code 256 Yes I know that it's probably an easy fix, but I don't have time to look at it now. -Justin Seger- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 18:49:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA01376 for cvs-all-outgoing; Mon, 12 Oct 1998 18:49:48 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA01363; Mon, 12 Oct 1998 18:49:44 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA10848; Mon, 12 Oct 1998 18:49:43 -0700 (PDT) Date: Mon, 12 Oct 1998 18:49:43 -0700 (PDT) Message-Id: <199810130149.SAA10848@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/dviselect Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 18:49:42 PDT Modified files: print/dviselect Makefile Log: Unbreak for ELF. Submitted by: jmz Revision Changes Path 1.13 +2 -2 ports/print/dviselect/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 19:01:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA03378 for cvs-all-outgoing; Mon, 12 Oct 1998 19:01:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA03353; Mon, 12 Oct 1998 19:01:06 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id VAA31898; Mon, 12 Oct 1998 21:00:42 -0500 (CDT) Date: Mon, 12 Oct 1998 21:00:41 -0500 (CDT) From: Steve Price To: "Justin M. Seger" cc: Ben Smithurst , "Justin M. Seger" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/mail/imap-uw Makefile In-Reply-To: <199810130146.VAA28814@freebsd.scds.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk This patch works. :) Steve Index: Makefile =================================================================== RCS file: /home/ncvs/ports/mail/imap-uw/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- Makefile 1998/10/12 19:17:34 1.18 +++ Makefile 1998/10/13 00:24:32 @@ -15,8 +15,6 @@ MAINTAINER= imap-uw@freebsd.ady.ro -BROKEN_ELF= cannot open -lc-client - ALL_TARGET= bsf MAN8= ipopd.8 imapd.8 Index: patches/patch-ab =================================================================== RCS file: /home/ncvs/ports/mail/imap-uw/patches/patch-ab,v retrieving revision 1.13 diff -u -r1.13 patch-ab --- patch-ab 1998/07/31 06:47:02 1.13 +++ patch-ab 1998/10/13 00:24:14 @@ -1,6 +1,12 @@ ---- src/osdep/unix/Makefile.orig Thu Jul 16 22:12:22 1998 -+++ src/osdep/unix/Makefile Tue Jul 21 16:38:38 1998 -@@ -93,7 +93,7 @@ +--- src/osdep/unix/Makefile.orig Thu Jul 16 14:12:22 1998 ++++ src/osdep/unix/Makefile Mon Oct 12 19:21:56 1998 +@@ -88,12 +88,12 @@ + + # Normally no need to change any of these + +-ARCHIVE=c-client.a ++ARCHIVE=libc-client.a + BINARIES=mail.o misc.o newsrc.o smanager.o osdep.o utf8.o siglocal.o \ dummy.o pseudo.o netmsg.o flstring.o fdstring.o \ rfc822.o nntp.o smtp.o imap4r1.o pop3.o \ unix.o mbox.o mbx.o mmdf.o tenex.o mtx.o news.o phile.o mh.o mx.o @@ -9,19 +15,23 @@ MAKE=make MV=mv RM=rm -rf -@@ -108,6 +108,11 @@ +@@ -108,6 +108,15 @@ PASSWDTYPE=$(PASSWDTYPE) AFSDIR=$(AFSDIR) GSSDIR=$(GSSDIR) BUILD=$(MAKE) build $(BUILDOPTIONS) $(EXTRASPECIALS) +# Need this for the shared library rule to work correctly +.SUFFIXES: .o .so ++.if ${PORTOBJFORMAT} == "elf" ++SHLIB=libc-client.so.2 ++.else +SHLIB=libc-client.so.2.1 ++.endif +SOFILES=${BINARIES:.o=.so} + # Here if no make argument established missing: osdep.h -@@ -179,11 +184,11 @@ +@@ -179,11 +188,11 @@ BASECFLAGS="-g -Dconst= -DNFSKLUDGE" bsf: # FreeBSD @@ -35,12 +45,16 @@ BASELDFLAGS="-lcrypt" bsi: # BSD/i386 -@@ -565,10 +570,17 @@ +@@ -565,10 +574,21 @@ @cat ARCHIVE @$(SH) ARCHIVE +$(SHLIB): $(SOFILES) ++.if $(PORTOBJFORMAT) == "elf" + ld -Bshareable -x -o $(SHLIB) $(SOFILES) ++.else ++ ld -Bshareable -x -soname $(SHLIB) -o $(SHLIB) $(SOFILES) ++.endif + +.c.so: osdep.h + $(CC) -fpic -DPIC -c $(CFLAGS) ${@:.so=.c} -o $@ @@ -53,7 +67,7 @@ # Dependencies -@@ -602,7 +614,7 @@ +@@ -602,7 +622,7 @@ # OS-dependent @@ -62,7 +76,7 @@ osdep.h env_unix.h tcp_unix.h \ osdep.c env_unix.c fs_unix.c ftl_unix.c nl_unix.c tcp_unix.c \ auths.c flock.c flockbsd.c flcksafe.c fsync.c gethstid.c \ -@@ -614,7 +626,12 @@ +@@ -614,7 +634,12 @@ write.c \ strerror.c strpbrk.c strstr.c strtok.c strtoul.c \ OSCFLAGS Index: pkg/PLIST =================================================================== RCS file: /home/ncvs/ports/mail/imap-uw/pkg/PLIST,v retrieving revision 1.5 diff -u -r1.5 PLIST --- PLIST 1998/08/17 05:19:30 1.5 +++ PLIST 1998/10/13 00:25:21 @@ -1,6 +1,6 @@ lib/libc-client.so.2.1 -@exec /sbin/ldconfig -m %B -@unexec /sbin/ldconfig -m %B +@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B +@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B libexec/imapd libexec/ipop2d libexec/ipop3d To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 19:07:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA04502 for cvs-all-outgoing; Mon, 12 Oct 1998 19:07:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA04493; Mon, 12 Oct 1998 19:07:22 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA11440; Mon, 12 Oct 1998 19:07:20 -0700 (PDT) Date: Mon, 12 Oct 1998 19:07:20 -0700 (PDT) Message-Id: <199810130207.TAA11440@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/math/pari Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 19:07:20 PDT Modified files: math/pari Makefile Log: Mark BROKEN for ELF: gcc -O2 -ansi -DLONG_IS_32BIT -DULONG_NOT_DEFINED -o gp gp.o i386.o mp.o anal.o alglin1.o alglin2.o base1.o base2.o base3.o arith1.o arith2.o bibli1.o bibli2.o elliptic.o es.o gen1.o gen2.o gen3.o init.o errmessages.o helpmessages.o polari t1.o polarit2.o trans1.o trans2.o trans3.o buch1.o buch2.o version.o gp_rl.o plo t.o -lm -lcompat -L/usr/X11R6/lib -lX11 mp.o: In function `expi': mp.o(.text+0x1f8): undefined reference to `bfffo' mp.o: In function `affsr': mp.o(.text+0x376): undefined reference to `bfffo' mp.o: In function `affir': mp.o(.text+0x447): undefined reference to `bfffo' Revision Changes Path 1.2 +3 -1 ports/math/pari/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 19:07:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA04532 for cvs-all-outgoing; Mon, 12 Oct 1998 19:07:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id TAA04518 for ; Mon, 12 Oct 1998 19:07:24 -0700 (PDT) (envelope-from imp@village.org) Received: from harmony [10.0.0.6] by rover.village.org with esmtp (Exim 1.71 #1) id 0zStrc-00011u-00; Mon, 12 Oct 1998 20:07:04 -0600 Received: (from imp@localhost) by harmony.village.org (8.9.1/8.8.3) id UAA01090 for committers@freebsd.org; Mon, 12 Oct 1998 20:06:32 -0600 (MDT) Date: Mon, 12 Oct 1998 20:06:32 -0600 (MDT) From: Warner Losh Message-Id: <199810130206.UAA01090@harmony.village.org> To: committers@FreeBSD.ORG Subject: Freeze 3 days away... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Just a friendly reminder that the code freeze is in about three days. Traditionally this has been the grumpiest time for the project. Please keep that in mind as we move forward. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 19:20:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA07152 for cvs-all-outgoing; Mon, 12 Oct 1998 19:20:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA07124; Mon, 12 Oct 1998 19:20:21 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA11752; Mon, 12 Oct 1998 19:20:19 -0700 (PDT) Date: Mon, 12 Oct 1998 19:20:19 -0700 (PDT) Message-Id: <199810130220.TAA11752@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/linux_devel Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 19:20:19 PDT Modified files: devel/linux_devel Makefile Log: Unbreak for ELF Submitted by: asami Revision Changes Path 1.7 +2 -2 ports/devel/linux_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 Oct 12 19:32:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA08946 for cvs-all-outgoing; Mon, 12 Oct 1998 19:32:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA08935; Mon, 12 Oct 1998 19:32:45 -0700 (PDT) (envelope-from jdp@FreeBSD.org) From: John Polstra Received: (from jdp@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA12105; Mon, 12 Oct 1998 19:32:44 -0700 (PDT) Date: Mon, 12 Oct 1998 19:32:44 -0700 (PDT) Message-Id: <199810130232.TAA12105@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jdp 1998/10/12 19:32:44 PDT Modified files: release Makefile Log: Update comment. The release tree needs about 1000 MB of free space now. Revision Changes Path 1.414 +2 -2 src/release/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 19:33:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA09046 for cvs-all-outgoing; Mon, 12 Oct 1998 19:33:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA09039; Mon, 12 Oct 1998 19:33:25 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA12131; Mon, 12 Oct 1998 19:33:23 -0700 (PDT) Date: Mon, 12 Oct 1998 19:33:23 -0700 (PDT) Message-Id: <199810130233.TAA12131@freefall.freebsd.org> 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 1998/10/12 19:33:22 PDT Modified files: sys/pc98/pc98 clock.c Log: Implement TSC clock calibration for PC-98. Revision Changes Path 1.62 +75 -4 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 Oct 12 19:41:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA10284 for cvs-all-outgoing; Mon, 12 Oct 1998 19:41:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA10267; Mon, 12 Oct 1998 19:41:25 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA12382; Mon, 12 Oct 1998 19:41:21 -0700 (PDT) Date: Mon, 12 Oct 1998 19:41:21 -0700 (PDT) Message-Id: <199810130241.TAA12382@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/editors/xemacs Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 19:41:21 PDT Modified files: editors/xemacs Makefile Log: Mark BROKEN for ELF: strip /usr/local/bin/xemacs-19.16 BFD: /usr/local/bin/sta20980: warning: allocated section `.data' not in segment BFD: /usr/local/bin/sta20980: warning: allocated section `.bss' not in segment /usr/local/bin/xemacs -batch -eval '(byte-compile-file "/usr/local/lib/xemacs-19.16/lisp/x11/x-win-xfree86.el" nil)' Segmentation fault - core dumped Revision Changes Path 1.45 +3 -1 ports/editors/xemacs/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 19:44:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA10628 for cvs-all-outgoing; Mon, 12 Oct 1998 19:44:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA10620; Mon, 12 Oct 1998 19:44:53 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA12511; Mon, 12 Oct 1998 19:44:51 -0700 (PDT) Date: Mon, 12 Oct 1998 19:44:51 -0700 (PDT) Message-Id: <199810130244.TAA12511@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mail/mmr Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 19:44:51 PDT Modified files: mail/mmr Makefile Log: Unbreak. Submitted by: steve Revision Changes Path 1.4 +2 -2 ports/mail/mmr/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 19:47:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA10864 for cvs-all-outgoing; Mon, 12 Oct 1998 19:47:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA10848; Mon, 12 Oct 1998 19:46:59 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA12671; Mon, 12 Oct 1998 19:46:57 -0700 (PDT) Date: Mon, 12 Oct 1998 19:46:57 -0700 (PDT) Message-Id: <199810130246.TAA12671@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/acroread Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 19:46:57 PDT Modified files: print/acroread Makefile Log: Unbreak for ELF. Submitted by: steve Revision Changes Path 1.7 +2 -2 ports/print/acroread/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 19:48:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA11159 for cvs-all-outgoing; Mon, 12 Oct 1998 19:48:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA11154; Mon, 12 Oct 1998 19:48:51 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA12783; Mon, 12 Oct 1998 19:48:50 -0700 (PDT) Date: Mon, 12 Oct 1998 19:48:50 -0700 (PDT) Message-Id: <199810130248.TAA12783@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/asprint Makefile ports/print/asprint/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 19:48:49 PDT Modified files: print/asprint Makefile print/asprint/patches patch-aa Log: Unbreak for ELF. Submitted by: steve Revision Changes Path 1.4 +1 -3 ports/print/asprint/Makefile 1.2 +29 -37 ports/print/asprint/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 20:05:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA12901 for cvs-all-outgoing; Mon, 12 Oct 1998 20:05:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA12896; Mon, 12 Oct 1998 20:05:41 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA13271; Mon, 12 Oct 1998 20:05:40 -0700 (PDT) Date: Mon, 12 Oct 1998 20:05:40 -0700 (PDT) Message-Id: <199810130305.UAA13271@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mbone/vic Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 20:05:40 PDT Modified files: mbone/vic Makefile Log: Mark BROKEN for ELF: c++ -O2 -DUSE_SHM -DED_YBITS=4 -DSIGRET=void -I/usr/local/include -I/usr/local/include/tk8.0 -I/usr/local/include/tcl8.0 -I/usr/X11R6/include -I./jpeg -I./p64 -I. -o vic inet.o cellb_tables.o tkStripchart.o md5c.o random.o main.o net.o net-ip.o source.o iohandler.o timer.o idlecallback.o media-timer.o session.o session-rtpv1.o session-nv.o session-ivs.o decoder.o decoder-jpeg.o decoder-nv.o decoder-h261.o decoder-h261v1.o decoder-cellb.o device.o grabber.o vw.o Tcl.o Tcl2.o module.o transmitter.o encoder-nv.o encoder-cellb.o encoder-h261.o transcoder-jpeg.o framer-jpeg.o group-ipc.o confbus.o renderer.o renderer-window.o color.o color-true.o color-pseudo.o color-dither.o color-ed.o color-quant.o color-hi.o color-gray.o color-mono.o color-hist.o rgb-converter.o jpeg/jpeg.o p64/p64.o dct.o compositor.o rate-variable.o crypt.o crypt-dull.o grabber-still.o cm0.o cm1.o huffcode.o version.o bv.o ui-ctrlmenu.o ui-main.o ui-resource.o ui-srclist.o ui-stats.o ui-util.o ui-windows.o ui-switcher.o ui-extout.o ui-grabber.o ui-unix.o cf-main.o cf-tm.o cf-confbus.o cf-network.o cf-util.o tkerror.o entry.o tk.o strtol.o strtoul.o grabber-x11.cc grabber-meteor.o grabber-spigot.o -lspigot -L/usr/local/lib -ltk80 -L/usr/local/lib -ltcl80 -L/usr/X11R6/lib -lXext -lX11 -lm grabber-x11.cc: In method `int X11Grabber::X11Grab_Initialize(long unsigned int, int, int)': grabber-x11.cc:627: warning: implicit declaration of function `int VidUtil_DestroyXImage(...)' Revision Changes Path 1.19 +3 -1 ports/mbone/vic/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 20:16:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA14229 for cvs-all-outgoing; Mon, 12 Oct 1998 20:16:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA14220; Mon, 12 Oct 1998 20:16:35 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA13575; Mon, 12 Oct 1998 20:16:33 -0700 (PDT) Date: Mon, 12 Oct 1998 20:16:33 -0700 (PDT) Message-Id: <199810130316.UAA13575@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/graphics/mpegedit Makefile ports/graphics/mpegedit/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 20:16:33 PDT Modified files: graphics/mpegedit Makefile graphics/mpegedit/patches patch-aa Log: Unbreak for ELF. Submitted by: steve Revision Changes Path 1.8 +2 -3 ports/graphics/mpegedit/Makefile 1.3 +42 -19 ports/graphics/mpegedit/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 20:17:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA14332 for cvs-all-outgoing; Mon, 12 Oct 1998 20:17:49 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA14322; Mon, 12 Oct 1998 20:17:46 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA13639; Mon, 12 Oct 1998 20:17:45 -0700 (PDT) Date: Mon, 12 Oct 1998 20:17:45 -0700 (PDT) Message-Id: <199810130317.UAA13639@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/graphics/mpeg_encode Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 20:17:45 PDT Modified files: graphics/mpeg_encode Makefile Log: Unbreak for ELF. Submitted by: steve Revision Changes Path 1.7 +2 -2 ports/graphics/mpeg_encode/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 20:24:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA15474 for cvs-all-outgoing; Mon, 12 Oct 1998 20:24:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA15421; Mon, 12 Oct 1998 20:24:04 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA13754; Mon, 12 Oct 1998 20:24:02 -0700 (PDT) Date: Mon, 12 Oct 1998 20:24:02 -0700 (PDT) Message-Id: <199810130324.UAA13754@freefall.freebsd.org> 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 1998/10/12 20:24:01 PDT Modified files: sys/pc98/pc98 clock.c Log: Fix for wrap arround. Revision Changes Path 1.63 +2 -2 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 Oct 12 20:30:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA16265 for cvs-all-outgoing; Mon, 12 Oct 1998 20:30:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA16260; Mon, 12 Oct 1998 20:30:32 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA13978; Mon, 12 Oct 1998 20:30:30 -0700 (PDT) Date: Mon, 12 Oct 1998 20:30:30 -0700 (PDT) Message-Id: <199810130330.UAA13978@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/audio/workman Makefile ports/audio/workman/patches patch-ac patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 20:30:30 PDT Modified files: audio/workman Makefile audio/workman/patches patch-aa Added files: audio/workman/patches patch-ac Log: Unbreak for ELF. Partially submitted by: ken@plutotech.com Revision Changes Path 1.9 +1 -6 ports/audio/workman/Makefile 1.3 +0 -104 ports/audio/workman/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 20:32:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA16378 for cvs-all-outgoing; Mon, 12 Oct 1998 20:32:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA16369; Mon, 12 Oct 1998 20:32:02 -0700 (PDT) (envelope-from jdp@FreeBSD.org) From: John Polstra Received: (from jdp@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA14041; Mon, 12 Oct 1998 20:31:59 -0700 (PDT) Date: Mon, 12 Oct 1998 20:31:59 -0700 (PDT) Message-Id: <199810130331.UAA14041@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/libexec/rtld-elf rtld.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jdp 1998/10/12 20:31:59 PDT Modified files: libexec/rtld-elf rtld.c Log: Fix a bug in dlclose that broke the apache13 port. The list of loaded objects wasn't being maintained properly. Revision Changes Path 1.12 +2 -1 src/libexec/rtld-elf/rtld.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 20:37:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA16965 for cvs-all-outgoing; Mon, 12 Oct 1998 20:37:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA16958; Mon, 12 Oct 1998 20:37:50 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA14208; Mon, 12 Oct 1998 20:37:48 -0700 (PDT) Date: Mon, 12 Oct 1998 20:37:48 -0700 (PDT) Message-Id: <199810130337.UAA14208@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/emulators/cpmemu Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 20:37:48 PDT Modified files: emulators/cpmemu Makefile Log: Mark BROKEN for ELF: gcc -s -o cpm single.o z80emu.o em.o io.o bios.o commands.o running.o main.o disneu.o disz80.o low.o single.o(.text+0x9): undefined reference to `_z80regs' single.o(.text+0xe): undefined reference to `_z80mem' single.o(.text+0x15): undefined reference to `_z80regs' single.o(.text+0x1c): undefined reference to `_z80regs' single.o(.text+0x23): undefined reference to `_z80regs' single.o(.text+0x2a): undefined reference to `_z80regs' single.o(.text+0x3f): undefined reference to `_z80regs' single.o(.text+0x46): more undefined references to `_z80regs' follow single.o(.text+0x18f2): undefined reference to `_hardware_access' single.o(.text+0x1948): undefined reference to `_z80regs' single.o(.text+0x195a): undefined reference to `_z80regs' Revision Changes Path 1.11 +3 -1 ports/emulators/cpmemu/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 20:38:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA17133 for cvs-all-outgoing; Mon, 12 Oct 1998 20:38:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA17128; Mon, 12 Oct 1998 20:38:53 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA14272; Mon, 12 Oct 1998 20:38:51 -0700 (PDT) Date: Mon, 12 Oct 1998 20:38:51 -0700 (PDT) Message-Id: <199810130338.UAA14272@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/audio/kdemultimedia Makefile ports/audio/kdemultimedia/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 20:38:51 PDT Modified files: audio/kdemultimedia Makefile Added files: audio/kdemultimedia/patches patch-aa Log: Unbreak for current. Submitted by: ken@plutotech.com Revision Changes Path 1.21 +1 -6 ports/audio/kdemultimedia/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 20:40:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA17390 for cvs-all-outgoing; Mon, 12 Oct 1998 20:40:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA17376; Mon, 12 Oct 1998 20:40:15 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA14362; Mon, 12 Oct 1998 20:40:13 -0700 (PDT) Date: Mon, 12 Oct 1998 20:40:13 -0700 (PDT) Message-Id: <199810130340.UAA14362@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/sysutils Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 20:40:13 PDT Modified files: sysutils Makefile Log: mkhybrid11->mkhybrid Submitted by: steve Revision Changes Path 1.45 +2 -2 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 Oct 12 20:43:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA17903 for cvs-all-outgoing; Mon, 12 Oct 1998 20:43:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA17894; Mon, 12 Oct 1998 20:43:39 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA14486; Mon, 12 Oct 1998 20:43:37 -0700 (PDT) Date: Mon, 12 Oct 1998 20:43:37 -0700 (PDT) Message-Id: <199810130343.UAA14486@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/emulators/ines Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 20:43:37 PDT Modified files: emulators/ines Makefile Log: Mark BROKEN for ELF: ===> ines-0.7 depends on shared library: X11.6 - found install -c -s -o root -g wheel -m 555 /usr/ports/emulators/ines/work/NES/ines /usr/X11R6/bin /usr/libexec/elf/strip: /usr/X11R6/bin/ines: File format not recognized *** Error code 70 Revision Changes Path 1.8 +3 -1 ports/emulators/ines/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 20:55:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA19087 for cvs-all-outgoing; Mon, 12 Oct 1998 20:55:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA19078; Mon, 12 Oct 1998 20:55:21 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA15074; Mon, 12 Oct 1998 20:55:19 -0700 (PDT) Date: Mon, 12 Oct 1998 20:55:19 -0700 (PDT) Message-Id: <199810130355.UAA15074@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/emulators/wine Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 20:55:19 PDT Modified files: emulators/wine Makefile Log: Mark BROKEN for ELF: ===> wine-98.09.27 depends on shared library: Xpm.4 - found /bin/mkdir -p /usr/ports/emulators/wine/work/wine-980927/include/asm /bin/cp /usr/ports/emulators/wine/files/bitops.h /usr/ports/emulators/wine/work/wine-980927/include/asm/bitops.h /bin/cp: /usr/ports/emulators/wine/files/bitops.h: No such file or directory *** Error code 1 Revision Changes Path 1.63 +3 -1 ports/emulators/wine/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 20:55:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA19088 for cvs-all-outgoing; Mon, 12 Oct 1998 20:55:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA19076 for ; Mon, 12 Oct 1998 20:55:21 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id UAA16497; Mon, 12 Oct 1998 20:55:14 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Warner Losh cc: committers@FreeBSD.ORG Subject: Re: Freeze 3 days away... In-reply-to: Your message of "Mon, 12 Oct 1998 20:06:32 MDT." <199810130206.UAA01090@harmony.village.org> Date: Mon, 12 Oct 1998 20:55:13 -0700 Message-ID: <16494.908250913@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Just a friendly reminder that the code freeze is in about three days. > Traditionally this has been the grumpiest time for the project. Please > keep that in mind as we move forward. And just what in the hell do you mean by THAT? Oh, sorry... I must be a bit edgy. I'll go knock back another bottle of cough syrup or something. :-) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 20:59:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA19541 for cvs-all-outgoing; Mon, 12 Oct 1998 20:59:16 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA19536; Mon, 12 Oct 1998 20:59:15 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA15206; Mon, 12 Oct 1998 20:59:13 -0700 (PDT) Date: Mon, 12 Oct 1998 20:59:13 -0700 (PDT) Message-Id: <199810130359.UAA15206@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/sysutils/no-login Makefile ports/sysutils/no-login/files Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 20:59:13 PDT Modified files: sysutils/no-login Makefile Added files: sysutils/no-login/files Makefile Log: Unbreak. Submitted by steve Revision Changes Path 1.3 +2 -3 ports/sysutils/no-login/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 21:00:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA19767 for cvs-all-outgoing; Mon, 12 Oct 1998 21:00:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id VAA19755 for ; Mon, 12 Oct 1998 21:00:42 -0700 (PDT) (envelope-from imp@village.org) Received: from harmony [10.0.0.6] by rover.village.org with esmtp (Exim 1.71 #1) id 0zSvd8-00014z-00; Mon, 12 Oct 1998 22:00:14 -0600 Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.1/8.8.3) with ESMTP id VAA01632; Mon, 12 Oct 1998 21:59:43 -0600 (MDT) Message-Id: <199810130359.VAA01632@harmony.village.org> To: "Jordan K. Hubbard" Subject: Re: Freeze 3 days away... Cc: committers@FreeBSD.ORG In-reply-to: Your message of "Mon, 12 Oct 1998 20:55:13 PDT." <16494.908250913@time.cdrom.com> References: <16494.908250913@time.cdrom.com> Date: Mon, 12 Oct 1998 21:59:43 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In message <16494.908250913@time.cdrom.com> "Jordan K. Hubbard" writes: : Oh, sorry... I must be a bit edgy. I'll go knock back another bottle : of cough syrup or something. :-) Just trying to be proactive for a change... Looks like I've driven you to drink instead... Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 21:01:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA19885 for cvs-all-outgoing; Mon, 12 Oct 1998 21:01:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA19878; Mon, 12 Oct 1998 21:01:23 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA15321; Mon, 12 Oct 1998 21:01:21 -0700 (PDT) Date: Mon, 12 Oct 1998 21:01:21 -0700 (PDT) Message-Id: <199810130401.VAA15321@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/emulators/ines Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 21:01:21 PDT Modified files: emulators/ines Makefile Log: Unbreak. Submitted by: steve Revision Changes Path 1.9 +5 -3 ports/emulators/ines/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 21:07:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA20549 for cvs-all-outgoing; Mon, 12 Oct 1998 21:07:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA20543; Mon, 12 Oct 1998 21:07:20 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA15508; Mon, 12 Oct 1998 21:07:19 -0700 (PDT) Date: Mon, 12 Oct 1998 21:07:19 -0700 (PDT) Message-Id: <199810130407.VAA15508@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/xdvik Makefile ports/print/xdvik/patches patch-ab Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 21:07:19 PDT Modified files: print/xdvik Makefile Added files: print/xdvik/patches patch-ab Log: Unbreak. Submitted by: str Revision Changes Path 1.3 +1 -3 ports/print/xdvik/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 21:11:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA21262 for cvs-all-outgoing; Mon, 12 Oct 1998 21:11:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freebsd.scds.com (jseger.shore.net [204.167.102.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA21256; Mon, 12 Oct 1998 21:11:49 -0700 (PDT) (envelope-from jseger@jseger.scds.com) Received: from jseger.scds.com (localhost.scds.com [127.0.0.1]) by freebsd.scds.com (8.9.1/8.8.8) with ESMTP id AAA29595; Tue, 13 Oct 1998 00:11:40 -0400 (EDT) (envelope-from jseger@jseger.scds.com) Message-Id: <199810130411.AAA29595@freebsd.scds.com> To: "Justin M. Seger" cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/print/xdvik Makefile ports/print/xdvik/patches patch-ab In-reply-to: Your message of "Mon, 12 Oct 1998 21:07:19 PDT." <199810130407.VAA15508@freefall.freebsd.org> Date: Tue, 13 Oct 1998 00:11:40 -0400 From: "Justin M. Seger" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > jseger 1998/10/12 21:07:19 PDT > > Modified files: > print/xdvik Makefile > Added files: > print/xdvik/patches patch-ab > Log: > Unbreak. > > Submitted by: str ^^^ Steve that is ;) TTYL, -Justin Seger- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 21:12:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA21309 for cvs-all-outgoing; Mon, 12 Oct 1998 21:12:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA21266; Mon, 12 Oct 1998 21:11:57 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA15684; Mon, 12 Oct 1998 21:11:56 -0700 (PDT) Date: Mon, 12 Oct 1998 21:11:56 -0700 (PDT) Message-Id: <199810130411.VAA15684@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mail/pine3 Makefile ports/mail/pine3/files Makefile ports/mail/pine3/patches patch-aa ports/mail/pine3/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 21:11:56 PDT Modified files: mail/pine3 Makefile mail/pine3/files Makefile mail/pine3/patches patch-aa mail/pine3/pkg PLIST Log: Unbreak for ELF. Submitted by: steve Revision Changes Path 1.25 +1 -3 ports/mail/pine3/Makefile 1.12 +8 -1 ports/mail/pine3/files/Makefile 1.16 +108 -100 ports/mail/pine3/patches/patch-aa 1.11 +3 -2 ports/mail/pine3/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 Oct 12 21:16:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA22333 for cvs-all-outgoing; Mon, 12 Oct 1998 21:16:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA22324; Mon, 12 Oct 1998 21:16:24 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA15814; Mon, 12 Oct 1998 21:16:22 -0700 (PDT) Date: Mon, 12 Oct 1998 21:16:22 -0700 (PDT) Message-Id: <199810130416.VAA15814@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mail/exim Makefile ports/mail/exim/patches patch-ad ports/mail/exim/pkg INSTALL Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 21:16:22 PDT Modified files: mail/exim Makefile mail/exim/patches patch-ad mail/exim/pkg INSTALL Log: Unbreak for ELF. Submitted by: steve Revision Changes Path 1.18 +1 -3 ports/mail/exim/Makefile 1.2 +8 -3 ports/mail/exim/patches/patch-ad 1.2 +2 -2 ports/mail/exim/pkg/INSTALL To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 21:18:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA22693 for cvs-all-outgoing; Mon, 12 Oct 1998 21:18:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA22652; Mon, 12 Oct 1998 21:18:30 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id XAA28244; Mon, 12 Oct 1998 23:18:16 -0500 (CDT) Date: Mon, 12 Oct 1998 23:18:16 -0500 (CDT) From: Steve Price To: "Justin M. Seger" cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/print/xdvik Makefile ports/print/xdvik/patches patch-ab In-Reply-To: <199810130407.VAA15508@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 Mon, 12 Oct 1998, Justin M. Seger wrote: # jseger 1998/10/12 21:07:19 PDT # # Modified files: # print/xdvik Makefile # Added files: # print/xdvik/patches patch-ab # Log: # Unbreak. # # Submitted by: str You really are getting tired. One more patch and we can rest for the night. :) Steve # Revision Changes Path # 1.3 +1 -3 ports/print/xdvik/Makefile # To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 21:18:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA22758 for cvs-all-outgoing; Mon, 12 Oct 1998 21:18:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA22736; Mon, 12 Oct 1998 21:18:52 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA15934; Mon, 12 Oct 1998 21:18:50 -0700 (PDT) Date: Mon, 12 Oct 1998 21:18:50 -0700 (PDT) Message-Id: <199810130418.VAA15934@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mail/coolmail Makefile ports/mail/coolmail/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 21:18:50 PDT Modified files: mail/coolmail Makefile mail/coolmail/patches patch-aa Log: Unbreak for ELF. Submitted by: steve Revision Changes Path 1.3 +1 -3 ports/mail/coolmail/Makefile 1.2 +52 -74 ports/mail/coolmail/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 21:21:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA23086 for cvs-all-outgoing; Mon, 12 Oct 1998 21:21:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA23071; Mon, 12 Oct 1998 21:21:02 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA16108; Mon, 12 Oct 1998 21:21:00 -0700 (PDT) Date: Mon, 12 Oct 1998 21:21:00 -0700 (PDT) Message-Id: <199810130421.VAA16108@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/misc/rpm Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 21:21:00 PDT Modified files: misc/rpm Makefile Log: Mark BORKEN for ELF: xgettext --default-domain=rpm \ --add-comments --keyword=_ --keyword=N_ /usr/ports/misc/rpm/work/rpm-2.5.1/rpm.c /usr/ports/misc/rpm/work/rpm-2.5.1/query.c /usr/ports/misc/rpm/work/rpm-2.5.1/install.c /usr/ports/misc/rpm/work/rpm-2.5.1/verify.c /usr/ports/misc/rpm/work/rpm-2.5.1/checksig.c /usr/ports/misc/rpm/work/rpm-2.5.1/url.c /usr/ports/misc/rpm/work/rpm-2.5.1/ftp.c /usr/ports/misc/rpm/work/rpm-2.5.1/lib/uninstall.c /usr/ports/misc/rpm/work/rpm-2.5.1/lib/rpmdb.c /usr/ports/misc/rpm/work/rpm-2.5.1/lib/signature.c /usr/ports/misc/rpm/work/rpm-2.5.1/lib/dbindex.c /usr/ports/misc/rpm/work/rpm-2.5.1/lib/depends.c /usr/ports/misc/rpm/work/rpm-2.5.1/lib/formats.c /usr/ports/misc/rpm/work/rpm-2.5.1/lib/fs.c /usr/ports/misc/rpm/work/rpm-2.5.1/lib/header.c /usr/ports/misc/rpm/work/rpm-2.5.1/lib/lookup.c /usr/ports/misc/rpm/work/rpm-2.5.1/lib/rebuilddb.c /usr/ports/misc/rpm/work/rpm-2.5.1/lib/messages.c /usr/ports/misc/rpm/work/rpm-2.5.1/lib/package.c /usr/ports/misc/rpm/work/rpm-2.5.1/lib/rpmlead.c /usr/ports/misc/rpm/work/rpm-2.5.1/lib/rpmrc.c Unrecognized option: - usage: xgettext [-adnuv] [-c] [-m] [-o] ... [-p] [-x] - | file xgettext -h (HELP) Revision Changes Path 1.15 +4 -1 ports/misc/rpm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 21:21:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA23252 for cvs-all-outgoing; Mon, 12 Oct 1998 21:21:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA23230; Mon, 12 Oct 1998 21:21:32 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA16159; Mon, 12 Oct 1998 21:21:30 -0700 (PDT) Date: Mon, 12 Oct 1998 21:21:30 -0700 (PDT) Message-Id: <199810130421.VAA16159@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/ghostscript Makefile ports/print/ghostscript/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 21:21:30 PDT Modified files: print/ghostscript Makefile print/ghostscript/patches patch-aa Log: Unbreak Submitted by: steve Revision Changes Path 1.22 +1 -3 ports/print/ghostscript/Makefile 1.5 +69 -113 ports/print/ghostscript/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 21:28:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA23965 for cvs-all-outgoing; Mon, 12 Oct 1998 21:28:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from fallout.campusview.indiana.edu (fallout.campusview.indiana.edu [149.159.1.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA23943; Mon, 12 Oct 1998 21:28:08 -0700 (PDT) (envelope-from jfieber@fallout.campusview.indiana.edu) Received: from localhost (jfieber@localhost) by fallout.campusview.indiana.edu (8.9.1/8.9.1) with ESMTP id XAA18336; Mon, 12 Oct 1998 23:27:55 -0500 (EST) Date: Mon, 12 Oct 1998 23:27:54 -0500 (EST) From: John Fieber To: "Justin M. Seger" cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/emulators/wine Makefile In-Reply-To: <199810130355.UAA15074@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 Mon, 12 Oct 1998, Justin M. Seger wrote: > Modified files: > emulators/wine Makefile > Log: > Mark BROKEN for ELF: > > ===> wine-98.09.27 depends on shared library: Xpm.4 - found > /bin/mkdir -p /usr/ports/emulators/wine/work/wine-980927/include/asm > /bin/cp /usr/ports/emulators/wine/files/bitops.h /usr/ports/emulators/wine/work/wine-980927/include/asm/bitops.h > /bin/cp: /usr/ports/emulators/wine/files/bitops.h: No such file or directory > *** Error code 1 This one is just plain BROKEN, not BROKEN for ELF. I believe permission to fix it was requested by the maintainer (or a proxy) a couple days ago... (It appears to be a simple omission of a file that should have been comitted.) -john To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 21:33:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA24617 for cvs-all-outgoing; Mon, 12 Oct 1998 21:33:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA24611; Mon, 12 Oct 1998 21:33:08 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA16490; Mon, 12 Oct 1998 21:33:07 -0700 (PDT) Date: Mon, 12 Oct 1998 21:33:07 -0700 (PDT) Message-Id: <199810130433.VAA16490@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mbone/vic Makefile ports/mbone/vic/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 21:33:06 PDT Modified files: mbone/vic Makefile mbone/vic/patches patch-aa Log: Unbreak. Submitted by: steve Revision Changes Path 1.20 +1 -3 ports/mbone/vic/Makefile 1.11 +15 -6 ports/mbone/vic/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 21:34:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA24811 for cvs-all-outgoing; Mon, 12 Oct 1998 21:34:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA24804; Mon, 12 Oct 1998 21:34:20 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-197.ix.netcom.com [209.109.234.197]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id VAA01562; Mon, 12 Oct 1998 21:34:06 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id VAA22732; Mon, 12 Oct 1998 21:34:03 -0700 (PDT) Date: Mon, 12 Oct 1998 21:34:03 -0700 (PDT) Message-Id: <199810130434.VAA22732@silvia.hip.berkeley.edu> To: ben@scientia.demon.co.uk CC: jseger@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <19981012224830.A12660@scientia.demon.co.uk> (message from Ben Smithurst on Mon, 12 Oct 1998 22:48:30 +0100) Subject: Re: cvs commit: ports/mail/imap-uw Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * This fixes that, I beleive... (seems a bit silly marking ports broken * when it's so easy to fix :-) Thanks for the "fix", but really, the comment in the parenthesis was uncalled for. Justin is trying to build 1,500+ packages in a short period of time, and he simply doesn't have time to go look at each and every breakage. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 21:39:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA25344 for cvs-all-outgoing; Mon, 12 Oct 1998 21:39:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA25339; Mon, 12 Oct 1998 21:39:20 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA16589; Mon, 12 Oct 1998 21:39:19 -0700 (PDT) Date: Mon, 12 Oct 1998 21:39:19 -0700 (PDT) Message-Id: <199810130439.VAA16589@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/emulators/wine Makefile ports/emulators/wine/files bitops.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/12 21:39:18 PDT Modified files: emulators/wine Makefile Added files: emulators/wine/files bitops.h Log: Add missing bitopts.h Change BROKEN_ELF->BROKEN as this is still BROKEN after the file addition. In file included from ./treeview.c:44: ../../include/asm/bitops.h:8: redefinition of `set_bit' ../../include/asm/bitops.h:8: `set_bit' previously defined here ../../include/asm/bitops.h:18: redefinition of `clear_bit' ../../include/asm/bitops.h:18: `clear_bit' previously defined here ../../include/asm/bitops.h:28: redefinition of `change_bit' ../../include/asm/bitops.h:28: `change_bit' previously defined here ../../include/asm/bitops.h:38: redefinition of `test_bit' ../../include/asm/bitops.h:38: `test_bit' previously defined here ./treeview.c: In function `TREEVIEW_DrawItem': ./treeview.c:341: warning: unused variable `hRootPen' ./treeview.c:339: warning: `oldBkColor' might be used uninitialized in this function *** Error code 1 Revision Changes Path 1.64 +2 -2 ports/emulators/wine/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 21:40:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA25600 for cvs-all-outgoing; Mon, 12 Oct 1998 21:40:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA25574 for ; Mon, 12 Oct 1998 21:40:25 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-197.ix.netcom.com [209.109.234.197]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id VAA01574; Mon, 12 Oct 1998 21:37:54 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id VAA22757; Mon, 12 Oct 1998 21:37:48 -0700 (PDT) Date: Mon, 12 Oct 1998 21:37:48 -0700 (PDT) Message-Id: <199810130437.VAA22757@silvia.hip.berkeley.edu> To: dillon@apollo.backplane.com CC: peter@netplex.com.au, dwhite@resnet.uoregon.edu, cvs-committers@FreeBSD.ORG In-reply-to: <199810121929.MAA16403@apollo.backplane.com> (message from Matthew Dillon on Mon, 12 Oct 1998 12:29:22 -0700 (PDT)) Subject: Re: Perl5 configure problem From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * The S/N ratio is aweful because everyone and their grandmother insist on * responding a question to death. Includding me, sometimes. The S/N ratio is awful because so many people open their mouth without checking the facts. :< Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 21:40:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA25624 for cvs-all-outgoing; Mon, 12 Oct 1998 21:40:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA25588; Mon, 12 Oct 1998 21:40:29 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id VAA16857; Mon, 12 Oct 1998 21:40:27 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: asami@FreeBSD.ORG (Satoshi Asami) cc: ben@scientia.demon.co.uk, jseger@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/mail/imap-uw Makefile In-reply-to: Your message of "Mon, 12 Oct 1998 21:34:03 PDT." <199810130434.VAA22732@silvia.hip.berkeley.edu> Date: Mon, 12 Oct 1998 21:40:27 -0700 Message-ID: <16853.908253627@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk I hope they're at least being marked in such a way that it will be easily possible to go back after release day and look up all the ports which were marked "ELF BROKEN" during Justin's rampage? :) - Jordan > * This fixes that, I beleive... (seems a bit silly marking ports broken > * when it's so easy to fix :-) > > Thanks for the "fix", but really, the comment in the parenthesis was > uncalled for. Justin is trying to build 1,500+ packages in a short > period of time, and he simply doesn't have time to go look at each and > every breakage. > > Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 21:44:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA26238 for cvs-all-outgoing; Mon, 12 Oct 1998 21:44:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA26216; Mon, 12 Oct 1998 21:44:29 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-197.ix.netcom.com [209.109.234.197]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id VAA01585; Mon, 12 Oct 1998 21:44:12 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id VAA22784; Mon, 12 Oct 1998 21:44:09 -0700 (PDT) Date: Mon, 12 Oct 1998 21:44:09 -0700 (PDT) Message-Id: <199810130444.VAA22784@silvia.hip.berkeley.edu> To: jkh@time.cdrom.com CC: ben@scientia.demon.co.uk, jseger@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <16853.908253627@time.cdrom.com> (jkh@time.cdrom.com) Subject: Re: cvs commit: ports/mail/imap-uw Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * I hope they're at least being marked in such a way that it will be * easily possible to go back after release day and look up all the * ports which were marked "ELF BROKEN" during Justin's rampage? :) Very clear, sir! :) >> grep BROKEN_ELF /usr/ports/*/*/Makefile Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 21:44:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA26322 for cvs-all-outgoing; Mon, 12 Oct 1998 21:44:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freebsd.scds.com (jseger.shore.net [204.167.102.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA26303; Mon, 12 Oct 1998 21:44:41 -0700 (PDT) (envelope-from jseger@jseger.scds.com) Received: from jseger.scds.com (localhost.scds.com [127.0.0.1]) by freebsd.scds.com (8.9.1/8.8.8) with ESMTP id AAA29873; Tue, 13 Oct 1998 00:44:27 -0400 (EDT) (envelope-from jseger@jseger.scds.com) Message-Id: <199810130444.AAA29873@freebsd.scds.com> To: "Jordan K. Hubbard" cc: asami@FreeBSD.ORG (Satoshi Asami), ben@scientia.demon.co.uk, jseger@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/mail/imap-uw Makefile In-reply-to: Your message of "Mon, 12 Oct 1998 21:40:27 PDT." <16853.908253627@time.cdrom.com> Date: Tue, 13 Oct 1998 00:44:27 -0400 From: "Justin M. Seger" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > I hope they're at least being marked in such a way that it will be > easily possible to go back after release day and look up all the > ports which were marked "ELF BROKEN" during Justin's rampage? :) cd /usr/ports grep BROKEN_ELF */*/Makefile TTYL, -Justin Seger- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 21:48:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA26982 for cvs-all-outgoing; Mon, 12 Oct 1998 21:48:48 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA26970; Mon, 12 Oct 1998 21:48:46 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA16911; Mon, 12 Oct 1998 21:48:45 -0700 (PDT) Date: Mon, 12 Oct 1998 21:48:45 -0700 (PDT) Message-Id: <199810130448.VAA16911@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/copyright freebsd-license.sgml Makefile copyright.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/12 21:48:45 PDT Modified files: en/copyright Makefile copyright.sgml Added files: en/copyright freebsd-license.sgml Log: Add explicit reference to FreeBSD copyright vs the standard BSD copyright, which we no longer follow clauses 3 and 4 of. Revision Changes Path 1.5 +2 -1 www/en/copyright/Makefile 1.2 +5 -4 www/en/copyright/copyright.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 22:07:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA29638 for cvs-all-outgoing; Mon, 12 Oct 1998 22:07:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: (from jkoshy@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA29616; Mon, 12 Oct 1998 22:07:33 -0700 (PDT) (envelope-from jkoshy) Date: Mon, 12 Oct 1998 22:07:33 -0700 (PDT) From: Joseph Koshy Message-Id: <199810130507.WAA29616@hub.freebsd.org> X-Mailer: exmh version 2.0.2 2/24/98 To: jkh@FreeBSD.ORG cc: committers@FreeBSD.ORG Subject: Unfreeze timelines? Mime-Version: 1.0 Content-Type: text/plain Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Folks, When do we `unfreeze' the respective source trees: -ports ? -current ? While the -current tree is frozen for 3.0, can we still update the 2.2- branch? Finally, will we be adding a RELENG_3_0 branch to the repository come 15th October? Thanks, Koshy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 23:20:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA08340 for cvs-all-outgoing; Mon, 12 Oct 1998 23:20:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from tibatong.ihf.rwth-aachen.de (tibatong.ihf.RWTH-Aachen.DE [134.130.90.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA08298; Mon, 12 Oct 1998 23:20:04 -0700 (PDT) (envelope-from tg@tibatong.ihf.rwth-aachen.de) Received: (from tg@localhost) by tibatong.ihf.rwth-aachen.de (8.8.8/8.8.8) id IAA20719; Tue, 13 Oct 1998 08:19:47 +0200 (CEST) (envelope-from tg) To: "Justin M. Seger" Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/print/xtem Makefile References: <199810121816.LAA26197@freefall.freebsd.org> Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII From: Thomas Gellekum Date: 13 Oct 1998 08:19:47 +0200 In-Reply-To: "Justin M. Seger"'s message of "Mon, 12 Oct 1998 11:16:47 -0700 (PDT)" Message-ID: <877ly5q8zg.fsf@tibatong.ihf.rwth-aachen.de> Lines: 12 X-Mailer: Gnus v5.6.34/XEmacs 20.4 - "Emerald" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Justin M. Seger" writes: > jseger 1998/10/12 11:16:47 PDT > > Modified files: > print/xtem Makefile > Log: > Mark BROKEN for ELF: Nope. Broken for perl5 in the base system. tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 23:24:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA08672 for cvs-all-outgoing; Mon, 12 Oct 1998 23:24:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from server.amis.net (server.amis.net [195.10.52.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA08659; Mon, 12 Oct 1998 23:24:19 -0700 (PDT) (envelope-from blaz@gold.amis.net) Received: (from uucp@localhost) by server.amis.net (8.8.8/8.8.8) with UUCP id IAA28009; Tue, 13 Oct 1998 08:23:54 +0200 (CEST) Received: from localhost (blaz@localhost) by gold.amis.net (8.9.1/8.8.8) with SMTP id IAA00697; Tue, 13 Oct 1998 08:23:44 +0200 (CEST) Date: Tue, 13 Oct 1998 08:23:44 +0200 (CEST) From: Blaz Zupan To: "Kenneth D. Merry" cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c In-Reply-To: <199810122247.QAA27886@panzer.plutotech.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > > Yes, one of my disks completely hangs so a CAM-ified kernel can not boot. > > One disk is an old Quantum 540MB, the other is a 1.5GB NEC. I suspect the > > Quantum, I'll be finding out which one is the culprit tomorrow. > > Then you've probably got a different problem. The cache sync doesn't > happen until final close, or system shutdown. Well, the following patch works just fine: *** /sys/cam/scsi/scsi_da.c.orig Thu Sep 17 22:19:58 1998 --- /sys/cam/scsi/scsi_da.c Thu Sep 17 22:22:57 1998 *************** *** 358,363 **** --- 358,364 ---- dsclose(dev, fmt, softc->dk_slices); + #if 0 ccb = cam_periph_getccb(periph, /*priority*/1); scsi_synchronize_cache(&ccb->csio, *************** *** 374,379 **** --- 375,381 ---- /*sense_flags*/0, &softc->device_stats); xpt_release_ccb(ccb); + #endif if ((softc->flags & DA_FLAG_PACK_REMOVABLE) != 0) { daprevent(periph, PR_ALLOW); In fact, I'm writing this mail from a machine with the above patch. I was told by Justin that you were working on a quirk entry which would enable to selectively turn off the above for certain disks, and I believe the patch in the subject is it. Or am I mistaken? My two disks are: da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI2 device da0: 10.0MB/s transfers (10.0MHz, offset 8) da0: 516MB (1057616 512 byte sectors: 64H 32S/T 516C) da1 at ahc0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI2 device da1: 10.0MB/s transfers (10.0MHz, offset 15) da1: 1547MB (3170160 512 byte sectors: 255H 63S/T 197C) I believe the Quantum is at fault, but will know for sure later today, when I get home from work. Best regards, Blaz Zupan, blaz@medinet.si, http://home.amis.net/blaz Medinet d.o.o., Linhartova 21, 2000 Maribor, Slovenia To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 23:25:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA08720 for cvs-all-outgoing; Mon, 12 Oct 1998 23:25:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from awfulhak.org (awfulhak.force9.co.uk [195.166.136.63]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA08714; Mon, 12 Oct 1998 23:25:38 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from woof.lan.awfulhak.org (root@woof.lan.awfulhak.org [172.16.0.7]) by awfulhak.org (8.8.8/8.8.8) with ESMTP id HAA01609; Tue, 13 Oct 1998 07:20:38 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from woof.lan.awfulhak.org (brian@localhost [127.0.0.1]) by woof.lan.awfulhak.org (8.9.1/8.9.1) with ESMTP id HAA19226; Tue, 13 Oct 1998 07:19:12 +0100 (BST) (envelope-from brian@woof.lan.awfulhak.org) Message-Id: <199810130619.HAA19226@woof.lan.awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: asami@FreeBSD.ORG (Satoshi Asami) cc: brian@Awfulhak.org, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/x11/kworldwatch Makefile In-reply-to: Your message of "Mon, 12 Oct 1998 13:10:27 PDT." <199810122010.NAA29825@vader.cs.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 13 Oct 1998 07:19:11 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > * I'm clearly missing something here. I have: > > * checking for giflib... yes > > What command does config.log say that it's running here? It says: configure:3017: checking for giflib configure:3041: c++ -o conftest -O2 -Wall -s conftest.C -L/usr/local/lib -L/usr /X11R6/lib -lgif -lX11 1>&5 configure:3065: checking for jpeglib And from configure: [.....] ac_save_LIBS="$LIBS" LIBS="$all_libraries -lgif -lX11 $LIBSOCKET" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && t est -s conftest; then rm -rf conftest* eval "ac_cv_lib_gif=yes" else echo "configure: failed program was:" >&5 cat conftest.$ac_ext >&5 rm -rf conftest* eval "ac_cv_lib_gif=no" fi [.....] Which AFAICT ought to work (and does on my machine). > Satoshi -- 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 Mon Oct 12 23:30:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA09233 for cvs-all-outgoing; Mon, 12 Oct 1998 23:30:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA09223; Mon, 12 Oct 1998 23:30:04 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id BAA29338; Tue, 13 Oct 1998 01:28:33 -0500 (CDT) Date: Tue, 13 Oct 1998 01:28:33 -0500 (CDT) From: Steve Price To: Thomas Gellekum cc: "Justin M. Seger" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/print/xtem Makefile In-Reply-To: <877ly5q8zg.fsf@tibatong.ihf.rwth-aachen.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On 13 Oct 1998, Thomas Gellekum wrote: # "Justin M. Seger" writes: # # > jseger 1998/10/12 11:16:47 PDT # > # > Modified files: # > print/xtem Makefile # > Log: # > Mark BROKEN for ELF: # # Nope. Broken for perl5 in the base system. Indeed it is. It seems pretty easy to fix. A couple of s#/usr/local/bin/perl#/usr/bin/perl# in the 3.0 case and it should work. Care to work up a patch? Steve # tg # To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Oct 12 23:31:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA09331 for cvs-all-outgoing; Mon, 12 Oct 1998 23:31:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA09326; Mon, 12 Oct 1998 23:31:35 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-197.ix.netcom.com [209.109.234.197]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id XAA01670; Mon, 12 Oct 1998 23:31:17 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id XAA23009; Mon, 12 Oct 1998 23:31:10 -0700 (PDT) Date: Mon, 12 Oct 1998 23:31:10 -0700 (PDT) Message-Id: <199810130631.XAA23009@silvia.hip.berkeley.edu> To: brian@Awfulhak.org CC: brian@Awfulhak.org, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199810130619.HAA19226@woof.lan.awfulhak.org> (message from Brian Somers on Tue, 13 Oct 1998 07:19:11 +0100) Subject: Re: cvs commit: ports/x11/kworldwatch Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * configure:3017: checking for giflib * configure:3041: c++ -o conftest -O2 -Wall -s conftest.C -L/usr/local/lib -L/usr * /X11R6/lib -lgif -lX11 1>&5 * configure:3065: checking for jpeglib This is what it says here: === configure:3017: checking for giflib configure:3041: c++ -o conftest -O2 -Wall -s conftest.C -L/usr/local/kde/lib -L/ usr/X11R6/lib -lgif -lX11 1>&5 ld: -lgif: no match === I don't know how to get that "-L/usr/local/kde/lib" to change.... Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 00:31:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA13884 for cvs-all-outgoing; Tue, 13 Oct 1998 00:31:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA13879; Tue, 13 Oct 1998 00:31:40 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA21053; Tue, 13 Oct 1998 00:31:38 -0700 (PDT) Date: Tue, 13 Oct 1998 00:31:38 -0700 (PDT) Message-Id: <199810130731.AAA21053@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall index.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/13 00:31:38 PDT Modified files: release/sysinstall index.c Log: Update to latest ports categories. Revision Changes Path 1.56 +7 -1 src/release/sysinstall/index.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 00:56:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA17185 for cvs-all-outgoing; Tue, 13 Oct 1998 00:56:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA17180; Tue, 13 Oct 1998 00:56:40 -0700 (PDT) (envelope-from yokota@FreeBSD.org) From: Kazutaka YOKOTA Received: (from yokota@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA21775; Tue, 13 Oct 1998 00:56:39 -0700 (PDT) Date: Tue, 13 Oct 1998 00:56:39 -0700 (PDT) Message-Id: <199810130756.AAA21775@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa psm.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk yokota 1998/10/13 00:56:39 PDT Modified files: sys/i386/isa psm.c Log: Added a workaround for yet-another, less-than-compatible keyboard controller. This one returns 0xfa (ACK) for TEST_KBD_PORT and TEST_AUX_PORT commands. The compatible controllers expected to return 0. Revision Changes Path 1.55 +4 -1 src/sys/i386/isa/psm.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 01:13:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA18763 for cvs-all-outgoing; Tue, 13 Oct 1998 01:13:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA18756; Tue, 13 Oct 1998 01:13:40 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA22286; Tue, 13 Oct 1998 01:13:37 -0700 (PDT) Date: Tue, 13 Oct 1998 01:13:37 -0700 (PDT) Message-Id: <199810130813.BAA22286@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src Makefile.inc1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/13 01:13:37 PDT Modified files: . Makefile.inc1 Log: Conditionalise boot block building on i386. Revision Changes Path 1.33 +3 -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 Tue Oct 13 01:14:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA19046 for cvs-all-outgoing; Tue, 13 Oct 1998 01:14:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA19041; Tue, 13 Oct 1998 01:14:33 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA22371; Tue, 13 Oct 1998 01:14:31 -0700 (PDT) Date: Tue, 13 Oct 1998 01:14:31 -0700 (PDT) Message-Id: <199810130814.BAA22371@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/keyserv keyserv.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1998/10/13 01:14:31 PDT Modified files: usr.sbin/keyserv keyserv.8 Log: Remove irrelevant section. PR: 8286 Submitted-by: yohta@bres.tsukuba.ac.jp Revision Changes Path 1.4 +0 -2 src/usr.sbin/keyserv/keyserv.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 01:14:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA19074 for cvs-all-outgoing; Tue, 13 Oct 1998 01:14:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA19063; Tue, 13 Oct 1998 01:14:35 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA22386; Tue, 13 Oct 1998 01:14:33 -0700 (PDT) Date: Tue, 13 Oct 1998 01:14:33 -0700 (PDT) Message-Id: <199810130814.BAA22386@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf GENERIC98 GENERICupgrade Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/10/13 01:14:33 PDT Modified files: sys/pc98/conf GENERIC98 GENERICupgrade Log: Commented out aic driver. Revision Changes Path 1.50 +2 -2 src/sys/pc98/conf/GENERIC98 1.4 +2 -2 src/sys/pc98/conf/GENERICupgrade To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 01:24:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA20629 for cvs-all-outgoing; Tue, 13 Oct 1998 01:24:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA20623; Tue, 13 Oct 1998 01:24:47 -0700 (PDT) (envelope-from dg@FreeBSD.org) From: David Greenman Received: (from dg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA23019; Tue, 13 Oct 1998 01:24:45 -0700 (PDT) Date: Tue, 13 Oct 1998 01:24:45 -0700 (PDT) Message-Id: <199810130824.BAA23019@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/cam/scsi scsi_da.c src/sys/i386/i386 busdma_machdep.c vm_machdep.c src/sys/i386/ibcs2 imgact_coff.c src/sys/i386/include param.h src/sys/i386/isa isa.c wd.c src/sys/kern imgact_elf.c sys_pipe.c sysv_shm.c vfs_bio.c ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dg 1998/10/13 01:24:45 PDT Modified files: sys/cam/scsi scsi_da.c sys/i386/i386 busdma_machdep.c vm_machdep.c sys/i386/ibcs2 imgact_coff.c sys/i386/include param.h sys/i386/isa isa.c wd.c sys/kern imgact_elf.c sys_pipe.c sysv_shm.c vfs_bio.c vfs_subr.c sys/vm default_pager.c device_pager.c swap_pager.c vm_glue.c vm_map.c vm_mmap.c vm_pager.c vm_pager.h vm_unix.c vnode_pager.c vnode_pager.h Log: Fixed two potentially serious classes of bugs: 1) The vnode pager wasn't properly tracking the file size due to "size" being page rounded in some cases and not in others. This sometimes resulted in corrupted files. First noticed by Terry Lambert. Fixed by changing the "size" pager_alloc parameter to be a 64bit byte value (as opposed to a 32bit page index) and changing the pagers and their callers to deal with this properly. 2) Fixed a bogus type cast in round_page() and trunc_page() that caused some 64bit offsets and sizes to be scrambled. Removing the cast required adding casts at a few dozen callers. There may be problems with other bogus casts in close-by macros. A quick check seemed to indicate that those were okay, however. Revision Changes Path 1.10 +2 -2 src/sys/cam/scsi/scsi_da.c 1.11 +4 -4 src/sys/i386/i386/busdma_machdep.c 1.112 +3 -3 src/sys/i386/i386/vm_machdep.c 1.32 +5 -5 src/sys/i386/ibcs2/imgact_coff.c 1.47 +3 -3 src/sys/i386/include/param.h 1.115 +2 -2 src/sys/i386/isa/isa.c 1.177 +2 -2 src/sys/i386/isa/wd.c 1.38 +4 -4 src/sys/kern/imgact_elf.c 1.43 +3 -3 src/sys/kern/sys_pipe.c 1.39 +3 -4 src/sys/kern/sysv_shm.c 1.179 +9 -9 src/sys/kern/vfs_bio.c 1.165 +3 -4 src/sys/kern/vfs_subr.c 1.16 +4 -4 src/sys/vm/default_pager.c 1.32 +9 -7 src/sys/vm/device_pager.c 1.102 +5 -5 src/sys/vm/swap_pager.c 1.77 +8 -8 src/sys/vm/vm_glue.c 1.137 +2 -2 src/sys/vm/vm_map.c 1.84 +4 -4 src/sys/vm/vm_mmap.c 1.38 +4 -4 src/sys/vm/vm_pager.c 1.17 +3 -3 src/sys/vm/vm_pager.h 1.17 +2 -2 src/sys/vm/vm_unix.c 1.100 +4 -4 src/sys/vm/vnode_pager.c 1.12 +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 Oct 13 01:25:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA20676 for cvs-all-outgoing; Tue, 13 Oct 1998 01:25:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA20666; Tue, 13 Oct 1998 01:25:12 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA23059; Tue, 13 Oct 1998 01:25:10 -0700 (PDT) Date: Tue, 13 Oct 1998 01:25:10 -0700 (PDT) Message-Id: <199810130825.BAA23059@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/etc rc.devfs Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/13 01:25:10 PDT Modified files: etc rc.devfs Log: Shut this thing up; most people don't even have this enabled. Revision Changes Path 1.3 +1 -4 src/etc/rc.devfs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 01:52:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA24103 for cvs-all-outgoing; Tue, 13 Oct 1998 01:52:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA24080; Tue, 13 Oct 1998 01:52:31 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA23764; Tue, 13 Oct 1998 01:52:29 -0700 (PDT) Date: Tue, 13 Oct 1998 01:52:29 -0700 (PDT) Message-Id: <199810130852.BAA23764@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/bin/cp cp.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1998/10/13 01:52:29 PDT Modified files: bin/cp cp.1 Log: Correct a grammatical nit and remove ambiguity about the effect of the -p option. PR: 8229 Submitted-by: Sheldon Hearn Revision Changes Path 1.11 +6 -4 src/bin/cp/cp.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 01:57:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA24982 for cvs-all-outgoing; Tue, 13 Oct 1998 01:57:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA24975; Tue, 13 Oct 1998 01:57:50 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA24044; Tue, 13 Oct 1998 01:57:48 -0700 (PDT) Date: Tue, 13 Oct 1998 01:57:48 -0700 (PDT) Message-Id: <199810130857.BAA24044@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/doscmd doscmd.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1998/10/13 01:57:48 PDT Modified files: usr.bin/doscmd doscmd.1 Log: Fix typos. PR: 8216 Submitted by: Kaneda Hiloshi Revision Changes Path 1.8 +5 -5 src/usr.bin/doscmd/doscmd.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 02:03:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA25748 for cvs-all-outgoing; Tue, 13 Oct 1998 02:03:01 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA25735; Tue, 13 Oct 1998 02:02:55 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA24362; Tue, 13 Oct 1998 02:02:53 -0700 (PDT) Date: Tue, 13 Oct 1998 02:02:53 -0700 (PDT) Message-Id: <199810130902.CAA24362@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/internal about.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/13 02:02:53 PDT Modified files: en/internal about.sgml Log: Add pointer to urchin stats. Revision Changes Path 1.19 +9 -3 www/en/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 Tue Oct 13 02:06:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA26081 for cvs-all-outgoing; Tue, 13 Oct 1998 02:06:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA26033; Tue, 13 Oct 1998 02:06:00 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA24488; Tue, 13 Oct 1998 02:05:58 -0700 (PDT) Date: Tue, 13 Oct 1998 02:05:58 -0700 (PDT) Message-Id: <199810130905.CAA24488@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pci if_de.c if_devar.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/13 02:05:58 PDT Modified files: sys/pci if_de.c if_devar.h Log: Update from NetBSD if_de.c 1.72 to 1.80. This is mostly bugfixes, and looks like it will have most effect on decoding device capabilities and configuration. Approved by: jkh Revision Changes Path 1.88 +85 -53 src/sys/pci/if_de.c 1.10 +6 -4 src/sys/pci/if_devar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 02:09:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA26459 for cvs-all-outgoing; Tue, 13 Oct 1998 02:09:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA26451; Tue, 13 Oct 1998 02:09:50 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA24646; Tue, 13 Oct 1998 02:09:48 -0700 (PDT) Date: Tue, 13 Oct 1998 02:09:48 -0700 (PDT) Message-Id: <199810130909.CAA24646@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/handbook install.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1998/10/13 02:09:48 PDT Modified files: handbook install.sgml Log: Add warning about disabling necessary devices. Submitted by: Sue Blake on the -doc list Revision Changes Path 1.67 +3 -1 doc/handbook/install.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 02:25:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA27920 for cvs-all-outgoing; Tue, 13 Oct 1998 02:25:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA27913; Tue, 13 Oct 1998 02:25:29 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA25154; Tue, 13 Oct 1998 02:25:27 -0700 (PDT) Date: Tue, 13 Oct 1998 02:25:27 -0700 (PDT) Message-Id: <199810130925.CAA25154@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/common load_elf.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/13 02:25:27 PDT Modified files: sys/boot/common load_elf.c Log: Make the ELF load messages cleaner. Revision Changes Path 1.5 +17 -8 src/sys/boot/common/load_elf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 02:27:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA28084 for cvs-all-outgoing; Tue, 13 Oct 1998 02:27:03 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA28079; Tue, 13 Oct 1998 02:27:02 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA25205; Tue, 13 Oct 1998 02:27:01 -0700 (PDT) Date: Tue, 13 Oct 1998 02:27:01 -0700 (PDT) Message-Id: <199810130927.CAA25205@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern link_elf.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/13 02:27:00 PDT Modified files: sys/kern link_elf.c Log: Load the full symbol tables if they are present. This means that ddb and tracebacks have access to local symbols. This is particularly important for the Alpha. Revision Changes Path 1.5 +78 -10 src/sys/kern/link_elf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 02:43:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA00392 for cvs-all-outgoing; Tue, 13 Oct 1998 02:43:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA00387; Tue, 13 Oct 1998 02:43:11 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA25777; Tue, 13 Oct 1998 02:43:10 -0700 (PDT) Date: Tue, 13 Oct 1998 02:43:10 -0700 (PDT) Message-Id: <199810130943.CAA25777@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/i386 userconfig.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/10/13 02:43:09 PDT Modified files: sys/pc98/i386 userconfig.c Log: Sync with sys/i386/i386/userconfig.c revision 1.112. Revision Changes Path 1.57 +4 -3 src/sys/pc98/i386/userconfig.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 02:44:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA00809 for cvs-all-outgoing; Tue, 13 Oct 1998 02:44:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA00804; Tue, 13 Oct 1998 02:44:11 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA25840; Tue, 13 Oct 1998 02:44:10 -0700 (PDT) Date: Tue, 13 Oct 1998 02:44:10 -0700 (PDT) Message-Id: <199810130944.CAA25840@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 pc98.c wd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/10/13 02:44:10 PDT Modified files: sys/pc98/pc98 pc98.c wd.c Log: Sync with sys/i386/isa/isa.c and wd.c revisions 1.115 and 1.177, respectively. Revision Changes Path 1.53 +2 -2 src/sys/pc98/pc98/pc98.c 1.64 +2 -2 src/sys/pc98/pc98/wd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 02:46:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA01282 for cvs-all-outgoing; Tue, 13 Oct 1998 02:46:03 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA01259; Tue, 13 Oct 1998 02:46:02 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA26042; Tue, 13 Oct 1998 02:46:00 -0700 (PDT) Date: Tue, 13 Oct 1998 02:46:00 -0700 (PDT) Message-Id: <199810130946.CAA26042@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall Makefile disks.c wizard.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/13 02:46:00 PDT Modified files: release/sysinstall Makefile disks.c wizard.c Log: switch to proper boot0 Revision Changes Path 1.74 +1 -0 src/release/sysinstall/Makefile 1.105 +3 -3 src/release/sysinstall/disks.c 1.13 +1 -27 src/release/sysinstall/wizard.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 02:46:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA01353 for cvs-all-outgoing; Tue, 13 Oct 1998 02:46:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA01347; Tue, 13 Oct 1998 02:46:43 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA26097; Tue, 13 Oct 1998 02:46:41 -0700 (PDT) Date: Tue, 13 Oct 1998 02:46:41 -0700 (PDT) Message-Id: <199810130946.CAA26097@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/13 02:46:41 PDT Modified files: release/sysinstall Makefile Log: correct typo. Revision Changes Path 1.75 +1 -1 src/release/sysinstall/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 02:48:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA01522 for cvs-all-outgoing; Tue, 13 Oct 1998 02:48:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA01508; Tue, 13 Oct 1998 02:47:56 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA26236; Tue, 13 Oct 1998 02:47:55 -0700 (PDT) Date: Tue, 13 Oct 1998 02:47:55 -0700 (PDT) Message-Id: <199810130947.CAA26236@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/13 02:47:54 PDT Modified files: release/sysinstall Makefile Log: properly conditionalize for alpha. Revision Changes Path 1.76 +2 -0 src/release/sysinstall/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 02:49:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA01821 for cvs-all-outgoing; Tue, 13 Oct 1998 02:49:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA01812; Tue, 13 Oct 1998 02:49:19 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA26300; Tue, 13 Oct 1998 02:49:17 -0700 (PDT) Date: Tue, 13 Oct 1998 02:49:17 -0700 (PDT) Message-Id: <199810130949.CAA26300@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall disks.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/13 02:49:17 PDT Modified files: release/sysinstall disks.c Log: properly conditionalize for alpha. Revision Changes Path 1.106 +2 -2 src/release/sysinstall/disks.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 03:01:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA03136 for cvs-all-outgoing; Tue, 13 Oct 1998 03:01:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA03131; Tue, 13 Oct 1998 03:01:35 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA26831; Tue, 13 Oct 1998 03:01:33 -0700 (PDT) Date: Tue, 13 Oct 1998 03:01:33 -0700 (PDT) Message-Id: <199810131001.DAA26831@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src Makefile.inc1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/13 03:01:33 PDT Modified files: . Makefile.inc1 Log: Include btxld in build-tools only for i386. Revision Changes Path 1.34 +4 -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 Oct 13 03:07:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA03637 for cvs-all-outgoing; Tue, 13 Oct 1998 03:07:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA03632; Tue, 13 Oct 1998 03:07:46 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA26976; Tue, 13 Oct 1998 03:07:45 -0700 (PDT) Date: Tue, 13 Oct 1998 03:07:45 -0700 (PDT) Message-Id: <199810131007.DAA26976@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall install.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/13 03:07:44 PDT Modified files: release/sysinstall install.c Log: fix brainos in earlier commit. Revision Changes Path 1.216 +4 -4 src/release/sysinstall/install.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 03:53:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA07657 for cvs-all-outgoing; Tue, 13 Oct 1998 03:53:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA07652; Tue, 13 Oct 1998 03:53:38 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA28160; Tue, 13 Oct 1998 03:53:37 -0700 (PDT) Date: Tue, 13 Oct 1998 03:53:37 -0700 (PDT) Message-Id: <199810131053.DAA28160@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/textproc/glimpse Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 03:53:36 PDT Modified files: textproc/glimpse Makefile Log: Mark BROKEN for ELF. cd index ; make cc -O -pipe -O -DSTRUCTURED_QUERIES=1 -L../agrep -L../libtemplate/template -L../libtemplate/util -L../compress -o buildcast buildcast.o region.o dir.o io.o build_in.o filetype.o simpletest.o getword.o memlook.o lib.o partition.o -lagrep -ltemplate -lutil /usr/libexec/elf/ld: cannot open -ltemplate: No such file or directory *** Error code 1 Revision Changes Path 1.13 +3 -1 ports/textproc/glimpse/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 03:57:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA08031 for cvs-all-outgoing; Tue, 13 Oct 1998 03:57:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA08025; Tue, 13 Oct 1998 03:57:39 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: from dragon.nuxi.com (WHAT_THE_HELL_YOU_LOOKING_AT_@d60-147.leach.ucdavis.edu [169.237.60.147]) by relay.nuxi.com (8.8.8/8.6.12) with ESMTP id DAA08759; Tue, 13 Oct 1998 03:57:25 -0700 (PDT) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.1/8.9.1) id KAA28620; Tue, 13 Oct 1998 10:57:24 GMT (envelope-from obrien) Message-ID: <19981013035724.T19341@nuxi.com> Date: Tue, 13 Oct 1998 03:57:24 -0700 From: "David O'Brien" To: Satoshi Asami Cc: mark@grondar.za, committers@FreeBSD.ORG Subject: Re: Ports-with-crypto; a prpopsal Reply-To: obrien@NUXI.com References: <19981010023248.A23191@nuxi.com> <199810110319.UAA13461@bubble.didi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199810110319.UAA13461@bubble.didi.com>; from Satoshi Asami on Sat, Oct 10, 1998 at 08:19:17PM -0700 X-Operating-System: FreeBSD 3.0-BETA 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 > * I proposed a long time ago, that we add a new categrory "IS_CRYPTO" > * analagious to BATCH/INTERACTIVE/etc... At the time I don't think you > * wanted to add another varable. How about now? > > I guess that's fine too. What should the logic for disabling/enabling > be, btw? If WANT_CRYPTO is defined, then only build ports that have "IS_CRYPTO" defined. Otherwise those interested in just building/testing/packaging crypto-related ports, will have to build everything too. (unless a non-crypto port is a dependacy, then of course that should be built too). -- -- David (obrien@NUXI.com -or- obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 04:06:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA10381 for cvs-all-outgoing; Tue, 13 Oct 1998 04:06:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA10375; Tue, 13 Oct 1998 04:06:06 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA29700; Tue, 13 Oct 1998 04:06:05 -0700 (PDT) Date: Tue, 13 Oct 1998 04:06:05 -0700 (PDT) Message-Id: <199810131106.EAA29700@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/emulators/wine Makefile ports/emulators/wine/files bitops.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 04:06:04 PDT Modified files: emulators/wine Makefile emulators/wine/files bitops.h Log: Unbreak. Submitted by: asami Revision Changes Path 1.65 +1 -3 ports/emulators/wine/Makefile 1.2 +114 -22 ports/emulators/wine/files/bitops.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 04:19:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA11906 for cvs-all-outgoing; Tue, 13 Oct 1998 04:19:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA11901; Tue, 13 Oct 1998 04:19:56 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA00139; Tue, 13 Oct 1998 04:19:54 -0700 (PDT) Date: Tue, 13 Oct 1998 04:19:54 -0700 (PDT) Message-Id: <199810131119.EAA00139@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/am-utils Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 04:19:54 PDT Modified files: net/am-utils Makefile Log: Mark BROKEN for current. Doesn't compile on a current current, but this isn't a big problem because we now have am-utils in the base system. Revision Changes Path 1.5 +6 -1 ports/net/am-utils/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 04:39:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA13236 for cvs-all-outgoing; Tue, 13 Oct 1998 04:39:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA13230; Tue, 13 Oct 1998 04:39:27 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-197.ix.netcom.com [209.109.234.197]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id EAA02057; Tue, 13 Oct 1998 04:39:12 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id EAA23742; Tue, 13 Oct 1998 04:39:06 -0700 (PDT) Date: Tue, 13 Oct 1998 04:39:06 -0700 (PDT) Message-Id: <199810131139.EAA23742@silvia.hip.berkeley.edu> To: jseger@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199810131106.EAA29700@freefall.freebsd.org> (jseger@FreeBSD.ORG) Subject: Re: cvs commit: ports/emulators/wine Makefile ports/emulators/wine/files bitops.h From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Submitted by: asami se via asami Satoshi :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 05:03:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA15051 for cvs-all-outgoing; Tue, 13 Oct 1998 05:03:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA15045; Tue, 13 Oct 1998 05:03:47 -0700 (PDT) (envelope-from ben@scientia.demon.co.uk) Received: from ben by scientia.demon.co.uk with local (Exim 2.05 #3) id 0zSzIj-0007XX-00; Tue, 13 Oct 1998 08:55:25 +0100 Date: Tue, 13 Oct 1998 08:55:24 +0100 From: Ben Smithurst To: "Justin M. Seger" Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/mail/imap-uw Makefile Message-ID: <19981013085524.A28973@scientia.demon.co.uk> References: <19981012224830.A12660@scientia.demon.co.uk> <199810130146.VAA28814@freebsd.scds.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <199810130146.VAA28814@freebsd.scds.com> User-Agent: Mutt/0.94.11i (FreeBSD 3.0-BETA i386) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Justin M. Seger wrote: > ===> Building package for imap-uw-4.2 Ah, didn't try that bit, just tried building and installing. oh well -- Ben Smithurst ben@scientia.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 05:19:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA16603 for cvs-all-outgoing; Tue, 13 Oct 1998 05:19:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA16598; Tue, 13 Oct 1998 05:19:33 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA01870; Tue, 13 Oct 1998 05:19:31 -0700 (PDT) Date: Tue, 13 Oct 1998 05:19:31 -0700 (PDT) Message-Id: <199810131219.FAA01870@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/bin/ls util.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/10/13 05:19:31 PDT Modified files: bin/ls util.c Log: Doh. What was I smoking when I wrote this? PR: bin/8301 Submitted by: Tetsuya Furukawa Revision Changes Path 1.18 +5 -5 src/bin/ls/util.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 06:33:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA23784 for cvs-all-outgoing; Tue, 13 Oct 1998 06:33:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA23779; Tue, 13 Oct 1998 06:33:58 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA04218; Tue, 13 Oct 1998 06:33:57 -0700 (PDT) Date: Tue, 13 Oct 1998 06:33:57 -0700 (PDT) Message-Id: <199810131333.GAA04218@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/games/pysol Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 06:33:56 PDT Modified files: games/pysol Makefile Log: Mark BROKEN. Doesn't fetch: FTP error: /usr/bin/fetch: File unavailable (e.g., file not found, no access) >> Attempting to fetch from http://wildsau.idv.uni-linz.ac.at/mfx/download/. /usr/bin/fetch: pysol-1.10.tar.gz: wildsau.idv.uni-linz.ac.at: HTTP server retur ned error code 404 >> Couldn't fetch it - please try to retrieve this >> port manually into /usr/ports/distfiles/ and try again. *** Error code 1 Revision Changes Path 1.5 +3 -1 ports/games/pysol/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 07:18:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA27679 for cvs-all-outgoing; Tue, 13 Oct 1998 07:18:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA27674; Tue, 13 Oct 1998 07:18:52 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA11061; Tue, 13 Oct 1998 07:18:51 -0700 (PDT) Date: Tue, 13 Oct 1998 07:18:51 -0700 (PDT) Message-Id: <199810131418.HAA11061@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/games/xblackjack Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 07:18:51 PDT Modified files: games/xblackjack Makefile Log: Mark BROKEN for ELF until a version of Motif becomes available that supports it. Lesstif isn't sufficient for this port. Revision Changes Path 1.6 +3 -1 ports/games/xblackjack/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 07:27:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA28472 for cvs-all-outgoing; Tue, 13 Oct 1998 07:27:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from peedub.muc.de (newpc.muc.ditec.de [194.120.126.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA28465; Tue, 13 Oct 1998 07:27:07 -0700 (PDT) (envelope-from garyj@peedub.muc.de) Received: from peedub.muc.de (localhost [127.0.0.1]) by peedub.muc.de (8.9.1/8.6.9) with ESMTP id QAA24179; Tue, 13 Oct 1998 16:08:55 +0200 (CEST) Message-Id: <199810131408.QAA24179@peedub.muc.de> X-Mailer: exmh version 2.0.2 2/24/98 To: "Justin M. Seger" cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/editors/xemacs Makefile Reply-To: Gary Jennejohn In-reply-to: Your message of "Mon, 12 Oct 1998 19:41:21 PDT." <199810130241.TAA12382@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 13 Oct 1998 16:08:55 +0200 From: Gary Jennejohn Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Justin M. Seger" writes: >jseger 1998/10/12 19:41:21 PDT > > Modified files: > editors/xemacs Makefile > Log: > Mark BROKEN for ELF: > strip /usr/local/bin/xemacs-19.16 > BFD: /usr/local/bin/sta20980: warning: allocated section `.data' not in segm >ent > BFD: /usr/local/bin/sta20980: warning: allocated section `.bss' not in segme >nt > /usr/local/bin/xemacs -batch -eval '(byte-compile-file "/usr/local/lib/xemac >s-19.16/lisp/x11/x-win-xfree86.el" nil)' > Segmentation fault - core dumped > > Revision Changes Path > 1.45 +3 -1 ports/editors/xemacs/Makefile > with the following patch (partly from ports/8289) it worked just fine for me. I did ``make package'', pkg_delete, pkg_add and pkg_delete with no errors. --- Makefile.orig Wed Oct 7 23:30:26 1998 +++ Makefile Tue Oct 13 09:58:24 1998 @@ -63,7 +63,7 @@ strip ${PREFIX}/bin/${file} .endfor # byte compile the new x-win-xfree86.el - ${PREFIX}/bin/xemacs -batch -eval '(byte-compile-file "${PREFIX}/lib/${DISTNAME}/lisp/x11/x-win-xfree86.el" nil)' + ${PREFIX}/bin/xemacs -no-site-file -no-init-file -batch -eval '(byte-compile-file "${PREFIX}/lib/${DISTNAME}/lisp/x11/x-win-xfree86.el" nil)' # also silently delete x-win-xfree86.el.orig @${RM} -f ${PREFIX}/lib/${DISTNAME}/lisp/x11/x-win-xfree86.el.orig # ``make install'' does not set the permissions like pkg_add does. --- pkg/PLIST.orig Mon Aug 17 21:04:00 1998 +++ pkg/PLIST Tue Oct 13 15:06:18 1998 @@ -11,10 +11,12 @@ @exec ln -s %D/%F %B/xemacs @unexec rm %B/xemacs etc/rc.d/xemacs.sh -@exec mkdir -p /var/run/xemacs/lock ; chmod 1777 /var/run/xemacs/lock -@unexec rm -rf /var/run/xemacs -@exec mkdir -p lib/xemacs/site-lisp ; chmod 755 lib/xemacs/site-lisp -@exec mkdir -p share/emacs/site-lisp ; chmod 755 share/emacs/site-lisp +@exec mkdir -p %D/lib/xemacs/site-lisp +@exec chmod 755 %D/lib/xemacs/site-lisp +@exec mkdir -p %D/share/emacs/site-lisp +@exec chmod 755 %D/share/emacs/site-lisp +@exec mkdir -p /var/run/emacs/lock +@exec chmod 1777 /var/run/emacs/lock lib/xemacs-19.16/etc/AIX.DUMP lib/xemacs-19.16/etc/BABYL lib/xemacs-19.16/etc/BETA --- Gary Jennejohn Home - garyj@muc.de Work - garyj@fkr.dec.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 07:33:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA29103 for cvs-all-outgoing; Tue, 13 Oct 1998 07:33:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA29097; Tue, 13 Oct 1998 07:33:38 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA11756; Tue, 13 Oct 1998 07:33:36 -0700 (PDT) Date: Tue, 13 Oct 1998 07:33:36 -0700 (PDT) Message-Id: <199810131433.HAA11756@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/games/xgammon Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 07:33:36 PDT Modified files: games/xgammon Makefile Log: Mark BROKEN for ELF: requires rpm. Revision Changes Path 1.7 +3 -1 ports/games/xgammon/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 07:47:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA00611 for cvs-all-outgoing; Tue, 13 Oct 1998 07:47:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA00606; Tue, 13 Oct 1998 07:47:16 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA12186; Tue, 13 Oct 1998 07:47:14 -0700 (PDT) Date: Tue, 13 Oct 1998 07:47:14 -0700 (PDT) Message-Id: <199810131447.HAA12186@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/games/xminehunter Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 07:47:14 PDT Modified files: games/xminehunter Makefile Log: Mark BROKEN for ELF: g++ -o xminehunter -DMINE_SCORE_PATH=\"/usr/X11R6/lib/X11/xminehunter\" xminehun ter.o callbacks.o event_handlers.o app.o interface.o constructor.o bitmap.o -L/u sr/X11R6/lib /usr/X11R6/lib/libXm.a -lXt -lXpm -lXext -lX11 /usr/libexec/elf/ld: warning: libSM.so.6, needed by /usr/X11R6/lib/libXt.so, not found (try using --rpath) /usr/libexec/elf/ld: warning: libICE.so.6, needed by /usr/X11R6/lib/libXt.so, no t found (try using --rpath) /usr/X11R6/lib/libXt.so: undefined reference to `SmcSaveYourselfDone' /usr/X11R6/lib/libXt.so: undefined reference to `IceConnectionNumber' Revision Changes Path 1.8 +4 -1 ports/games/xminehunter/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 07:52:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA01268 for cvs-all-outgoing; Tue, 13 Oct 1998 07:52:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA01257; Tue, 13 Oct 1998 07:52:35 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA12654; Tue, 13 Oct 1998 07:52:33 -0700 (PDT) Date: Tue, 13 Oct 1998 07:52:33 -0700 (PDT) Message-Id: <199810131452.HAA12654@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/bin/mv mv.c src/usr.bin/apply apply.c src/usr.bin/find function.c src/usr.bin/newkey update.c src/usr.bin/time time.c src/usr.bin/tn3270/sys_curses system.c src/usr.bin/truss setup.c src/usr.bin/vacation vacation.c ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/10/13 07:52:33 PDT Modified files: bin/mv mv.c usr.bin/apply apply.c usr.bin/find function.c usr.bin/newkey update.c usr.bin/time time.c usr.bin/tn3270/sys_curses system.c usr.bin/truss setup.c usr.bin/vacation vacation.c usr.bin/xargs xargs.c usr.bin/xinstall xinstall.c usr.sbin/vipw pw_util.c Log: Calls one or more of malloc(), warn(), err(), syslog(), execlp() or execvp() in the child branch of a vfork(). Changed to use fork() instead. Some of these (mv, find, apply, xargs) might benefit greatly from being rewritten to use vfork() properly. PR: Loosely related to bin/8252 Approved by: jkh and bde Revision Changes Path 1.22 +2 -2 src/bin/mv/mv.c 1.4 +1 -1 src/usr.bin/apply/apply.c 1.17 +2 -2 src/usr.bin/find/function.c 1.4 +1 -5 src/usr.bin/newkey/update.c 1.12 +2 -2 src/usr.bin/time/time.c 1.4 +2 -2 src/usr.bin/tn3270/sys_curses/system.c 1.8 +4 -4 src/usr.bin/truss/setup.c 1.13 +2 -2 src/usr.bin/vacation/vacation.c 1.7 +3 -3 src/usr.bin/xargs/xargs.c 1.33 +2 -2 src/usr.bin/xinstall/xinstall.c 1.10 +3 -3 src/usr.sbin/vipw/pw_util.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 08:05:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA02478 for cvs-all-outgoing; Tue, 13 Oct 1998 08:05:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA02473; Tue, 13 Oct 1998 08:05:02 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA13509; Tue, 13 Oct 1998 08:05:01 -0700 (PDT) Date: Tue, 13 Oct 1998 08:05:01 -0700 (PDT) Message-Id: <199810131505.IAA13509@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/calendar io.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/10/13 08:05:00 PDT Modified files: usr.bin/calendar io.c Log: Missed one in the previous commit. Revision Changes Path 1.11 +3 -3 src/usr.bin/calendar/io.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 08:14:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA03513 for cvs-all-outgoing; Tue, 13 Oct 1998 08:14:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA03508; Tue, 13 Oct 1998 08:14:39 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA13889; Tue, 13 Oct 1998 08:14:37 -0700 (PDT) Date: Tue, 13 Oct 1998 08:14:37 -0700 (PDT) Message-Id: <199810131514.IAA13889@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/window wwspawn.c wwterminfo.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/10/13 08:14:37 PDT Modified files: usr.bin/window wwspawn.c wwterminfo.c Log: One vfork() changed to fork(); one execl() changed to execv(). The latter isn't actually called as far as I can see since FreeBSD uses termcap and not terminfo. Revision Changes Path 1.3 +2 -2 src/usr.bin/window/wwspawn.c 1.3 +6 -2 src/usr.bin/window/wwterminfo.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 08:45:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA07492 for cvs-all-outgoing; Tue, 13 Oct 1998 08:45:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA07487; Tue, 13 Oct 1998 08:45:45 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA14792; Tue, 13 Oct 1998 08:45:44 -0700 (PDT) Date: Tue, 13 Oct 1998 08:45:44 -0700 (PDT) Message-Id: <199810131545.IAA14792@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/gnu/ext2fs ext2_extern.h ext2_fs.h ext2_linux_balloc.c src/sys/ufs/ufs inode.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/13 08:45:43 PDT Modified files: sys/gnu/ext2fs ext2_extern.h ext2_fs.h ext2_linux_balloc.c sys/ufs/ufs inode.h Log: Fixed bloatage of `struct inode'. We used 5 "spare" fields for ext2fs, but when i_effnlink was added to support soft updates, there was only room for 4 spares. The number of spares was not reduced, so the inode size became 260 (on i386's), or 512 after rounding up by malloc(). Use one spare field in `struct dinode' instead of the 5th spare field in the inode and reduced to 4 spares in the inode so that the size is 256 again. Changed the types of the spares in the inode from int to u_int32_t so that the inode size has more chance of being <= 256 under other arches, and downdated ext2fs to match (it was broken to use ints before rev.1.1). Revision Changes Path 1.21 +2 -2 src/sys/gnu/ext2fs/ext2_extern.h 1.4 +2 -2 src/sys/gnu/ext2fs/ext2_fs.h 1.9 +2 -2 src/sys/gnu/ext2fs/ext2_linux_balloc.c 1.24 +2 -2 src/sys/ufs/ufs/inode.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 08:48:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA07755 for cvs-all-outgoing; Tue, 13 Oct 1998 08:48:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from panzer.plutotech.com (panzer.plutotech.com [206.168.67.125]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA07749; Tue, 13 Oct 1998 08:48:04 -0700 (PDT) (envelope-from ken@panzer.plutotech.com) Received: (from ken@localhost) by panzer.plutotech.com (8.9.1/8.8.5) id JAA03036; Tue, 13 Oct 1998 09:47:37 -0600 (MDT) From: "Kenneth D. Merry" Message-Id: <199810131547.JAA03036@panzer.plutotech.com> Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c In-Reply-To: from Blaz Zupan at "Oct 13, 98 08:23:44 am" To: blaz@gold.amis.net (Blaz Zupan) Date: Tue, 13 Oct 1998 09:47:37 -0600 (MDT) Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL28s (25)] MIME-Version: 1.0 Content-Type: multipart/mixed; boundary=ELM908293657-3005-0_ Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk --ELM908293657-3005-0_ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Blaz Zupan wrote... > > > Yes, one of my disks completely hangs so a CAM-ified kernel can not boot. > > > One disk is an old Quantum 540MB, the other is a 1.5GB NEC. I suspect the > > > Quantum, I'll be finding out which one is the culprit tomorrow. > > > > Then you've probably got a different problem. The cache sync doesn't > > happen until final close, or system shutdown. > > Well, the following patch works just fine: > > *** /sys/cam/scsi/scsi_da.c.orig Thu Sep 17 22:19:58 1998 > --- /sys/cam/scsi/scsi_da.c Thu Sep 17 22:22:57 1998 > *************** > *** 358,363 **** > --- 358,364 ---- > > dsclose(dev, fmt, softc->dk_slices); > > + #if 0 > ccb = cam_periph_getccb(periph, /*priority*/1); > > scsi_synchronize_cache(&ccb->csio, > *************** > *** 374,379 **** > --- 375,381 ---- > /*sense_flags*/0, &softc->device_stats); > > xpt_release_ccb(ccb); > + #endif > > if ((softc->flags & DA_FLAG_PACK_REMOVABLE) != 0) { > daprevent(periph, PR_ALLOW); > > > In fact, I'm writing this mail from a machine with the above patch. I was > told by Justin that you were working on a quirk entry which would enable > to selectively turn off the above for certain disks, and I believe the > patch in the subject is it. Or am I mistaken? My two disks are: You're correct. It must be that we get a close during the boot process. > I believe the Quantum is at fault, but will know for sure later today, > when I get home from work. Try applying the attached patch against revision 1.10 of scsi_da.c. If your Quantum drive is at fault, this should have the same effect as your patch above. Ken -- Kenneth Merry ken@plutotech.com --ELM908293657-3005-0_ Content-Type: text/plain; charset=ISO-8859-1 Content-Disposition: attachment; filename=scsi_da.quantum_patch.101398 Content-Description: scsi_da.quantum_patch.101398 Content-Transfer-Encoding: 7bit ==== //depot/cam/sys/cam/scsi/scsi_da.c#86 - /usr/home/ken/perforce/cam/sys/cam/scsi/scsi_da.c ==== *** /tmp/tmp.23963.0 Tue Oct 13 09:43:52 1998 --- /usr/home/ken/perforce/cam/sys/cam/scsi/scsi_da.c Tue Oct 13 09:25:12 1998 *************** *** 138,143 **** --- 138,151 ---- */ {T_DIRECT, SIP_MEDIA_FIXED, "MICROP", "2217*", "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE + }, + { + /* + * Doesn't like the synchronize cache command. + * Reported by: Blaz Zupan + */ + {T_DIRECT, SIP_MEDIA_FIXED, "QUANTUM", "LPS540*", "*"}, + /*quirks*/ DA_Q_NO_SYNC_CACHE } }; --ELM908293657-3005-0_-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 08:48:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA07865 for cvs-all-outgoing; Tue, 13 Oct 1998 08:48:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from online.no (pilt-s.online.no [193.212.1.34]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA07798; Tue, 13 Oct 1998 08:48:14 -0700 (PDT) (envelope-from zerium@webindex.no) Received: from zerium.dyn.ml.org (ti01a26-0008.dialup.online.no [130.67.9.8]) by online.no (8.9.1/8.9.1) with ESMTP id RAA23693; Tue, 13 Oct 1998 17:47:43 +0200 (MET DST) Received: from localhost (zerium@localhost) by zerium.dyn.ml.org (8.9.1/8.9.1) with SMTP id RAA11246; Tue, 13 Oct 1998 17:44:36 +0200 (CEST) (envelope-from zerium@webindex.no) X-Authentication-Warning: zerium.dyn.ml.org: zerium owned process doing -bs Date: Tue, 13 Oct 1998 17:44:35 +0200 (CEST) From: Hans Petter Bieker X-Sender: zerium@zerium.dyn.ml.org To: Satoshi Asami cc: brian@Awfulhak.org, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/x11/kworldwatch Makefile In-Reply-To: <199810130631.XAA23009@silvia.hip.berkeley.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Mon, 12 Oct 1998, Satoshi Asami wrote: > configure:3017: checking for giflib > configure:3041: c++ -o conftest -O2 -Wall -s conftest.C -L/usr/local/kde/lib -L/ > usr/X11R6/lib -lgif -lX11 1>&5 > ld: -lgif: no match > === > > I don't know how to get that "-L/usr/local/kde/lib" to change.... Change HAS_CONFIGURE to GNU_CONFIGURE? Maybe you also need this: CONFIGURE_ARGS= --with-extra-includes=$(PREFIX)/include/giflib -bieker- Powered by FreeBSD 3.0. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 09:08:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA09813 for cvs-all-outgoing; Tue, 13 Oct 1998 09:08:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA09806; Tue, 13 Oct 1998 09:08:19 -0700 (PDT) (envelope-from ben@scientia.demon.co.uk) Received: from ben by scientia.demon.co.uk with local (Exim 2.05 #3) id 0zT6s3-0000Fz-00; Tue, 13 Oct 1998 17:00:23 +0100 Date: Tue, 13 Oct 1998 17:00:23 +0100 From: Ben Smithurst To: Satoshi Asami Cc: jseger@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/mail/imap-uw Makefile Message-ID: <19981013170023.B945@scientia.demon.co.uk> References: <19981012224830.A12660@scientia.demon.co.uk> <199810130434.VAA22732@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <199810130434.VAA22732@silvia.hip.berkeley.edu> User-Agent: Mutt/0.94.11i (FreeBSD 3.0-BETA i386) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Satoshi Asami wrote: > Thanks for the "fix", but really, the comment in the parenthesis was > uncalled for. Justin is trying to build 1,500+ packages in a short > period of time, and he simply doesn't have time to go look at each and > every breakage. I realise this, that comment was not really aimed at anyone in particular, certainly not Justin. Apologies if it looked that way. -- Ben Smithurst ben@scientia.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 09:23:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA11807 for cvs-all-outgoing; Tue, 13 Oct 1998 09:23:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA11799; Tue, 13 Oct 1998 09:23:28 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA16134; Tue, 13 Oct 1998 09:23:26 -0700 (PDT) Date: Tue, 13 Oct 1998 09:23:26 -0700 (PDT) Message-Id: <199810131623.JAA16134@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sbin/camcontrol camcontrol.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/13 09:23:26 PDT Modified files: sbin/camcontrol camcontrol.c Log: Fix a bug in camcontrol that caused 'camcontrol start' to not work. Noticed by: Philippe Regnauld Revision Changes Path 1.4 +1 -6 src/sbin/camcontrol/camcontrol.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 09:48:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA15023 for cvs-all-outgoing; Tue, 13 Oct 1998 09:48:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA14982; Tue, 13 Oct 1998 09:48:49 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA17029; Tue, 13 Oct 1998 09:48:43 -0700 (PDT) Date: Tue, 13 Oct 1998 09:48:43 -0700 (PDT) Message-Id: <199810131648.JAA17029@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/13 09:48:43 PDT Modified files: lib Makefile Log: Updated library order and comments about it. This fixes libm not being built before libf2c and libmd not being built before libatm. Revision Changes Path 1.82 +10 -6 src/lib/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 10:41:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA21999 for cvs-all-outgoing; Tue, 13 Oct 1998 10:41:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA21993; Tue, 13 Oct 1998 10:41:08 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA18649; Tue, 13 Oct 1998 10:41:07 -0700 (PDT) Date: Tue, 13 Oct 1998 10:41:07 -0700 (PDT) Message-Id: <199810131741.KAA18649@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/boot2 boot2.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/13 10:41:07 PDT Modified files: sys/boot/i386/boot2 boot2.c Log: Improve drive recognition and handling. Revision Changes Path 1.2 +40 -26 src/sys/boot/i386/boot2/boot2.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 11:29:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA26906 for cvs-all-outgoing; Tue, 13 Oct 1998 11:29:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA26896; Tue, 13 Oct 1998 11:29:20 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA20348; Tue, 13 Oct 1998 11:29:18 -0700 (PDT) Date: Tue, 13 Oct 1998 11:29:18 -0700 (PDT) Message-Id: <199810131829.LAA20348@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/boot0 Makefile src/sys/boot/i386/boot2 Makefile src/sys/boot/i386/btx/btx Makefile src/sys/boot/i386/btx/btxldr Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/13 11:29:18 PDT Modified files: sys/boot/i386/boot0 Makefile sys/boot/i386/boot2 Makefile sys/boot/i386/btx/btx Makefile sys/boot/i386/btx/btxldr Makefile Log: Don't use an absolute path to objcopy. Noticed by: Scott Mace Revision Changes Path 1.4 +2 -2 src/sys/boot/i386/boot0/Makefile 1.2 +3 -3 src/sys/boot/i386/boot2/Makefile 1.5 +2 -2 src/sys/boot/i386/btx/btx/Makefile 1.5 +2 -2 src/sys/boot/i386/btx/btxldr/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 11:33:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA27492 for cvs-all-outgoing; Tue, 13 Oct 1998 11:33:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from awfulhak.org (awfulhak.force9.co.uk [195.166.136.63]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA27482; Tue, 13 Oct 1998 11:33:10 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from woof.lan.awfulhak.org (root@woof.lan.awfulhak.org [172.16.0.7]) by awfulhak.org (8.8.8/8.8.8) with ESMTP id TAA24891; Tue, 13 Oct 1998 19:32:46 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from woof.lan.awfulhak.org (brian@localhost [127.0.0.1]) by woof.lan.awfulhak.org (8.9.1/8.9.1) with ESMTP id TAA02521; Tue, 13 Oct 1998 19:32:51 +0100 (BST) (envelope-from brian@woof.lan.awfulhak.org) Message-Id: <199810131832.TAA02521@woof.lan.awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: Hans Petter Bieker cc: Satoshi Asami , brian@Awfulhak.org, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/x11/kworldwatch Makefile In-reply-to: Your message of "Tue, 13 Oct 1998 17:44:35 +0200." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 13 Oct 1998 19:32:51 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > On Mon, 12 Oct 1998, Satoshi Asami wrote: > > > configure:3017: checking for giflib > > configure:3041: c++ -o conftest -O2 -Wall -s conftest.C -L/usr/local/kde/lib -L/ > > usr/X11R6/lib -lgif -lX11 1>&5 > > ld: -lgif: no match > > === > > > > I don't know how to get that "-L/usr/local/kde/lib" to change.... > > Change HAS_CONFIGURE to GNU_CONFIGURE? > > Maybe you also need this: > CONFIGURE_ARGS= --with-extra-includes=$(PREFIX)/include/giflib I'll look into why it works for me then (tomorrow). > -bieker- > > Powered by FreeBSD 3.0. > -- Brian , , Don't _EVER_ lose your sense of humour.... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 13:20:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA15301 for cvs-all-outgoing; Tue, 13 Oct 1998 13:20:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA15288; Tue, 13 Oct 1998 13:20:29 -0700 (PDT) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA23974; Tue, 13 Oct 1998 13:20:28 -0700 (PDT) Date: Tue, 13 Oct 1998 13:20:28 -0700 (PDT) Message-Id: <199810132020.NAA23974@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/timedef/data Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ache 1998/10/13 13:20:28 PDT Modified files: share/timedef/data Makefile Log: Make Australian time GB-like PR: 8302 Submitted by: Stephen McKay Revision Changes Path 1.28 +7 -2 src/share/timedef/data/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 13:42:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA19596 for cvs-all-outgoing; Tue, 13 Oct 1998 13:42:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA19591; Tue, 13 Oct 1998 13:42:03 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA24826; Tue, 13 Oct 1998 13:42:02 -0700 (PDT) Date: Tue, 13 Oct 1998 13:42:02 -0700 (PDT) Message-Id: <199810132042.NAA24826@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/libexec/ftpd ftpd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/10/13 13:42:01 PDT Modified files: libexec/ftpd ftpd.c Log: Set the user context correctly so that cd ~ does the right thing. PR: bin/7943 bin/8293 Submitted by: Bill Fenner Approved by: jkh Revision Changes Path 1.52 +4 -9 src/libexec/ftpd/ftpd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 14:04:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA23362 for cvs-all-outgoing; Tue, 13 Oct 1998 14:04:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA23264; Tue, 13 Oct 1998 14:03:59 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from root@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA25624; Tue, 13 Oct 1998 14:03:57 -0700 (PDT) Date: Tue, 13 Oct 1998 14:03:57 -0700 (PDT) Message-Id: <199810132103.OAA25624@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release doFS.sh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/13 14:03:57 PDT Modified files: release doFS.sh Log: Updates for Alpha. Revision Changes Path 1.16 +4 -4 src/release/doFS.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 14:09:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA24685 for cvs-all-outgoing; Tue, 13 Oct 1998 14:09:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA24666; Tue, 13 Oct 1998 14:09:45 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from root@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA25854; Tue, 13 Oct 1998 14:09:43 -0700 (PDT) Date: Tue, 13 Oct 1998 14:09:43 -0700 (PDT) Message-Id: <199810132109.OAA25854@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/13 14:09:43 PDT Modified files: release Makefile Log: Properly conditionalize more stuff for the ALPHA. Revision Changes Path 1.415 +11 -5 src/release/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 14:16:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA26291 for cvs-all-outgoing; Tue, 13 Oct 1998 14:16:01 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA26261; Tue, 13 Oct 1998 14:15:59 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA26054; Tue, 13 Oct 1998 14:15:57 -0700 (PDT) Date: Tue, 13 Oct 1998 14:15:57 -0700 (PDT) Message-Id: <199810132115.OAA26054@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/gifs fhp_mini.jpg Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/13 14:15:57 PDT Modified files: en/gifs Makefile Added files: en/gifs fhp_mini.jpg Log: Add freebsd "hardware partner" logo. Revision Changes Path 1.20 +4 -3 www/en/gifs/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 14:16:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA26522 for cvs-all-outgoing; Tue, 13 Oct 1998 14:16:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA26515; Tue, 13 Oct 1998 14:16:40 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA26110; Tue, 13 Oct 1998 14:16:38 -0700 (PDT) Date: Tue, 13 Oct 1998 14:16:38 -0700 (PDT) Message-Id: <199810132116.OAA26110@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/gallery gallery.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/13 14:16:38 PDT Modified files: en/gallery gallery.sgml Log: Add freebsd hardware partner logo Revision Changes Path 1.40 +3 -2 www/en/gallery/gallery.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 14:24:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA28552 for cvs-all-outgoing; Tue, 13 Oct 1998 14:24:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA28497; Tue, 13 Oct 1998 14:24:10 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-197.ix.netcom.com [209.109.234.197]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id OAA02637; Tue, 13 Oct 1998 14:23:33 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id OAA24927; Tue, 13 Oct 1998 14:23:29 -0700 (PDT) Date: Tue, 13 Oct 1998 14:23:29 -0700 (PDT) Message-Id: <199810132123.OAA24927@silvia.hip.berkeley.edu> To: brian@Awfulhak.org CC: zerium@webindex.no, brian@Awfulhak.org, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, jseger@FreeBSD.ORG In-reply-to: <199810131832.TAA02521@woof.lan.awfulhak.org> (message from Brian Somers on Tue, 13 Oct 1998 19:32:51 +0100) Subject: Re: cvs commit: ports/x11/kworldwatch Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * > Maybe you also need this: * > CONFIGURE_ARGS= --with-extra-includes=$(PREFIX)/include/giflib * * I'll look into why it works for me then (tomorrow). Thanks. Meanwhile, it did indeed fix the problem for me. Justin, here's the patch. Please credit it to "Hans Petter Bieker " in the commit message. Satoshi ------- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/x11/kworldwatch/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- Makefile 1998/10/10 04:52:24 1.10 +++ Makefile 1998/10/13 21:15:59 @@ -19,9 +19,7 @@ kdeui.1:${PORTSDIR}/x11/kdelibs \ kfm.1:${PORTSDIR}/x11/kdelibs -BROKEN= giflib - USE_QT= yes -HAS_CONFIGURE= yes +GNU_CONFIGURE= yes .include To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 14:29:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA29562 for cvs-all-outgoing; Tue, 13 Oct 1998 14:29:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA29551; Tue, 13 Oct 1998 14:29:07 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA26590; Tue, 13 Oct 1998 14:29:05 -0700 (PDT) Date: Tue, 13 Oct 1998 14:29:05 -0700 (PDT) Message-Id: <199810132129.OAA26590@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/cam cam_xpt.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/13 14:29:05 PDT Modified files: sys/cam cam_xpt.c Log: Fix a bug in the scan lun code that showed up when we did the following sequence of things: - spin up a disk - send an async event to refresh the inquiry data - run through xpt_scan_lun() to re-probe the device - eventually finish the probe, but panic in xpt_done() because the periph pointer wasn't set. Reviewed by: gibbs Reported by: Philippe Regnauld Revision Changes Path 1.20 +3 -2 src/sys/cam/cam_xpt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 14:35:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA01156 for cvs-all-outgoing; Tue, 13 Oct 1998 14:35:49 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA01142; Tue, 13 Oct 1998 14:35:45 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA26878; Tue, 13 Oct 1998 14:35:43 -0700 (PDT) Date: Tue, 13 Oct 1998 14:35:43 -0700 (PDT) Message-Id: <199810132135.OAA26878@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/boot2 Makefile boot1.s boot2.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/13 14:35:42 PDT Modified files: sys/boot/i386/boot2 Makefile boot1.s boot2.c Log: Change to a 15-sector boot2. Refine slice-handling. Revision Changes Path 1.3 +6 -5 src/sys/boot/i386/boot2/Makefile 1.2 +2 -2 src/sys/boot/i386/boot2/boot1.s 1.3 +24 -17 src/sys/boot/i386/boot2/boot2.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 14:36:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA01255 for cvs-all-outgoing; Tue, 13 Oct 1998 14:36:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA01249; Tue, 13 Oct 1998 14:36:15 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from root@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA26914; Tue, 13 Oct 1998 14:36:14 -0700 (PDT) Date: Tue, 13 Oct 1998 14:36:14 -0700 (PDT) Message-Id: <199810132136.OAA26914@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/13 14:36:14 PDT Modified files: release Makefile Log: More alpha patches. Revision Changes Path 1.416 +8 -3 src/release/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 14:37:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA01526 for cvs-all-outgoing; Tue, 13 Oct 1998 14:37:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA01515; Tue, 13 Oct 1998 14:37:32 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from root@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA27009; Tue, 13 Oct 1998 14:37:30 -0700 (PDT) Date: Tue, 13 Oct 1998 14:37:30 -0700 (PDT) Message-Id: <199810132137.OAA27009@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/13 14:37:30 PDT Modified files: release Makefile Log: whoops, correct patch-o in last commit. Revision Changes Path 1.417 +1 -2 src/release/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 14:38:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA01781 for cvs-all-outgoing; Tue, 13 Oct 1998 14:38:49 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA01775; Tue, 13 Oct 1998 14:38:48 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from root@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA27086; Tue, 13 Oct 1998 14:38:46 -0700 (PDT) Date: Tue, 13 Oct 1998 14:38:46 -0700 (PDT) Message-Id: <199810132138.OAA27086@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/alpha/conf GENERIC Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/13 14:38:46 PDT Modified files: sys/alpha/conf GENERIC Log: Sync up with some needed x86 options. Revision Changes Path 1.9 +3 -1 src/sys/alpha/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 14:40:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA02249 for cvs-all-outgoing; Tue, 13 Oct 1998 14:40:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA02215; Tue, 13 Oct 1998 14:40:34 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-197.ix.netcom.com [209.109.234.197]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id OAA02666; Tue, 13 Oct 1998 14:37:19 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id OAA24979; Tue, 13 Oct 1998 14:37:16 -0700 (PDT) Date: Tue, 13 Oct 1998 14:37:16 -0700 (PDT) Message-Id: <199810132137.OAA24979@silvia.hip.berkeley.edu> To: brian@Awfulhak.org, zerium@webindex.no, brian@Awfulhak.org, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, jseger@FreeBSD.ORG In-reply-to: <199810132123.OAA24927@silvia.hip.berkeley.edu> (asami@FreeBSD.ORG) Subject: Re: cvs commit: ports/x11/kworldwatch Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Seems I quoted the wrong part. This looks confusing. * * > Maybe you also need this: * * > CONFIGURE_ARGS= --with-extra-includes=$(PREFIX)/include/giflib * -BROKEN= giflib * - * USE_QT= yes * -HAS_CONFIGURE= yes * +GNU_CONFIGURE= yes The suggestion that I tried (as you can see from the patch, not the quote) was changing HAS_CONFIGURE to GNU_CONFIGURE. I didn't need those CONFIGURE_ARGS (it wasn't dying with header files anyway). Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 14:41:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA02555 for cvs-all-outgoing; Tue, 13 Oct 1998 14:41:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA02542; Tue, 13 Oct 1998 14:41:35 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA27181; Tue, 13 Oct 1998 14:41:33 -0700 (PDT) Date: Tue, 13 Oct 1998 14:41:33 -0700 (PDT) Message-Id: <199810132141.OAA27181@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/cam cam_periph.c cam_periph.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/13 14:41:33 PDT Modified files: sys/cam cam_periph.c cam_periph.h Log: Fix a bug in the error recovery code. It was possible to have more than one error recovery action oustanding for a given peripheral. This is bad for several reasons. The first problem is that the error recovery actions would likely be to fix the same problem. (e.g., we queue 5 CCBs to a disk, and the first one comes back with 0x04,0x02. We start error recovery, and the second one comes back with the same status. Then the third one comes back, and so on. Each one causes the drive to get nailed with a start unit, when we really only need one.) The other problem is that we only have space to store one CCB while we're doing error recovery. The subsequent error recovery actions that got started were over-writing the CCBs from previous error recovery actions, but we still tried to call the done routine N times for N error recovery actions. Each call to dadone() was done with the same CCB, though. So on the second one, we got a "biodone: buffer not busy" panic, since the buffer in question had already been through biodone(). In any case, this fixes things so that any any given time, there's only one error recovery action outstanding for any given peripheral driver. Reviewed by: gibbs Reported by: Philippe Regnauld [ Philippe wins the "bug finder of the week" award ] Revision Changes Path 1.4 +57 -1 src/sys/cam/cam_periph.c 1.2 +2 -1 src/sys/cam/cam_periph.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 14:51:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA04602 for cvs-all-outgoing; Tue, 13 Oct 1998 14:51:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from metal.intt.org (metal.intt.org [206.109.108.186]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA04585; Tue, 13 Oct 1998 14:51:48 -0700 (PDT) (envelope-from smace@metal.intt.org) Received: (from smace@localhost) by metal.intt.org (8.9.1/8.9.1) id QAA03715; Tue, 13 Oct 1998 16:51:32 -0500 (CDT) From: Scott Mace Message-Id: <199810132151.QAA03715@metal.intt.org> Subject: Re: cvs commit: src/libexec/rtld-elf rtld.c In-Reply-To: <199810130331.UAA14041@freefall.freebsd.org> from John Polstra at "Oct 12, 1998 8:31:59 pm" To: jdp@FreeBSD.ORG (John Polstra) Date: Tue, 13 Oct 1998 16:51:31 -0500 (CDT) Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > jdp 1998/10/12 20:31:59 PDT > > Modified files: > libexec/rtld-elf rtld.c > Log: > Fix a bug in dlclose that broke the apache13 port. The list of > loaded objects wasn't being maintained properly. > > Revision Changes Path > 1.12 +2 -1 src/libexec/rtld-elf/rtld.c > Is anyone working on fixing the apache13 ports to take advandatge of this fix? If not, I will... Scott To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 14:55:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA05146 for cvs-all-outgoing; Tue, 13 Oct 1998 14:55:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from austin.polstra.com (austin.polstra.com [206.213.73.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA05136; Tue, 13 Oct 1998 14:55:02 -0700 (PDT) (envelope-from jdp@austin.polstra.com) Received: from austin.polstra.com (jdp@localhost) by austin.polstra.com (8.9.1/8.9.1) with ESMTP id OAA18767; Tue, 13 Oct 1998 14:54:38 -0700 (PDT) (envelope-from jdp) Message-Id: <199810132154.OAA18767@austin.polstra.com> To: Scott Mace cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/libexec/rtld-elf rtld.c In-reply-to: Your message of "Tue, 13 Oct 1998 16:51:31 CDT." <199810132151.QAA03715@metal.intt.org> Date: Tue, 13 Oct 1998 14:54:38 -0700 From: John Polstra Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Is anyone working on fixing the apache13 ports to take advandatge of > this fix? If not, I will... I believe Dirk Froemberg and others are working on it. John To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 15:02:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA06179 for cvs-all-outgoing; Tue, 13 Oct 1998 15:02:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA06143; Tue, 13 Oct 1998 15:02:41 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA28103; Tue, 13 Oct 1998 15:02:39 -0700 (PDT) Date: Tue, 13 Oct 1998 15:02:39 -0700 (PDT) Message-Id: <199810132202.PAA28103@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sbin/camcontrol camcontrol.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/13 15:02:38 PDT Modified files: sbin/camcontrol camcontrol.c Log: When we send a stop unit command to a device, send it as an ordered tag so that any transactions in front of the stop command get flushed to disk first. This will have no effect on devices that have tagged queueing turned off, or don't support tagged queueing. Reviewed by: gibbs Revision Changes Path 1.5 +9 -2 src/sbin/camcontrol/camcontrol.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 15:17:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA07955 for cvs-all-outgoing; Tue, 13 Oct 1998 15:17:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA07949; Tue, 13 Oct 1998 15:17:07 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA28600; Tue, 13 Oct 1998 15:17:05 -0700 (PDT) Date: Tue, 13 Oct 1998 15:17:05 -0700 (PDT) Message-Id: <199810132217.PAA28600@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/boot2 boot2.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/13 15:17:05 PDT Modified files: sys/boot/i386/boot2 boot2.c Log: Adjust NDEV value. Optimize reading of system time. Revision Changes Path 1.4 +8 -11 src/sys/boot/i386/boot2/boot2.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 15:55:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA13901 for cvs-all-outgoing; Tue, 13 Oct 1998 15:55:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA13896; Tue, 13 Oct 1998 15:55:31 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA29831; Tue, 13 Oct 1998 15:55:30 -0700 (PDT) Date: Tue, 13 Oct 1998 15:55:30 -0700 (PDT) Message-Id: <199810132255.PAA29831@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/xntpd/doc tickadj.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/10/13 15:55:29 PDT Modified files: usr.sbin/xntpd/doc tickadj.8 Log: The adjtime man page is in section 2, not 8. PR: docs/8310 Submitted by: Amakawa Shuhei Revision Changes Path 1.6 +2 -2 src/usr.sbin/xntpd/doc/tickadj.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 15:58:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA14548 for cvs-all-outgoing; Tue, 13 Oct 1998 15:58:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA14502; Tue, 13 Oct 1998 15:58:18 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA29927; Tue, 13 Oct 1998 15:58:13 -0700 (PDT) Date: Tue, 13 Oct 1998 15:58:13 -0700 (PDT) Message-Id: <199810132258.PAA29927@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/xntpd/doc tickadj.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/10/13 15:58:13 PDT Modified files: (Branch: RELENG_2_2) usr.sbin/xntpd/doc tickadj.8 Log: MFC: The adjtime man page is in section 2, not 8. PR: docs/8310 Submitted by: Amakawa Shuhei Revision Changes Path 1.2.2.1 +2 -2 src/usr.sbin/xntpd/doc/tickadj.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 16:00:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA15189 for cvs-all-outgoing; Tue, 13 Oct 1998 16:00:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA15167; Tue, 13 Oct 1998 16:00:49 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA00233; Tue, 13 Oct 1998 16:00:47 -0700 (PDT) Date: Tue, 13 Oct 1998 16:00:47 -0700 (PDT) Message-Id: <199810132300.QAA00233@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/boot2 boot2.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/13 16:00:47 PDT Modified files: sys/boot/i386/boot2 boot2.c Log: Make v86.ctl default more explicit; simplify read error-handling; twiddle. Revision Changes Path 1.5 +26 -12 src/sys/boot/i386/boot2/boot2.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 16:04:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA16107 for cvs-all-outgoing; Tue, 13 Oct 1998 16:04:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA16102; Tue, 13 Oct 1998 16:04:43 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA00319; Tue, 13 Oct 1998 16:04:42 -0700 (PDT) Date: Tue, 13 Oct 1998 16:04:42 -0700 (PDT) Message-Id: <199810132304.QAA00319@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/moxftp Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 16:04:42 PDT Modified files: net/moxftp Makefile Log: Mark BROKEN for ELF: cc -O -I. -DAPP_RES=\"/usr/X11R6/lib/X11/app-defaults/Mftp\" -DNET_RC=\"/usr/X11R6/lib/X11/app-defaults/example.netrc\" -DRETSIGTYPE=void -DMOTIF -I/usr/X11R6/include -DHAVE_UNISTD_H=1 -D_NO_PROTO -c List.c List.c: In function `ListFocusIn': List.c:406: warning: passing arg 1 of `_XmPrimitiveFocusIn' from incompatible pointer type List.c:406: too few arguments to function `_XmPrimitiveFocusIn' List.c: In function `ListFocusOut': List.c:421: warning: passing arg 1 of `_XmPrimitiveFocusOut' from incompatible pointer type List.c:421: too few arguments to function `_XmPrimitiveFocusOut' Revision Changes Path 1.20 +3 -1 ports/net/moxftp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 16:09:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA16848 for cvs-all-outgoing; Tue, 13 Oct 1998 16:09:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA16832; Tue, 13 Oct 1998 16:09:22 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA00459; Tue, 13 Oct 1998 16:09:20 -0700 (PDT) Date: Tue, 13 Oct 1998 16:09:20 -0700 (PDT) Message-Id: <199810132309.QAA00459@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/STk Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 16:09:20 PDT Modified files: lang/STk Makefile Log: Mark BROKEN for ELF: cc -O -pipe -DSTK_VERSION=\"3.1.1\" -DMACHINE=\"FreeBSD-3.0-BETA-i386\" -DUSE_DYNLOAD -DUSE_TK -DSTk_CODE -DFREEBSD -DUSE_STKLOS -DHAVE_UNISTD_H=1 -DHAVE_LIMITS_H=1 -DHAVE_SIGACTION=1 -DHAVE_SELECT=1 -DSTDC_HEADERS=1 -I. -I../Tk/generic -I../Tk/unix -I../Tcl -I../Mp -I/usr/X11R6/include -o stk userinit.o libstk.a ../Mp/libgmp.a ../Tk/unix/libtk.a ../Tcl/libtcl.a ../Tcl/libevtcl.a -L/usr/X11R6/lib -lSM -lICE -lX11 -lm cc: ../Mp/libgmp.a: No such file or directory cc: ../Tk/unix/libtk.a: No such file or directory Revision Changes Path 1.15 +3 -1 ports/lang/STk/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 16:13:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA17571 for cvs-all-outgoing; Tue, 13 Oct 1998 16:13:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA17564; Tue, 13 Oct 1998 16:13:42 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA00616; Tue, 13 Oct 1998 16:13:40 -0700 (PDT) Date: Tue, 13 Oct 1998 16:13:40 -0700 (PDT) Message-Id: <199810132313.QAA00616@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/Sather Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 16:13:40 PDT Modified files: lang/Sather Makefile Log: Mark BROKEN for ELF: gcc -O2 -o ../cs globals.o code0.o code1.o code2.o code3.o code4.o code5.o code6.o code7.o code8.o code9.o code10.o ../../System/base.a ../../System/GC/gc.a -lm gcc: ../../System/GC/gc.a: No such file or directory *** Error code 1 Revision Changes Path 1.15 +3 -1 ports/lang/Sather/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 16:15:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA17822 for cvs-all-outgoing; Tue, 13 Oct 1998 16:15:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA17816; Tue, 13 Oct 1998 16:15:32 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA00699; Tue, 13 Oct 1998 16:15:30 -0700 (PDT) Date: Tue, 13 Oct 1998 16:15:30 -0700 (PDT) Message-Id: <199810132315.QAA00699@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/mpich Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 16:15:30 PDT Modified files: net/mpich Makefile Log: Mark BROKEN for CURRENT: /usr/ports/net/mpich/work/mpich/bin/mpicc -O -pipe -D__FREEBSD -O -D__NO_AIO -DFORTRANDOUBLEUNDERSCORE -D__NFS -D__UFS -D__NEEDS_MPI_TEST -D__MPICH -D__HAVE_MPI_LONG_LONG_INT=1 -D__HAS_MPI_INFO=1 -D__HAS_MPI_DARRAY_SUBARRAY=1 -I/usr/ports/net/mpich/work/mpich/include -I../../include -I../include -c ad_fstype.c ad_fstype.c: In function `ADIO_FileSysType': ad_fstype.c:94: `MOUNT_NFS' undeclared (first use this function) ad_fstype.c:94: (Each undeclared identifier is reported only once ad_fstype.c:94: for each function it appears in.) *** Error code 1 Revision Changes Path 1.4 +6 -1 ports/net/mpich/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 16:18:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA18183 for cvs-all-outgoing; Tue, 13 Oct 1998 16:18:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA18174; Tue, 13 Oct 1998 16:18:39 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA00879; Tue, 13 Oct 1998 16:18:38 -0700 (PDT) Date: Tue, 13 Oct 1998 16:18:38 -0700 (PDT) Message-Id: <199810132318.QAA00879@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/mpich Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 16:18:37 PDT Modified files: net/mpich Makefile Log: Fix typo in last commit Revision Changes Path 1.5 +2 -2 ports/net/mpich/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 16:25:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA19158 for cvs-all-outgoing; Tue, 13 Oct 1998 16:25:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA19147; Tue, 13 Oct 1998 16:25:10 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA01213; Tue, 13 Oct 1998 16:25:07 -0700 (PDT) Date: Tue, 13 Oct 1998 16:25:07 -0700 (PDT) Message-Id: <199810132325.QAA01213@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mail/imap-uw Makefile ports/mail/imap-uw/patches patch-ab ports/mail/imap-uw/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 16:25:07 PDT Modified files: mail/imap-uw Makefile mail/imap-uw/patches patch-ab mail/imap-uw/pkg PLIST Log: Unbreak. Subbmitted by: steve Revision Changes Path 1.19 +10 -5 ports/mail/imap-uw/Makefile 1.14 +22 -8 ports/mail/imap-uw/patches/patch-ab 1.6 +4 -3 ports/mail/imap-uw/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 Oct 13 16:31:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA20245 for cvs-all-outgoing; Tue, 13 Oct 1998 16:31:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA20233; Tue, 13 Oct 1998 16:31:52 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA01493; Tue, 13 Oct 1998 16:31:50 -0700 (PDT) Date: Tue, 13 Oct 1998 16:31:50 -0700 (PDT) Message-Id: <199810132331.QAA01493@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/deskutils/xopps Makefile ports/deskutils/xopps/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 16:31:50 PDT Modified files: deskutils/xopps Makefile deskutils/xopps/patches patch-aa Log: Unbreak. Submitted by: steve Revision Changes Path 1.7 +1 -3 ports/deskutils/xopps/Makefile 1.3 +6 -3 ports/deskutils/xopps/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 Oct 13 16:34:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA21140 for cvs-all-outgoing; Tue, 13 Oct 1998 16:34:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA21123; Tue, 13 Oct 1998 16:34:52 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA01647; Tue, 13 Oct 1998 16:34:50 -0700 (PDT) Date: Tue, 13 Oct 1998 16:34:50 -0700 (PDT) Message-Id: <199810132334.QAA01647@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11/kworldwatch Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 16:34:50 PDT Modified files: x11/kworldwatch Makefile Log: Unbreak. Submitted by: Hans Petter Bieker via asami Revision Changes Path 1.11 +2 -4 ports/x11/kworldwatch/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 16:35:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA21187 for cvs-all-outgoing; Tue, 13 Oct 1998 16:35:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA21135; Tue, 13 Oct 1998 16:34:56 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA01663; Tue, 13 Oct 1998 16:34:54 -0700 (PDT) Date: Tue, 13 Oct 1998 16:34:54 -0700 (PDT) Message-Id: <199810132334.QAA01663@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/cam/scsi scsi_da.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/13 16:34:54 PDT Modified files: sys/cam/scsi scsi_da.c Log: Disable cache syncs for a broken NEC drive. Reviewed by: gibbs Submitted by: Blaz Zupan Revision Changes Path 1.11 +9 -1 src/sys/cam/scsi/scsi_da.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 16:37:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA21568 for cvs-all-outgoing; Tue, 13 Oct 1998 16:37:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA21546; Tue, 13 Oct 1998 16:37:08 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA01764; Tue, 13 Oct 1998 16:37:06 -0700 (PDT) Date: Tue, 13 Oct 1998 16:37:06 -0700 (PDT) Message-Id: <199810132337.QAA01764@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/textproc/glimpse Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 16:37:06 PDT Modified files: textproc/glimpse Makefile Log: Unbreak. Submitted by: Ben Smithurst Revision Changes Path 1.14 +2 -3 ports/textproc/glimpse/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 16:43:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA22311 for cvs-all-outgoing; Tue, 13 Oct 1998 16:43:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA22300; Tue, 13 Oct 1998 16:43:40 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA01976; Tue, 13 Oct 1998 16:43:38 -0700 (PDT) Date: Tue, 13 Oct 1998 16:43:38 -0700 (PDT) Message-Id: <199810132343.QAA01976@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/boot2 boot2.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/13 16:43:38 PDT Modified files: sys/boot/i386/boot2 boot2.c Log: Fix flow of control after directory listing; enable EDD support; cosmetics. Revision Changes Path 1.6 +5 -4 src/sys/boot/i386/boot2/boot2.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 16:44:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA22430 for cvs-all-outgoing; Tue, 13 Oct 1998 16:44:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA22422; Tue, 13 Oct 1998 16:44:05 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA02046; Tue, 13 Oct 1998 16:44:03 -0700 (PDT) Date: Tue, 13 Oct 1998 16:44:03 -0700 (PDT) Message-Id: <199810132344.QAA02046@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/print/mgv Makefile ports/print/mgv/files md5 ports/print/mgv/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 16:44:03 PDT Modified files: print/mgv Makefile print/mgv/files md5 Added files: print/mgv/patches patch-aa Log: Unbreak and upgrade to version 3.1.5 Submitted by: John Fieber Revision Changes Path 1.11 +3 -5 ports/print/mgv/Makefile 1.5 +1 -1 ports/print/mgv/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 Oct 13 16:45:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA22523 for cvs-all-outgoing; Tue, 13 Oct 1998 16:45:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA22518; Tue, 13 Oct 1998 16:45:17 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA02087; Tue, 13 Oct 1998 16:45:15 -0700 (PDT) Date: Tue, 13 Oct 1998 16:45:15 -0700 (PDT) Message-Id: <199810132345.QAA02087@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/caml-light Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 16:45:15 PDT Modified files: lang/caml-light Makefile Log: Mark BROKEN for ELF: cp bignum/libbignum.a libnums.a cp: bignum/libbignum.a: No such file or directory *** Error code 1 Revision Changes Path 1.3 +3 -1 ports/lang/caml-light/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 16:46:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA22827 for cvs-all-outgoing; Tue, 13 Oct 1998 16:46:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA22803; Tue, 13 Oct 1998 16:46:20 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA02147; Tue, 13 Oct 1998 16:46:16 -0700 (PDT) Date: Tue, 13 Oct 1998 16:46:16 -0700 (PDT) Message-Id: <199810132346.QAA02147@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/pmf Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 16:46:16 PDT Modified files: net/pmf Makefile Log: Mark BROKEN for ELF: cc -o pmf -O2 -D_ANSI_SOURCE main.o ipc.o use_ipc.o alias.o error.o get_input.o do_commands.o misc.o display.o signals.o help.o tty.o variables.o robot.o word_split.o line_split.o globals.o apply.o handle_cmd.o dollar_match.o gag.o cryptsay.o putget.o xmode.o compile_time.o rl_history.o c_packages/libc_packs.a -lreadline -lcompat -ltermcap cc: c_packages/libc_packs.a: No such file or directory *** Error code 1 Revision Changes Path 1.10 +4 -1 ports/net/pmf/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 16:51:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA23551 for cvs-all-outgoing; Tue, 13 Oct 1998 16:51:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA23546; Tue, 13 Oct 1998 16:51:43 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA02300; Tue, 13 Oct 1998 16:51:42 -0700 (PDT) Date: Tue, 13 Oct 1998 16:51:42 -0700 (PDT) Message-Id: <199810132351.QAA02300@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/cim Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 16:51:41 PDT Modified files: lang/cim Makefile Log: Mark BROKEN for ELF: ===> Building package for cim-2.10 Creating package /usr/ports/packages/All/cim-2.10.tgz Registering depends:. Creating gzip'd tar ball in '/usr/ports/packages/All/cim-2.10.tgz' tar: can't add file lib/libcim.so.1 : No such file or directory /usr/sbin/pkg_create: tar command failed with code 256 Revision Changes Path 1.7 +4 -1 ports/lang/cim/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 16:52:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA23736 for cvs-all-outgoing; Tue, 13 Oct 1998 16:52:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA23731; Tue, 13 Oct 1998 16:52:49 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA02381; Tue, 13 Oct 1998 16:52:47 -0700 (PDT) Date: Tue, 13 Oct 1998 16:52:47 -0700 (PDT) Message-Id: <199810132352.QAA02381@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/sysutils/xsysinfo/patches patch-ae Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 16:52:47 PDT Modified files: sysutils/xsysinfo/patches patch-ae Log: Unbreak for current. Suvbmitted by: Gary Jennejohn Revision Changes Path 1.2 +23 -5 ports/sysutils/xsysinfo/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 Oct 13 16:53:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA23829 for cvs-all-outgoing; Tue, 13 Oct 1998 16:53:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA23809; Tue, 13 Oct 1998 16:53:31 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA02419; Tue, 13 Oct 1998 16:53:28 -0700 (PDT) Date: Tue, 13 Oct 1998 16:53:28 -0700 (PDT) Message-Id: <199810132353.QAA02419@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/pppload Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 16:53:28 PDT Modified files: net/pppload Makefile Log: Mark BROKEN for ElF: g++ pppload.o PPPStats.o MainWindow.o Options.o mPPPStats.o mMainWindow.o -o ppp load -L/usr/X11R6/lib -lqt /usr/libexec/elf/ld: warning: libX11.so.6, needed by /usr/X11R6/lib/libqt.so, no t found (try using --rpath) /usr/X11R6/lib/libqt.so: undefined reference to `XFreePixmap' /usr/X11R6/lib/libqt.so: undefined reference to `XSetInputFocus' Revision Changes Path 1.7 +3 -1 ports/net/pppload/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 16:58:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA24959 for cvs-all-outgoing; Tue, 13 Oct 1998 16:58:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA24948; Tue, 13 Oct 1998 16:58:35 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA02529; Tue, 13 Oct 1998 16:58:33 -0700 (PDT) Date: Tue, 13 Oct 1998 16:58:33 -0700 (PDT) Message-Id: <199810132358.QAA02529@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/deskutils/plan Makefile ports/deskutils/plan/patches patch-ab Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 16:58:33 PDT Modified files: deskutils/plan Makefile deskutils/plan/patches patch-ab Log: Unbreak. Submitted by: John Fieber Revision Changes Path 1.13 +1 -3 ports/deskutils/plan/Makefile 1.8 +2 -2 ports/deskutils/plan/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 Oct 13 17:05:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA26759 for cvs-all-outgoing; Tue, 13 Oct 1998 17:05:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA26739; Tue, 13 Oct 1998 17:05:46 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA02715; Tue, 13 Oct 1998 17:05:44 -0700 (PDT) Date: Tue, 13 Oct 1998 17:05:44 -0700 (PDT) Message-Id: <199810140005.RAA02715@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/sysutils/xperfmon/files freebsd_system.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 17:05:44 PDT Modified files: sysutils/xperfmon/files freebsd_system.c Log: Unbreak for current. Submitted by: Gary Jennejohn Revision Changes Path 1.5 +8 -2 ports/sysutils/xperfmon/files/freebsd_system.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 17:09:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA27390 for cvs-all-outgoing; Tue, 13 Oct 1998 17:09:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA27356; Tue, 13 Oct 1998 17:08:51 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA02797; Tue, 13 Oct 1998 17:08:48 -0700 (PDT) Date: Tue, 13 Oct 1998 17:08:48 -0700 (PDT) Message-Id: <199810140008.RAA02797@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/dylan Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 17:08:48 PDT Modified files: lang/dylan Makefile Log: Mark BROKEN for ELF: dylan-heap.s:64290: Error: Alignment not a power of 2 dylan-heap.s:64297: Error: Alignment not a power of 2 gmake[4]: *** [dylan-heap.o] Error 1 gmake[4]: Leaving directory `/usr/ports/lang/dylan/work/src/d2c/runtime/dylan' gmake failed? Abort trap - core dumped gmake[3]: *** [dylan.lib.du] Error 134 gmake[3]: Leaving directory `/usr/ports/lang/dylan/work/src/d2c/runtime/dylan' gmake[2]: *** [compile] Error 2 Revision Changes Path 1.4 +3 -1 ports/lang/dylan/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 17:10:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA27727 for cvs-all-outgoing; Tue, 13 Oct 1998 17:10:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA27659; Tue, 13 Oct 1998 17:10:19 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA02867; Tue, 13 Oct 1998 17:10:17 -0700 (PDT) Date: Tue, 13 Oct 1998 17:10:17 -0700 (PDT) Message-Id: <199810140010.RAA02867@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/rdist6 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 17:10:17 PDT Modified files: net/rdist6 Makefile Log: Mark BROKEN for CURRENT: cc -O -pipe -DOS_H=\"os-freebsd2.h\" -I. -I../include -I../config -c filesys-os.c filesys-os.c: In function `getmountent': filesys-os.c:183: `MOUNT_NFS' undeclared (first use this function) filesys-os.c:183: (Each undeclared identifier is reported only once filesys-os.c:183: for each function it appears in.) filesys-os.c:188: warning: unreachable code at beginning of switch statement *** Error code 1 Revision Changes Path 1.15 +6 -1 ports/net/rdist6/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 17:19:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA29076 for cvs-all-outgoing; Tue, 13 Oct 1998 17:19:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA29070; Tue, 13 Oct 1998 17:19:04 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA03169; Tue, 13 Oct 1998 17:19:03 -0700 (PDT) Date: Tue, 13 Oct 1998 17:19:03 -0700 (PDT) Message-Id: <199810140019.RAA03169@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/editors/vim5 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 17:19:03 PDT Modified files: editors/vim5 Makefile Log: If you try to build Vim using Lesstif for Motif, the resulting GUI version is unstable. Due to a minor bug in my Makefile, Vim will build for Motif even if you don't have HAVE_MOTIF defined, but do have Lesstif already installed. Submitted by: obrien Revision Changes Path 1.30 +2 -2 ports/editors/vim5/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 17:19:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA29135 for cvs-all-outgoing; Tue, 13 Oct 1998 17:19:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA29130; Tue, 13 Oct 1998 17:19:58 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA03214; Tue, 13 Oct 1998 17:19:57 -0700 (PDT) Date: Tue, 13 Oct 1998 17:19:57 -0700 (PDT) Message-Id: <199810140019.RAA03214@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/rwhois Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 17:19:56 PDT Modified files: net/rwhois Makefile Log: Mark BROKEN for ELF. cc -c -O -pipe -I.. -DRWHOIS_SERVER_VERSION=\"1.0B9.2\" -DAUTHORIZATION_ON -DHAVE_CONFIG_H misc.c misc.c: In function `run_program': misc.c:383: function `__error' is initialized like a variable *** Error code 1 Revision Changes Path 1.4 +3 -1 ports/net/rwhois/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 17:24:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA00182 for cvs-all-outgoing; Tue, 13 Oct 1998 17:24:20 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA00177; Tue, 13 Oct 1998 17:24:18 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA03427; Tue, 13 Oct 1998 17:24:16 -0700 (PDT) Date: Tue, 13 Oct 1998 17:24:16 -0700 (PDT) Message-Id: <199810140024.RAA03427@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/boot2 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/13 17:24:16 PDT Modified files: sys/boot/i386/boot2 Makefile Log: Include . Add install target (to /boot for now). Revision Changes Path 1.4 +18 -5 src/sys/boot/i386/boot2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 17:24:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA00238 for cvs-all-outgoing; Tue, 13 Oct 1998 17:24:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA00223; Tue, 13 Oct 1998 17:24:25 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA03454; Tue, 13 Oct 1998 17:24:24 -0700 (PDT) Date: Tue, 13 Oct 1998 17:24:24 -0700 (PDT) Message-Id: <199810140024.RAA03454@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/mail/tkrat Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 17:24:24 PDT Modified files: mail/tkrat Makefile Log: Unbreak for elf after imap fix. Pointed out by: steve Revision Changes Path 1.11 +1 -3 ports/mail/tkrat/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 17:26:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA00920 for cvs-all-outgoing; Tue, 13 Oct 1998 17:26:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA00905; Tue, 13 Oct 1998 17:26:52 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA03566; Tue, 13 Oct 1998 17:26:50 -0700 (PDT) Date: Tue, 13 Oct 1998 17:26:50 -0700 (PDT) Message-Id: <199810140026.RAA03566@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/sharity-light Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 17:26:50 PDT Modified files: net/sharity-light Makefile Log: Mark BROKEN for current: cc -O -pipe -c unshlight.c unshlight.c: In function `main': unshlight.c:53: `MOUNT_NFS' undeclared (first use this function) unshlight.c:53: (Each undeclared identifier is reported only once unshlight.c:53: for each function it appears in.) *** Error code 1 Revision Changes Path 1.7 +6 -1 ports/net/sharity-light/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 17:41:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA02843 for cvs-all-outgoing; Tue, 13 Oct 1998 17:41:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA02834; Tue, 13 Oct 1998 17:41:20 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA04027; Tue, 13 Oct 1998 17:41:18 -0700 (PDT) Date: Tue, 13 Oct 1998 17:41:18 -0700 (PDT) Message-Id: <199810140041.RAA04027@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/common boot.c load_elf.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/13 17:41:17 PDT Modified files: sys/boot/common boot.c load_elf.c Log: Tweak the output one more time again. The kernel or module pathname is useful, and usually fits all on one line with the load sizes. Revision Changes Path 1.7 +3 -3 src/sys/boot/common/boot.c 1.6 +3 -2 src/sys/boot/common/load_elf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 17:42:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA02933 for cvs-all-outgoing; Tue, 13 Oct 1998 17:42:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA02920; Tue, 13 Oct 1998 17:42:04 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from root@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA04085; Tue, 13 Oct 1998 17:42:03 -0700 (PDT) Date: Tue, 13 Oct 1998 17:42:03 -0700 (PDT) Message-Id: <199810140042.RAA04085@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/alpha/conf GENERIC Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/13 17:42:03 PDT Modified files: sys/alpha/conf GENERIC Log: DB_ELF_SYMBOLS doesn't appear to do anything yet, or if it does it's not been added to the appropriate options file. Comment it out to prevent config(8) warnings. Revision Changes Path 1.10 +2 -2 src/sys/alpha/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 18:05:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA07028 for cvs-all-outgoing; Tue, 13 Oct 1998 18:05:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA06993; Tue, 13 Oct 1998 18:04:47 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA04772; Tue, 13 Oct 1998 18:04:45 -0700 (PDT) Date: Tue, 13 Oct 1998 18:04:45 -0700 (PDT) Message-Id: <199810140104.SAA04772@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall config.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/13 18:04:45 PDT Modified files: release/sysinstall config.c Log: Don't generate a spam-friendly /etc/hosts by default. Suggested by: jmb Revision Changes Path 1.114 +5 -2 src/release/sysinstall/config.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 18:17:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA09330 for cvs-all-outgoing; Tue, 13 Oct 1998 18:17:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA09324; Tue, 13 Oct 1998 18:17:52 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA05077; Tue, 13 Oct 1998 18:17:50 -0700 (PDT) Date: Tue, 13 Oct 1998 18:17:50 -0700 (PDT) Message-Id: <199810140117.SAA05077@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/gcl Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 18:17:50 PDT Modified files: lang/gcl Makefile Log: Mark BROKEN for ELF: cd unixport; make saved_gcl) ../xbin/if-exists /usr/u9/wfs/schelter "../xbin/inc-version" ../xbin/if-exists saved_gcl "rm -f saved_gcl" cat init_gcl.lsp | sed -e "s"DATE"Version(`cat ../majvers`.`cat ../minvers`) `date`g" -e 'ssaved_gclsaved_gclg' -e 'slinks t)links t)(setq compiler::*cc* "gcc -pipe -O -fwritable-strings -fomit-frame-pointer -DVOL=volatile -I/usr/ports/lang/gcl/work/gcl-2.2.2/o -I/usr/local/lib/gcl-2.2.2/h -fsigned-char")(si::build-symbol-table)g' -e "sGCLDIR/usr/ports/lang/gcl/work/gcl-2.2.2g" -e "s(defun lisp-imp(setq si::*gcl-version* `cat ../minvers` si::*gcl-major-version* `cat ../majvers`)(defun lisp-impg" -e "s:GCL-1:GCL-"`cat ../majvers`":g" > foo ../unixport/raw_gcl ../unixport/ -libdir /usr/ports/lang/gcl/work/gcl-2.2.2/ < foo GCL (GNU Common Lisp) April 1994 32768 pages Unrecoverable error: GBC is not enabled. Abort trap - core dumped *** Error code 134 Revision Changes Path 1.11 +3 -1 ports/lang/gcl/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 18:18:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA09539 for cvs-all-outgoing; Tue, 13 Oct 1998 18:18:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA09534; Tue, 13 Oct 1998 18:18:51 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA05127; Tue, 13 Oct 1998 18:18:49 -0700 (PDT) Date: Tue, 13 Oct 1998 18:18:49 -0700 (PDT) Message-Id: <199810140118.SAA05127@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/slirp Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 18:18:49 PDT Modified files: net/slirp Makefile Log: Mark BROKEN for current: cc -I. -I. -DUSE_PPP -O -pipe -O2 -Wall -Wno-implicit -Wmissing-prototypes -c ./tcp_subr.c ./tcp_subr.c:241: parse error before `(' ./tcp_subr.c:244: parse error before `{' ./tcp_subr.c:250: parse error before `if' *** Error code 1 Revision Changes Path 1.9 +6 -1 ports/net/slirp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 18:20:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA09723 for cvs-all-outgoing; Tue, 13 Oct 1998 18:20:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA09713; Tue, 13 Oct 1998 18:20:24 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA05199; Tue, 13 Oct 1998 18:20:22 -0700 (PDT) Date: Tue, 13 Oct 1998 18:20:22 -0700 (PDT) Message-Id: <199810140120.SAA05199@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/guavac Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 18:20:22 PDT Modified files: lang/guavac Makefile Log: Mark BROKEN for ELF: depends on glibstdc++28 Revision Changes Path 1.9 +3 -1 ports/lang/guavac/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 18:22:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA09908 for cvs-all-outgoing; Tue, 13 Oct 1998 18:22:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA09897; Tue, 13 Oct 1998 18:22:02 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA05265; Tue, 13 Oct 1998 18:22:01 -0700 (PDT) Date: Tue, 13 Oct 1998 18:22:01 -0700 (PDT) Message-Id: <199810140122.SAA05265@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/smbtcpdump Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 18:22:01 PDT Modified files: net/smbtcpdump Makefile Log: Mark BROKEN for current: cc -O2 -DHAVE_FCNTL_H=1 -DHAVE_NET_SLIP_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_ETHER_NTOA=1 -DHAVE_SETLINEBUF=1 -DSTDC_HEADERS=1 -DRETSIGTYPE=void -DRETSIGVAL= -DHAVE_SOCKADDR_SA_LEN=1 -DHAVE_TM_GMTOFF=1 -DLBL_ALIGN=1 -DPPP -DHAVE_FDDI -I. -c print-domain.c print-domain.c:219: `T_UINFO' undeclared here (not in a function) print-domain.c:219: initializer element for `type2str[29].v' is not constant print-domain.c:220: `T_UID' undeclared here (not in a function) print-domain.c:220: initializer element for `type2str[30].v' is not constant print-domain.c:221: `T_GID' undeclared here (not in a function) print-domain.c:221: initializer element for `type2str[31].v' is not constant *** Error code 1 Revision Changes Path 1.2 +6 -1 ports/net/smbtcpdump/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 18:32:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA11214 for cvs-all-outgoing; Tue, 13 Oct 1998 18:32:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA11207; Tue, 13 Oct 1998 18:32:26 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA05534; Tue, 13 Oct 1998 18:32:24 -0700 (PDT) Date: Tue, 13 Oct 1998 18:32:24 -0700 (PDT) Message-Id: <199810140132.SAA05534@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/math/pari Makefile ports/math/pari/patches patch-ae Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 18:32:24 PDT Modified files: math/pari Makefile Added files: math/pari/patches patch-ae Log: Unbreak. Revision Changes Path 1.3 +1 -3 ports/math/pari/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 18:36:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA11886 for cvs-all-outgoing; Tue, 13 Oct 1998 18:36:20 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freebsd.scds.com (jseger.shore.net [204.167.102.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA11871; Tue, 13 Oct 1998 18:36:12 -0700 (PDT) (envelope-from jseger@jseger.scds.com) Received: from jseger.scds.com (localhost.scds.com [127.0.0.1]) by freebsd.scds.com (8.9.1/8.8.8) with ESMTP id VAA02915; Tue, 13 Oct 1998 21:36:00 -0400 (EDT) (envelope-from jseger@jseger.scds.com) Message-Id: <199810140136.VAA02915@freebsd.scds.com> To: "Justin M. Seger" cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/math/pari Makefile ports/math/pari/patches patch-ae In-reply-to: Your message of "Tue, 13 Oct 1998 18:32:24 PDT." <199810140132.SAA05534@freefall.freebsd.org> Date: Tue, 13 Oct 1998 21:36:00 -0400 From: "Justin M. Seger" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > jseger 1998/10/13 18:32:24 PDT > > Modified files: > math/pari Makefile > Added files: > math/pari/patches patch-ae > Log: > Unbreak. Sorry. Submitted by: steve -Justin Seger- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 18:40:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA12564 for cvs-all-outgoing; Tue, 13 Oct 1998 18:40:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA12474; Tue, 13 Oct 1998 18:40:07 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA05788; Tue, 13 Oct 1998 18:40:05 -0700 (PDT) Date: Tue, 13 Oct 1998 18:40:05 -0700 (PDT) Message-Id: <199810140140.SAA05788@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/mit-scheme Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 18:40:05 PDT Modified files: lang/mit-scheme Makefile Log: Mark BROKEN for ELF: gcc -o scheme cmpauxmd.o cmpint.o artutl.o avltree.o bignum.o bigprm.o bitstr.o boot.o char.o comutl.o daemon.o debug.o dfloat.o error.o extern.o fasload.o fix num.o flonum.o generic.o hooks.o hunk.o intern.o interp.o intprm.o list.o lookpr m.o lookup.o obstack.o option.o osscheme.o ostty.o outf.o prim.o primutl.o prmco n.o ptrvec.o purutl.o regex.o rgxprim.o step.o storage.o string.o syntax.o syspr im.o term.o transact.o utils.o vector.o wind.o fasdump.o gcloop.o memmag.o purif y.o intext.o ux.o uxctty.o uxenv.o uxfile.o uxfs.o uxio.o uxproc.o uxsig.o uxsoc k.o uxterm.o uxtop.o uxtrap.o uxtty.o uxutil.o prosenv.o prosfile.o prosfs.o pro sio.o prosproc.o prospty.o prosterm.o prostty.o pruxenv.o pruxfs.o pruxio.o prux sock.o usrdef.o x11base.o x11term.o x11graph.o x11color.o tparam.o tterm.o missing.o -L/usr/X11R6/lib -lX11 -ltermcap -lm cmpauxmd.o(.text+0x5a): undefined reference to `_Ext_Stack_Pointer' cmpauxmd.o(.text+0x60): undefined reference to `_Free' cmpauxmd.o(.text+0x7d): undefined reference to `_utility_table' cmpauxmd.o(.text+0x8a): undefined reference to `_Free' cmpauxmd.o(.text+0x98): undefined reference to `_Ext_Stack_Pointer' Revision Changes Path 1.11 +3 -1 ports/lang/mit-scheme/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 18:53:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA14478 for cvs-all-outgoing; Tue, 13 Oct 1998 18:53:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA14473; Tue, 13 Oct 1998 18:53:58 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA06290; Tue, 13 Oct 1998 18:53:56 -0700 (PDT) Date: Tue, 13 Oct 1998 18:53:56 -0700 (PDT) Message-Id: <199810140153.SAA06290@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/boot2 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/13 18:53:56 PDT Modified files: sys/boot/i386/boot2 Makefile Log: Fix btx include path. Revision Changes Path 1.5 +2 -2 src/sys/boot/i386/boot2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 18:55:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA14846 for cvs-all-outgoing; Tue, 13 Oct 1998 18:55:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from sicily.odyssey.cs.cmu.edu (SICILY.ODYSSEY.CS.CMU.EDU [128.2.185.138]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id SAA14839; Tue, 13 Oct 1998 18:55:15 -0700 (PDT) (envelope-from rvb+@sicily.odyssey.cs.cmu.edu) To: "Justin M. Seger" Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/net/rdist6 Makefile References: <199810140010.RAA02867@freefall.freebsd.org> From: "Robert V. Baron" Date: 13 Oct 1998 21:54:44 -0400 In-Reply-To: "Justin M. Seger"'s message of Tue, 13 Oct 1998 17:10:17 -0700 (PDT) Message-ID: Lines: 26 X-Mailer: Gnus v5.4.46/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Justin M. Seger" writes: > jseger 1998/10/13 17:10:17 PDT > > Modified files: > net/rdist6 Makefile > Log: > Mark BROKEN for CURRENT: > cc -O -pipe -DOS_H=\"os-freebsd2.h\" -I. -I../include -I../config -c filesys-os.c > filesys-os.c: In function `getmountent': > filesys-os.c:183: `MOUNT_NFS' undeclared (first use this function) > filesys-os.c:183: (Each undeclared identifier is reported only once > filesys-os.c:183: for each function it appears in.) > filesys-os.c:188: warning: unreachable code at beginning of switch statement > *** Error code 1 > > Revision Changes Path > 1.15 +6 -1 ports/net/rdist6/Makefile It should be possible to just change MOUNT_NFS to "nfs" and all should be ok. The run of Manifest constants MOUNT_<> no longer exists. They used to be indexes, but you can use strings instead. PS How is/did coda_* go? Can you point me at the packages and I'll test them? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 19:13:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA18269 for cvs-all-outgoing; Tue, 13 Oct 1998 19:13:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA18263; Tue, 13 Oct 1998 19:13:48 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA06812; Tue, 13 Oct 1998 19:13:46 -0700 (PDT) Date: Tue, 13 Oct 1998 19:13:46 -0700 (PDT) Message-Id: <199810140213.TAA06812@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/13 19:13:46 PDT Modified files: release Makefile Log: Fix more bogons revealed by building alpha boot floppies. Revision Changes Path 1.418 +6 -1 src/release/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 19:44:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA21275 for cvs-all-outgoing; Tue, 13 Oct 1998 19:44:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA21270; Tue, 13 Oct 1998 19:44:12 -0700 (PDT) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA07661; Tue, 13 Oct 1998 19:44:10 -0700 (PDT) Date: Tue, 13 Oct 1998 19:44:10 -0700 (PDT) Message-Id: <199810140244.TAA07661@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall/help trouble.hlp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/10/13 19:44:10 PDT Modified files: release/sysinstall/help trouble.hlp Log: Add a description of the "panic: cannot mount root" post-install problem, and some ways to work around it. Revision Changes Path 1.4 +95 -27 src/release/sysinstall/help/trouble.hlp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 19:59:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA22534 for cvs-all-outgoing; Tue, 13 Oct 1998 19:59:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA22528; Tue, 13 Oct 1998 19:59:20 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA08000; Tue, 13 Oct 1998 19:59:18 -0700 (PDT) Date: Tue, 13 Oct 1998 19:59:18 -0700 (PDT) Message-Id: <199810140259.TAA08000@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/mocka Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 19:59:18 PDT Modified files: lang/mocka Makefile Log: Mark BROKEN for ELF: .. Linking tst /usr/libexec/elf/ld: cannot open /usr/lib/crt0.o: No such file or directory Linking terminated with error. >> test -x /usr/ports/lang/mocka/work/mocka/lib/tst gmake: *** [/usr/ports/lang/mocka/work/mocka/lib/tst] Error 1 *** Error code 2 Revision Changes Path 1.5 +3 -1 ports/lang/mocka/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 20:00:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA22758 for cvs-all-outgoing; Tue, 13 Oct 1998 20:00:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA22753; Tue, 13 Oct 1998 20:00:50 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA08077; Tue, 13 Oct 1998 20:00:45 -0700 (PDT) Date: Tue, 13 Oct 1998 20:00:45 -0700 (PDT) Message-Id: <199810140300.UAA08077@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-toolkits/blt Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 20:00:45 PDT Modified files: x11-toolkits/blt Makefile Log: Mark BROKEN for ELF: ===> Building package for blt-2.4f Creating package /usr/ports/packages/All/blt-2.4f.tgz Registering depends: tcl-8.0.2 tk-8.0.2. Creating gzip'd tar ball in '/usr/ports/packages/All/blt-2.4f.tgz' tar: can't add file lib/libBLT.so.2 : No such file or directory /usr/sbin/pkg_create: tar command failed with code 256 *** Error code 1 Revision Changes Path 1.22 +3 -1 ports/x11-toolkits/blt/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 20:01:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA22925 for cvs-all-outgoing; Tue, 13 Oct 1998 20:01:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA22918; Tue, 13 Oct 1998 20:01:17 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA08120; Tue, 13 Oct 1998 20:01:15 -0700 (PDT) Date: Tue, 13 Oct 1998 20:01:15 -0700 (PDT) Message-Id: <199810140301.UAA08120@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/ttt Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 20:01:15 PDT Modified files: net/ttt Makefile Log: Mark BROKEN for ELF: depends on blt Revision Changes Path 1.12 +3 -1 ports/net/ttt/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 20:10:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA23953 for cvs-all-outgoing; Tue, 13 Oct 1998 20:10:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA23944; Tue, 13 Oct 1998 20:10:44 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA08359; Tue, 13 Oct 1998 20:10:42 -0700 (PDT) Date: Tue, 13 Oct 1998 20:10:42 -0700 (PDT) Message-Id: <199810140310.UAA08359@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/o2c Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 20:10:42 PDT Modified files: lang/o2c Makefile Log: Fix post-patch target. Revision Changes Path 1.4 +2 -2 ports/lang/o2c/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 20:21:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA25415 for cvs-all-outgoing; Tue, 13 Oct 1998 20:21:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA25410; Tue, 13 Oct 1998 20:21:42 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA08615; Tue, 13 Oct 1998 20:21:40 -0700 (PDT) Date: Tue, 13 Oct 1998 20:21:40 -0700 (PDT) Message-Id: <199810140321.UAA08615@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/xarchie Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 20:21:40 PDT Modified files: net/xarchie Makefile Log: Mark BROKEN for ELF: cc -o xarchie -O2 -L/usr/X11R6/lib atalloc.o dirsend.o get_pauth.o get_vdir.o perrmesg.o ptalloc.o regex.o stcopy.o support.o vl_comp.o vlalloc.o query.o browser.o db.o selection.o status.o saveload.o inet_ntoa.o hostname.o username.o weight.o ftp.o syserr.o xarchie.o display-x.o actions.o ftp-actions.o types.o settings.o file-panel.o view-file.o about.o help.o menu.o m-file.o m-query.o m-settings.o m-file-panel.o fchooser.o popups.o alert.o confirm.o syntax.o xutil.o tilde.o -LFWF/FileChooser -lFChooser -LFWF/Dir -lDir -LFWF/MultiList -lMultiList -lXaw -lXmu -lXt -lSM -lICE -lXext -lX11 -lxpg4 -lrpcsvc -lkrb -ldes -lcrypt -Wl,-rpath,/usr/X11R6/lib /usr/libexec/elf/ld: cannot open -lFChooser: No such file or directory *** Error code 1 Revision Changes Path 1.13 +3 -1 ports/net/xarchie/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 20:22:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA25577 for cvs-all-outgoing; Tue, 13 Oct 1998 20:22:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA25569; Tue, 13 Oct 1998 20:22:34 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA08678; Tue, 13 Oct 1998 20:22:33 -0700 (PDT) Date: Tue, 13 Oct 1998 20:22:33 -0700 (PDT) Message-Id: <199810140322.UAA08678@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/objc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 20:22:32 PDT Modified files: lang/objc Makefile Log: Mark BROKEN for ELF: ===> Building package for objc-1.8.18 Creating package /usr/ports/packages/All/objc-1.8.18.tgz Registering depends:. Creating gzip'd tar ball in '/usr/ports/packages/All/objc-1.8.18.tgz' tar: can't add file lib/objcrtgc.a : No such file or directory /usr/sbin/pkg_create: tar command failed with code 256 *** Error code 1 Revision Changes Path 1.8 +3 -1 ports/lang/objc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 20:25:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA25843 for cvs-all-outgoing; Tue, 13 Oct 1998 20:25:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA25832; Tue, 13 Oct 1998 20:25:33 -0700 (PDT) (envelope-from dwhite@FreeBSD.org) From: Doug White Received: (from dwhite@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA08776; Tue, 13 Oct 1998 20:25:31 -0700 (PDT) Date: Tue, 13 Oct 1998 20:25:31 -0700 (PDT) Message-Id: <199810140325.UAA08776@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/en/tutorials/diskformat diskformat.docb Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dwhite 1998/10/13 20:25:31 PDT Modified files: en/tutorials/diskformat diskformat.docb Log: Fix incorrect ccdconfig command line. Noticed most recently by: Bill Richter Revision Changes Path 1.5 +2 -2 doc/en/tutorials/diskformat/diskformat.docb To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 20:30:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA26714 for cvs-all-outgoing; Tue, 13 Oct 1998 20:30:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA26658; Tue, 13 Oct 1998 20:30:02 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA08878; Tue, 13 Oct 1998 20:30:00 -0700 (PDT) Date: Tue, 13 Oct 1998 20:30:00 -0700 (PDT) Message-Id: <199810140330.UAA08878@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/yale-tftpd Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 20:30:00 PDT Modified files: net/yale-tftpd Makefile Log: Mark BROKEN ELF cc -O -pipe -DCONFIGFILE='"/usr/local/etc/tftpd.conf"' -o tftpd tftpd.o tftpsubs.o tftpyale.o config.o classes/libclasses.a cc: classes/libclasses.a: No such file or directory *** Error code 1 Revision Changes Path 1.10 +3 -1 ports/net/yale-tftpd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 20:38:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA27624 for cvs-all-outgoing; Tue, 13 Oct 1998 20:38:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA27619; Tue, 13 Oct 1998 20:38:50 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA09080; Tue, 13 Oct 1998 20:38:48 -0700 (PDT) Date: Tue, 13 Oct 1998 20:38:48 -0700 (PDT) Message-Id: <199810140338.UAA09080@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/p5-Tcl Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 20:38:48 PDT Modified files: lang/p5-Tcl Makefile Log: Mark BROKEN for ELF: Running Mkbootstrap for Tcl () chmod 644 Tcl.bs ld -o blib/arch/auto/Tcl/Tcl.so -shared Tcl.o -ltcl76 -lm /usr/libexec/elf/ld: cannot open -ltcl76: No such file or directory *** Error code 1 Revision Changes Path 1.8 +3 -1 ports/lang/p5-Tcl/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 20:41:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA28014 for cvs-all-outgoing; Tue, 13 Oct 1998 20:41:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA28003; Tue, 13 Oct 1998 20:41:03 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA09154; Tue, 13 Oct 1998 20:41:01 -0700 (PDT) Date: Tue, 13 Oct 1998 20:41:01 -0700 (PDT) Message-Id: <199810140341.UAA09154@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/gensetdefs Makefile gensetdefs.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/13 20:41:01 PDT Added files: usr.bin/gensetdefs Makefile gensetdefs.c Log: gensetdefs is a standalone version of the tool that we use to wrap a struct linker_set around the contents of ELF linker sets. This tool also generates setdef0.c and setdef1.c for the alpha and i386 rather than having these duplicated all over the tree too. This is required for building KLD modules. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 20:41:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA28085 for cvs-all-outgoing; Tue, 13 Oct 1998 20:41:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA28063; Tue, 13 Oct 1998 20:41:30 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA09183; Tue, 13 Oct 1998 20:41:26 -0700 (PDT) Date: Tue, 13 Oct 1998 20:41:26 -0700 (PDT) Message-Id: <199810140341.UAA09183@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/13 20:41:26 PDT Modified files: usr.bin Makefile Log: +gensetdefs Revision Changes Path 1.117 +2 -1 src/usr.bin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 20:44:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA28569 for cvs-all-outgoing; Tue, 13 Oct 1998 20:44:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA28564; Tue, 13 Oct 1998 20:44:45 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA09276; Tue, 13 Oct 1998 20:44:43 -0700 (PDT) Date: Tue, 13 Oct 1998 20:44:43 -0700 (PDT) Message-Id: <199810140344.UAA09276@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/ptoc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 20:44:43 PDT Modified files: lang/ptoc Makefile Log: Mark BROKEN for ELF: ===> Installing for ptoc-2.01 install: /usr/ports/lang/ptoc/work/ptoc/libXbgi.a: No such file or directory *** Error code 71 Stop. Revision Changes Path 1.4 +3 -1 ports/lang/ptoc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 20:47:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA28746 for cvs-all-outgoing; Tue, 13 Oct 1998 20:47:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA28741; Tue, 13 Oct 1998 20:46:59 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA09368; Tue, 13 Oct 1998 20:46:57 -0700 (PDT) Date: Tue, 13 Oct 1998 20:46:57 -0700 (PDT) Message-Id: <199810140346.UAA09368@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/rexx-imc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 20:46:57 PDT Modified files: lang/rexx-imc Makefile Log: Mark BROKEN for ELF: gcc -O2 -DHAS_TTYCOM -D_REQUIRED -c -fPIC -o rxfn.o rxfn.c In file included from rxfn.c:28: const.h:385: field `__error' declared as a function rxfn.c: In function `rxseterr': rxfn.c:1078: parse error before `(' rxfn.c:1079: parse error before `(' Revision Changes Path 1.5 +3 -1 ports/lang/rexx-imc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 20:58:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA29642 for cvs-all-outgoing; Tue, 13 Oct 1998 20:58:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA29632; Tue, 13 Oct 1998 20:58:38 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA09753; Tue, 13 Oct 1998 20:58:37 -0700 (PDT) Date: Tue, 13 Oct 1998 20:58:37 -0700 (PDT) Message-Id: <199810140358.UAA09753@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/games/xminehunter Makefile ports/games/xminehunter/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 20:58:36 PDT Modified files: games/xminehunter Makefile games/xminehunter/patches patch-aa Log: Unbreak. Submitted by: steve Revision Changes Path 1.9 +1 -4 ports/games/xminehunter/Makefile 1.2 +10 -6 ports/games/xminehunter/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 Oct 13 21:02:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA00456 for cvs-all-outgoing; Tue, 13 Oct 1998 21:02:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA00448; Tue, 13 Oct 1998 21:02:30 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA09914; Tue, 13 Oct 1998 21:02:28 -0700 (PDT) Date: Tue, 13 Oct 1998 21:02:28 -0700 (PDT) Message-Id: <199810140402.VAA09914@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/schemetoc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 21:02:28 PDT Modified files: lang/schemetoc Makefile Log: Mark BROKEN for ELF: ranlib Xlibsc.a gcc -O2 -c sci.c -I. -o sci.o gcc -o Xsci -O2 scdebug.o sceval.o scexpand.o scexpnd1.o scexpnd2.o scqquote.o screp.o scrt1.o scrt2.o scrt3.o scrt4.o scrt5.o scrt6.o scrt7.o scrtuser.o scinit.o apply.o callcc.o cio.o heap.o objects.o mtraps.o x86.o sci.o -lm heap.o: In function `trace_stack_and_registers': heap.o(.text+0x8f): undefined reference to `sc_geti386regs' *** Error code 1 Stop. *** Error code 1 Revision Changes Path 1.11 +3 -1 ports/lang/schemetoc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 21:04:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA00729 for cvs-all-outgoing; Tue, 13 Oct 1998 21:04:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA00711; Tue, 13 Oct 1998 21:04:24 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA09989; Tue, 13 Oct 1998 21:04:22 -0700 (PDT) Date: Tue, 13 Oct 1998 21:04:22 -0700 (PDT) Message-Id: <199810140404.VAA09989@freefall.freebsd.org> 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 1998/10/13 21:04:22 PDT Modified files: share/mk bsd.kmod.mk Log: Support encapsulating ELF linker sets for KLD modules via gensetdefs. Support name based dependencies at build time. This is a hack. These only affect KLD modules. Revision Changes Path 1.55 +36 -3 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 Oct 13 21:06:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA00972 for cvs-all-outgoing; Tue, 13 Oct 1998 21:06:03 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA00955; Tue, 13 Oct 1998 21:05:55 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA10043; Tue, 13 Oct 1998 21:05:53 -0700 (PDT) Date: Tue, 13 Oct 1998 21:05:53 -0700 (PDT) Message-Id: <199810140405.VAA10043@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/13 21:05:53 PDT Modified files: . modules Log: gensetdefs -> src/usr.bin/gensetdefs Revision Changes Path 1.2414 +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 Oct 13 21:06:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA01177 for cvs-all-outgoing; Tue, 13 Oct 1998 21:06:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA01149; Tue, 13 Oct 1998 21:06:34 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA10088; Tue, 13 Oct 1998 21:06:31 -0700 (PDT) Date: Tue, 13 Oct 1998 21:06:31 -0700 (PDT) Message-Id: <199810140406.VAA10088@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/news/tin Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 21:06:31 PDT Modified files: news/tin Makefile Log: Mark BROKEN for ELF: Linking tin v1.4... cc -o ./tin ./active.o ./art.o ./attrib.o ./auth.o ./charset.o ./color.o ./config.o ./curses.o ./debug.o ./envarg.o ./feed.o ./filter.o ./getline.o ./group.o ./hashstr.o ./header.o ./help.o ./inews.o ./init.o ./joinpath.o ./lang.o ./list.o ./mail.o ./main.o ./memory.o ./misc.o ./newsrc.o ./nntplib.o ./nrctbl.o ./open.o ./page.o ./parsdate.o ./pgp.o ./post.o ./prompt.o ./read.o ./refs.o ./regex.o ./rfc1521.o ./rfc1522.o ./save.o ./screen.o ./search.o ./select.o ./sigfile.o ./signal.o ./strftime.o ./string.o ./tcurses.o ./thread.o ./wildmat.o ./xref.o ../pcre/libpcre.a -lmytinfo ../pcre/libpcre.a cc: ../pcre/libpcre.a: No such file or directory cc: ../pcre/libpcre.a: No such file or directory *** Error code 1 Revision Changes Path 1.63 +3 -1 ports/news/tin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 21:07:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA01328 for cvs-all-outgoing; Tue, 13 Oct 1998 21:07:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA01303; Tue, 13 Oct 1998 21:07:22 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA10158; Tue, 13 Oct 1998 21:07:20 -0700 (PDT) Date: Tue, 13 Oct 1998 21:07:20 -0700 (PDT) Message-Id: <199810140407.VAA10158@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/editors/cooledit Makefile ports/editors/cooledit/files ltmain.sh-1.2 ports/editors/cooledit/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 21:07:20 PDT Modified files: editors/cooledit Makefile editors/cooledit/files ltmain.sh-1.2 editors/cooledit/pkg PLIST Log: Unbreak. Submitted by: steve Revision Changes Path 1.9 +1 -3 ports/editors/cooledit/Makefile 1.2 +5 -1 ports/editors/cooledit/files/ltmain.sh-1.2 1.4 +4 -2 ports/editors/cooledit/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 Oct 13 21:10:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA02013 for cvs-all-outgoing; Tue, 13 Oct 1998 21:10:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA01971; Tue, 13 Oct 1998 21:10:06 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA10258; Tue, 13 Oct 1998 21:10:03 -0700 (PDT) Date: Tue, 13 Oct 1998 21:10:03 -0700 (PDT) Message-Id: <199810140410.VAA10258@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/sr Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 21:10:03 PDT Modified files: lang/sr Makefile Log: Mark BROKEN for ELF: as -o asm.o asm.s . ../paths.sh; cc -g -o cstest cstest.o asm.o $LIBM $LIBC cstest.o: In function `dotest': /usr/ports/lang/sr/work/csw/cstest.c(.text+0x1ac): undefined reference to `sr_chg_context' cstest.o: In function `spawn': /usr/ports/lang/sr/work/csw/cstest.c(.text+0x287): undefined reference to `sr_build_context' cstest.o: In function `foo': /usr/ports/lang/sr/work/csw/cstest.c(.text+0x2b3): undefined reference to `sr_check_stk' Revision Changes Path 1.4 +3 -1 ports/lang/sr/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 21:13:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA02615 for cvs-all-outgoing; Tue, 13 Oct 1998 21:13:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA02610; Tue, 13 Oct 1998 21:13:42 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA10454; Tue, 13 Oct 1998 21:13:40 -0700 (PDT) Date: Tue, 13 Oct 1998 21:13:40 -0700 (PDT) Message-Id: <199810140413.VAA10454@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/editors/jed Makefile ports/editors/jed/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 21:13:40 PDT Modified files: editors/jed Makefile Added files: editors/jed/patches patch-aa Log: Unbreak. Submitted by: steve Revision Changes Path 1.7 +1 -3 ports/editors/jed/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 21:24:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA03888 for cvs-all-outgoing; Tue, 13 Oct 1998 21:24:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA03882; Tue, 13 Oct 1998 21:24:23 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA10833; Tue, 13 Oct 1998 21:24:21 -0700 (PDT) Date: Tue, 13 Oct 1998 21:24:21 -0700 (PDT) Message-Id: <199810140424.VAA10833@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/netscape4-communicator Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 21:24:21 PDT Modified files: www/netscape4-communicator Makefile Log: Fix for ELF Revision Changes Path 1.23 +3 -1 ports/www/netscape4-communicator/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 21:25:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA04050 for cvs-all-outgoing; Tue, 13 Oct 1998 21:25:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA04038; Tue, 13 Oct 1998 21:25:11 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA10915; Tue, 13 Oct 1998 21:25:09 -0700 (PDT) Date: Tue, 13 Oct 1998 21:25:09 -0700 (PDT) Message-Id: <199810140425.VAA10915@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/plan9/wily Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 21:25:09 PDT Modified files: plan9/wily Makefile Log: Mark BROKEN for ELF: cc -o wily env.o include.o label.o file.o msg.o data.o line.o vgeom.o vsearch.o vshow.o tagmatch.o place.o event.o exec.o dir.o point.o global.o cursor.o scroll.o path.o keyboard.o wily.o tag.o view.o grow.o adjust.o win.o list.o col.o undo.o builtins.o util.o select.o mouse.o regexp.o text2.o sam.o text.o click.o tile.o search.o ../libmsg/libmsg.a ../libframe/libframe.a ../libXg/libXg.a -L/usr/X11R6/lib -lXt -lSM -lICE -lX11 cc: ../libmsg/libmsg.a: No such file or directory cc: ../libframe/libframe.a: No such file or directory cc: ../libXg/libXg.a: No such file or directory *** Error code 1 Revision Changes Path 1.6 +3 -1 ports/plan9/wily/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 21:29:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA04836 for cvs-all-outgoing; Tue, 13 Oct 1998 21:29:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA04820; Tue, 13 Oct 1998 21:29:29 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA11058; Tue, 13 Oct 1998 21:29:26 -0700 (PDT) Date: Tue, 13 Oct 1998 21:29:26 -0700 (PDT) Message-Id: <199810140429.VAA11058@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/devel/a2dev/patches patch-ac patch-ad patch-ae patch-af Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 21:29:26 PDT Modified files: devel/a2dev/patches patch-ac patch-ad patch-ae patch-af Log: Make this port reinstall friendly Submitted by: steve Revision Changes Path 1.2 +13 -4 ports/devel/a2dev/patches/patch-ac 1.2 +13 -4 ports/devel/a2dev/patches/patch-ad 1.2 +13 -4 ports/devel/a2dev/patches/patch-ae 1.2 +13 -4 ports/devel/a2dev/patches/patch-af To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 21:30:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA05014 for cvs-all-outgoing; Tue, 13 Oct 1998 21:30:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA05002; Tue, 13 Oct 1998 21:30:04 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA11107; Tue, 13 Oct 1998 21:30:02 -0700 (PDT) Date: Tue, 13 Oct 1998 21:30:02 -0700 (PDT) Message-Id: <199810140430.VAA11107@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/tclplugin Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 21:30:02 PDT Modified files: lang/tclplugin Makefile Log: Mark BROKEN for ELF: cc -O2 -Wall -Wtraditional -Wmissing-prototypes -Wmissing-declarations -Wconversion -ansi -pedantic -I. -I/usr/ports/lang/tclplugin/work/tclplugin2.0/plugin2.0/generic -I/usr/ports/lang/tclplugin/work/tclplugin2.0/tcl8.0/generic -I/usr/ports/lang/tclplugin/work/tclplugin2.0/tk8.0/generic -I/usr/X11R6/include -DHAVE_CONFIG_H -DXP_UNIX -fpic -c /usr/ports/lang/tclplugin/work/tclplugin2.0/plugin2.0/unix/tclAppInit.c Linking wish with the fat library, if this fails check SHLIB_LD_LIBS and XTLIB cc tclAppInit.o -o tclshp2.0 -L/usr/ports/lang/tclplugin/work/tclplugin2.0/plugin2.0/unix -ltclp20 -L/usr/X11R6/lib -lX11 -lm -lc -lXt /usr/libexec/elf/ld: cannot open -ltclp20: No such file or directory *** Error code 1 Stop. Revision Changes Path 1.13 +3 -1 ports/lang/tclplugin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 21:32:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA05202 for cvs-all-outgoing; Tue, 13 Oct 1998 21:32:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA05197; Tue, 13 Oct 1998 21:32:10 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA11166; Tue, 13 Oct 1998 21:32:08 -0700 (PDT) Date: Tue, 13 Oct 1998 21:32:08 -0700 (PDT) Message-Id: <199810140432.VAA11166@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/xpl Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/13 21:32:08 PDT Modified files: lang/xpl Makefile Log: Mark BROKEn for ELF: cc -O2 -m486 -fomit-frame-pointer -Ignu -DMMAP -c svc.c -o svc.o co arith.s,v arith.s arith.s,v --> arith.s revision 1.2 done as -o arith.o arith.s cc -O2 -m486 -fomit-frame-pointer xplsm370.o s370.o svc.o arith.o strnhex.o -o xplsm370 s370.o: In function `s370': s370.o(.text+0x1075): undefined reference to `al' s370.o(.text+0x1113): undefined reference to `dr' s370.o(.text+0x11a3): undefined reference to `mr' s370.o(.text+0x11ef): undefined reference to `al' s370.o(.text+0x1299): undefined reference to `al' s370.o(.text+0x12f9): undefined reference to `d' s370.o(.text+0x13c9): undefined reference to `m' Revision Changes Path 1.5 +3 -1 ports/lang/xpl/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 22:07:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA09772 for cvs-all-outgoing; Tue, 13 Oct 1998 22:07:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA09766; Tue, 13 Oct 1998 22:07:25 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA12165; Tue, 13 Oct 1998 22:07:23 -0700 (PDT) Date: Tue, 13 Oct 1998 22:07:23 -0700 (PDT) Message-Id: <199810140507.WAA12165@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/libi386 bootinfo.c src/sys/kern subr_module.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/13 22:07:23 PDT Modified files: sys/boot/i386/libi386 bootinfo.c sys/kern subr_module.c Log: Align to sizeof(long) rather than sizeof(int32_t). It needs to be long because this code is shared with the alpha. I hope the alpha can read 32 bit ints at 32 bit alignment (vs. 64 bit alignment). Revision Changes Path 1.13 +4 -4 src/sys/boot/i386/libi386/bootinfo.c 1.4 +8 -8 src/sys/kern/subr_module.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 22:17:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA10526 for cvs-all-outgoing; Tue, 13 Oct 1998 22:17:03 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au (spinner.netplex.com.au [202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA10463; Tue, 13 Oct 1998 22:16:22 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.9.1/8.9.1/Spinner) with ESMTP id MAA04055; Wed, 14 Oct 1998 12:48:31 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199810140448.MAA04055@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: Robert Nordier cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/boot/i386/boot2 Makefile In-reply-to: Your message of "Tue, 13 Oct 1998 17:24:16 MST." <199810140024.RAA03427@freefall.freebsd.org> Date: Wed, 14 Oct 1998 12:48:30 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Robert Nordier wrote: > rnordier 1998/10/13 17:24:16 PDT > > Modified files: > sys/boot/i386/boot2 Makefile > Log: > Include . Add install target (to /boot for now). The correct location for these is /usr/mdec, not /boot. Don't overwrite other files that are installed there though. Cheers, -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 23:20:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA17605 for cvs-all-outgoing; Tue, 13 Oct 1998 23:20:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA17598; Tue, 13 Oct 1998 23:20:38 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA14425; Tue, 13 Oct 1998 23:20:37 -0700 (PDT) Date: Tue, 13 Oct 1998 23:20:37 -0700 (PDT) Message-Id: <199810140620.XAA14425@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libcam cam.3 cam_cdbparse.3 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/13 23:20:36 PDT Modified files: lib/libcam Makefile Added files: lib/libcam cam.3 cam_cdbparse.3 Log: Add man pages for many of the functions in the CAM library. This covers most of the open/close routines, and the buffer/cdb parsing routines derived from the old scsi(3) library. The cam_cdbparse(3) man page borrows from the old scsi(3) man page, so the copyright and history section reflect that. The many scsi_* functions and other functions that are pulled in from the kernel aren't documented yet, but will be eventually. Revision Changes Path 1.3 +24 -32 src/lib/libcam/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Oct 13 23:48:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA20754 for cvs-all-outgoing; Tue, 13 Oct 1998 23:48:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ceia.nordier.com (m2-15-dbn.dial-up.net [196.34.155.79]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA20730; Tue, 13 Oct 1998 23:47:51 -0700 (PDT) (envelope-from rnordier@nordier.com) Received: (from rnordier@localhost) by ceia.nordier.com (8.8.7/8.6.12) id IAA01132; Wed, 14 Oct 1998 08:45:23 +0200 (SAT) From: Robert Nordier Message-Id: <199810140645.IAA01132@ceia.nordier.com> Subject: Re: cvs commit: src/sys/boot/i386/boot2 Makefile In-Reply-To: <199810140448.MAA04055@spinner.netplex.com.au> from Peter Wemm at "Oct 14, 98 12:48:30 pm" To: peter@netplex.com.au (Peter Wemm) Date: Wed, 14 Oct 1998 08:45:16 +0200 (SAT) Cc: rnordier@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 Peter Wemm wrote: > Robert Nordier wrote: > > rnordier 1998/10/13 17:24:16 PDT > > > > Modified files: > > sys/boot/i386/boot2 Makefile > > Log: > > Include . Add install target (to /boot for now). > > The correct location for these is /usr/mdec, not /boot. Don't overwrite > other files that are installed there though. Sure. Just a temporary home for them (as the "for now" was meant to indicate). The next commit, which I'm testing here now, adds PROBEKBD, DUAL, and SERIAL support. I just don't want anyone to install this stuff without thinking about it first. -- Robert Nordier To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 00:08:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA22937 for cvs-all-outgoing; Wed, 14 Oct 1998 00:08:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA22932; Wed, 14 Oct 1998 00:08:18 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA15954; Wed, 14 Oct 1998 00:08:16 -0700 (PDT) Date: Wed, 14 Oct 1998 00:08:16 -0700 (PDT) Message-Id: <199810140708.AAA15954@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/libi386 Makefile src/sys/boot/i386/loader Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/14 00:08:16 PDT Modified files: sys/boot/i386/libi386 Makefile sys/boot/i386/loader Makefile Log: Try and get the sys/* and machine/* includes via relative paths. This saves having to do a 'make includes' after touching any header file for the boot code. Revision Changes Path 1.8 +11 -2 src/sys/boot/i386/libi386/Makefile 1.12 +9 -3 src/sys/boot/i386/loader/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 01:31:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA28492 for cvs-all-outgoing; Wed, 14 Oct 1998 01:31:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA28487; Wed, 14 Oct 1998 01:31:30 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA18355; Wed, 14 Oct 1998 01:31:28 -0700 (PDT) Date: Wed, 14 Oct 1998 01:31:28 -0700 (PDT) Message-Id: <199810140831.BAA18355@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pci if_de.c if_devar.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/14 01:31:28 PDT Modified files: sys/pci if_de.c if_devar.h Log: Revert part of previous commit. vaddr_t doesn't exist on FreeBSD. This didn't affect the x86 kernel due to #ifdefs. It broke FreeBSD/Alpha kernel compiles though. Revision Changes Path 1.89 +4 -4 src/sys/pci/if_de.c 1.11 +2 -2 src/sys/pci/if_devar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 01:54:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA00369 for cvs-all-outgoing; Wed, 14 Oct 1998 01:54:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA00362; Wed, 14 Oct 1998 01:54:06 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA18933; Wed, 14 Oct 1998 01:54:04 -0700 (PDT) Date: Wed, 14 Oct 1998 01:54:04 -0700 (PDT) Message-Id: <199810140854.BAA18933@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall/help relnotes.hlp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/14 01:54:04 PDT Modified files: release/sysinstall/help relnotes.hlp Log: rough 1st attempt at cleaning this up. Those feeling brave/knowledgable about upgrade issues should also check the section created for this. Revision Changes Path 1.94 +76 -19 src/release/sysinstall/help/relnotes.hlp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 02:30:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA03120 for cvs-all-outgoing; Wed, 14 Oct 1998 02:30:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA03113; Wed, 14 Oct 1998 02:30:22 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA20496; Wed, 14 Oct 1998 02:30:21 -0700 (PDT) Date: Wed, 14 Oct 1998 02:30:21 -0700 (PDT) Message-Id: <199810140930.CAA20496@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/internal about.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/14 02:30:21 PDT Modified files: en/internal about.sgml Log: Use a better graphic. Revision Changes Path 1.20 +3 -3 www/en/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 Wed Oct 14 02:53:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA04829 for cvs-all-outgoing; Wed, 14 Oct 1998 02:53:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA04824; Wed, 14 Oct 1998 02:53:27 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA21021; Wed, 14 Oct 1998 02:53:25 -0700 (PDT) Date: Wed, 14 Oct 1998 02:53:25 -0700 (PDT) Message-Id: <199810140953.CAA21021@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/alpha/alpha machdep.c src/sys/alpha/include bootinfo.h src/sys/boot/alpha/boot2 Makefile src/sys/boot/alpha/libalpha bootinfo.c Makefile elf_freebsd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/14 02:53:25 PDT Modified files: sys/alpha/alpha machdep.c sys/alpha/include bootinfo.h sys/boot/alpha/boot2 Makefile sys/boot/alpha/libalpha Makefile elf_freebsd.c Added files: sys/boot/alpha/libalpha bootinfo.c Log: Initial attempt to update the Alpha loader and kernel to use the machine independent elf loader and have access to kld modules. Jordan and I were not sure how to create boot floppies, and the things we tried just made SRM laugh in our faces - but it was upset at boot1 which was not touched by these changes. Essentially this has been untested. :-( What this does is to steal the last three slots from the nine spare longs in the bootinfo_v1 struct to pass the module base pointer through. The startup code now to set up and fills in the module and environment structures, hopefully close enough to the i386 layout to be able to use the same kernel code. We now pass though the updated end of the kernel space used, rather than _end. (like the i386). If this does not work, it needs to be beaten into shape pronto. Otherwise it should be backed out before 3.0. Pre-approved in principle by: dfr Revision Changes Path 1.16 +9 -1 src/sys/alpha/alpha/machdep.c 1.3 +8 -2 src/sys/alpha/include/bootinfo.h 1.5 +7 -1 src/sys/boot/alpha/boot2/Makefile 1.5 +9 -3 src/sys/boot/alpha/libalpha/Makefile 1.5 +9 -183 src/sys/boot/alpha/libalpha/elf_freebsd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 03:04:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA05498 for cvs-all-outgoing; Wed, 14 Oct 1998 03:04:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA05493; Wed, 14 Oct 1998 03:04:34 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA21297; Wed, 14 Oct 1998 03:04:32 -0700 (PDT) Date: Wed, 14 Oct 1998 03:04:32 -0700 (PDT) Message-Id: <199810141004.DAA21297@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/alpha/include bootinfo.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/14 03:04:32 PDT Modified files: sys/alpha/include bootinfo.h Log: Typo fix. Revision Changes Path 1.4 +2 -2 src/sys/alpha/include/bootinfo.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 03:08:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA06145 for cvs-all-outgoing; Wed, 14 Oct 1998 03:08:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA06137; Wed, 14 Oct 1998 03:08:37 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA21447; Wed, 14 Oct 1998 03:08:35 -0700 (PDT) Date: Wed, 14 Oct 1998 03:08:35 -0700 (PDT) Message-Id: <199810141008.DAA21447@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/alpha/alpha machdep.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/14 03:08:35 PDT Modified files: sys/alpha/alpha machdep.c Log: Fix a warning I missed before. Revision Changes Path 1.17 +2 -2 src/sys/alpha/alpha/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 03:21:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA07379 for cvs-all-outgoing; Wed, 14 Oct 1998 03:21:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA07374; Wed, 14 Oct 1998 03:21:12 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA21801; Wed, 14 Oct 1998 03:21:10 -0700 (PDT) Date: Wed, 14 Oct 1998 03:21:10 -0700 (PDT) Message-Id: <199810141021.DAA21801@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/gensetdefs Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/14 03:21:10 PDT Modified files: usr.bin/gensetdefs Makefile Log: Fixed 7 style bugs. The contents of such a simple Makefile is entirely determined by style rules, the program name and the existence of the man page. Revision Changes Path 1.2 +2 -6 src/usr.bin/gensetdefs/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 03:42:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA09002 for cvs-all-outgoing; Wed, 14 Oct 1998 03:42:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA08941; Wed, 14 Oct 1998 03:42:03 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA22263; Wed, 14 Oct 1998 03:42:00 -0700 (PDT) Date: Wed, 14 Oct 1998 03:42:00 -0700 (PDT) Message-Id: <199810141042.DAA22263@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/sysutils/cd-write Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/14 03:42:00 PDT Modified files: sysutils/cd-write Makefile Log: Mark BROKEN for current. scsi.c Revision Changes Path 1.11 +6 -1 ports/sysutils/cd-write/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 03:58:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA10139 for cvs-all-outgoing; Wed, 14 Oct 1998 03:58:16 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA10134; Wed, 14 Oct 1998 03:58:15 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA22795; Wed, 14 Oct 1998 03:58:13 -0700 (PDT) Date: Wed, 14 Oct 1998 03:58:13 -0700 (PDT) Message-Id: <199810141058.DAA22795@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/14 03:58:12 PDT Modified files: release Makefile Log: Use more rational inode sizes. Revision Changes Path 1.419 +4 -4 src/release/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 04:04:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA11252 for cvs-all-outgoing; Wed, 14 Oct 1998 04:04:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA11236; Wed, 14 Oct 1998 04:04:39 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA24149; Wed, 14 Oct 1998 04:04:37 -0700 (PDT) Date: Wed, 14 Oct 1998 04:04:37 -0700 (PDT) Message-Id: <199810141104.EAA24149@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libutil property.3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/14 04:04:37 PDT Modified files: lib/libutil property.3 Log: correct prototype. Revision Changes Path 1.3 +2 -2 src/lib/libutil/property.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 04:23:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA12520 for cvs-all-outgoing; Wed, 14 Oct 1998 04:23:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA12515; Wed, 14 Oct 1998 04:23:51 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA24630; Wed, 14 Oct 1998 04:23:49 -0700 (PDT) Date: Wed, 14 Oct 1998 04:23:49 -0700 (PDT) Message-Id: <199810141123.EAA24630@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall Makefile cdrom.c dist.c sysinstall.h attr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/14 04:23:49 PDT Modified files: release/sysinstall Makefile cdrom.c dist.c sysinstall.h Removed files: release/sysinstall attr.c Log: Use properties code. Revision Changes Path 1.77 +1 -1 src/release/sysinstall/Makefile 1.43 +24 -11 src/release/sysinstall/cdrom.c 1.128 +8 -7 src/release/sysinstall/dist.c 1.149 +1 -16 src/release/sysinstall/sysinstall.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 04:26:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA12775 for cvs-all-outgoing; Wed, 14 Oct 1998 04:26:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA12768; Wed, 14 Oct 1998 04:26:07 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA24773; Wed, 14 Oct 1998 04:26:05 -0700 (PDT) Date: Wed, 14 Oct 1998 04:26:05 -0700 (PDT) Message-Id: <199810141126.EAA24773@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/gallery gallery.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/14 04:26:05 PDT Modified files: en/gallery gallery.sgml Log: correct yanko-pasto. Revision Changes Path 1.41 +5 -4 www/en/gallery/gallery.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 06:19:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA22495 for cvs-all-outgoing; Wed, 14 Oct 1998 06:19:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA22490; Wed, 14 Oct 1998 06:19:55 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA27898; Wed, 14 Oct 1998 06:19:53 -0700 (PDT) Date: Wed, 14 Oct 1998 06:19:53 -0700 (PDT) Message-Id: <199810141319.GAA27898@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/alpha/boot1 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/14 06:19:53 PDT Modified files: sys/boot/alpha/boot1 Makefile Log: Link fdboot to boot1 as well. Revision Changes Path 1.5 +1 -0 src/sys/boot/alpha/boot1/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 07:19:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA27737 for cvs-all-outgoing; Wed, 14 Oct 1998 07:19:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA27732; Wed, 14 Oct 1998 07:19:56 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA04804; Wed, 14 Oct 1998 07:19:55 -0700 (PDT) Date: Wed, 14 Oct 1998 07:19:55 -0700 (PDT) Message-Id: <199810141419.HAA04804@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en index.html Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/10/14 07:19:54 PDT Modified files: en index.html Log: The USA/Indiana mirror at freebsd.sysc.com is no longer active. The mirror is now located at freebsd.advansys.net and is up and running. Submitted by: FreeBSD-related Mailbox Revision Changes Path 1.57 +3 -3 www/en/index.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 08:05:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA03501 for cvs-all-outgoing; Wed, 14 Oct 1998 08:05:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA03496; Wed, 14 Oct 1998 08:05:55 -0700 (PDT) (envelope-from dt@FreeBSD.org) From: Dmitrij Tejblum Received: (from dt@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA06372; Wed, 14 Oct 1998 08:05:53 -0700 (PDT) Date: Wed, 14 Oct 1998 08:05:53 -0700 (PDT) Message-Id: <199810141505.IAA06372@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern vfs_subr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dt 1998/10/14 08:05:53 PDT Modified files: sys/kern vfs_subr.c Log: Backed out rev. 1.164. It caused problems on SMP. PR: 8309 Revision Changes Path 1.166 +1 -13 src/sys/kern/vfs_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 08:15:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA05090 for cvs-all-outgoing; Wed, 14 Oct 1998 08:15:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from dingo.cdrom.com (dingo.cdrom.com [204.216.28.145]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA05080; Wed, 14 Oct 1998 08:15:09 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost.cdrom.com [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id IAA00713; Wed, 14 Oct 1998 08:19:15 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Message-Id: <199810141519.IAA00713@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Peter Wemm cc: Robert Nordier , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/boot/i386/boot2 Makefile In-reply-to: Your message of "Wed, 14 Oct 1998 12:48:30 +0800." <199810140448.MAA04055@spinner.netplex.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 14 Oct 1998 08:19:15 -0700 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Robert Nordier wrote: > > rnordier 1998/10/13 17:24:16 PDT > > > > Modified files: > > sys/boot/i386/boot2 Makefile > > Log: > > Include . Add install target (to /boot for now). > > The correct location for these is /usr/mdec, not /boot. Don't overwrite > other files that are installed there though. /usr/mdec is the wrong location. Nothing belongs there, and the directory itself should be removed. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 08:36:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA07703 for cvs-all-outgoing; Wed, 14 Oct 1998 08:36:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA07690; Wed, 14 Oct 1998 08:36:08 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.1/8.9.1) id LAA12840; Wed, 14 Oct 1998 11:35:02 -0400 (EDT) (envelope-from wollman) Date: Wed, 14 Oct 1998 11:35:02 -0400 (EDT) From: Garrett Wollman Message-Id: <199810141535.LAA12840@khavrinen.lcs.mit.edu> To: Mike Smith Cc: Peter Wemm , Robert Nordier , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/boot/i386/boot2 Makefile In-Reply-To: <199810141519.IAA00713@dingo.cdrom.com> References: <199810140448.MAA04055@spinner.netplex.com.au> <199810141519.IAA00713@dingo.cdrom.com> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk < said: > /usr/mdec is the wrong location. Nothing belongs there, and the > directory itself should be removed. Hello?! /usr/ contains the majority of user utilities and applications mdec/ boot programs; see disklabel(8) I'd say something definitely DOES belong there -- the boot programs installed by disklabel(8). Not everybody mangles their disks with sysinstall, you know. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 08:44:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA08653 for cvs-all-outgoing; Wed, 14 Oct 1998 08:44:16 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from dingo.cdrom.com (dingo.cdrom.com [204.216.28.145]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA08644; Wed, 14 Oct 1998 08:44:13 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost.cdrom.com [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id IAA00919; Wed, 14 Oct 1998 08:46:59 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Message-Id: <199810141546.IAA00919@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Garrett Wollman cc: Mike Smith , Peter Wemm , Robert Nordier , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/boot/i386/boot2 Makefile In-reply-to: Your message of "Wed, 14 Oct 1998 11:35:02 EDT." <199810141535.LAA12840@khavrinen.lcs.mit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 14 Oct 1998 08:46:59 -0700 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > < said: > > > /usr/mdec is the wrong location. Nothing belongs there, and the > > directory itself should be removed. > > Hello?! > > /usr/ contains the majority of user utilities and applications > mdec/ boot programs; see disklabel(8) > > I'd say something definitely DOES belong there -- the boot programs > installed by disklabel(8). The directory is a wart. It may be an historic wart, but it's still a wart. Every other collection of application-specific data is collected elsewhere. The existence of /usr/mdec causes not inconsiderable confusion ("why there?" "what does 'mdec' mean?"). Boot programs that are read out of the filesystem belong in /boot. Binary information that's used by disklabel belongs in /usr/libdata, unless you want it on / for repair purposes, when /boot is a more sensible place. > Not everybody mangles their disks with sysinstall, you know. I never suggested they did. I tend to use disklabel myself. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 09:15:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA14178 for cvs-all-outgoing; Wed, 14 Oct 1998 09:15:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from lor.watermarkgroup.com (lor.watermarkgroup.com [207.202.73.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA14136; Wed, 14 Oct 1998 09:14:29 -0700 (PDT) (envelope-from luoqi@watermarkgroup.com) Received: (from luoqi@localhost) by lor.watermarkgroup.com (8.8.8/8.8.8) id MAA11020; Wed, 14 Oct 1998 12:14:05 -0400 (EDT) (envelope-from luoqi) Date: Wed, 14 Oct 1998 12:14:05 -0400 (EDT) From: Luoqi Chen Message-Id: <199810141614.MAA11020@lor.watermarkgroup.com> To: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, dt@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern vfs_subr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > dt 1998/10/14 08:05:53 PDT > > Modified files: > sys/kern vfs_subr.c > Log: > Backed out rev. 1.164. It caused problems on SMP. > > PR: 8309 > > Revision Changes Path > 1.166 +1 -13 src/sys/kern/vfs_subr.c > Dima, Would you try the patch in kern/7415? It fixes the VMIO code problem that causes the MSDOSFS crash. I have been running it without any problem since July, so if more people can confirm the fix works and has no side effect, then I can commit it. With this fix in, we could turn on VMIO for block device vnodes permanently, so all file systems and userland applications that directly access block devices (database server?) can take advantage of that. If the patch in the PR doesn't apply cleanly, I can generate one from my local tree. -lq To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 09:16:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA14560 for cvs-all-outgoing; Wed, 14 Oct 1998 09:16:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA14551; Wed, 14 Oct 1998 09:16:53 -0700 (PDT) (envelope-from jdp@FreeBSD.org) From: John Polstra Received: (from jdp@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA08901; Wed, 14 Oct 1998 09:16:51 -0700 (PDT) Date: Wed, 14 Oct 1998 09:16:51 -0700 (PDT) Message-Id: <199810141616.JAA08901@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/gcore gcore.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jdp 1998/10/14 09:16:51 PDT Modified files: usr.bin/gcore gcore.c Log: Check the executable's header to make sure it is a valid executable. If it is ELF, print a diagnostic saying that it is not supported yet by this program. This is a stop-gap anti-bug-report measure because it looks like there won't be time to implement gcore's ELF support before 3.0 is released. Revision Changes Path 1.10 +9 -1 src/usr.bin/gcore/gcore.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 09:30:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA16984 for cvs-all-outgoing; Wed, 14 Oct 1998 09:30:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA16916; Wed, 14 Oct 1998 09:30:02 -0700 (PDT) (envelope-from luigi@FreeBSD.org) From: Luigi Rizzo Received: (from luigi@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA09832; Wed, 14 Oct 1998 09:30:00 -0700 (PDT) Date: Wed, 14 Oct 1998 09:30:00 -0700 (PDT) Message-Id: <199810141630.JAA09832@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/netinet ip_fw.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk luigi 1998/10/14 09:29:59 PDT Modified files: (Branch: RELENG_2_2) sys/netinet ip_fw.c Log: Fix a potential panic when deleting ipfw rules and packets are trapped into a pipe, and you allow multiple passees through the firewall code with dummynet. It has never hit anyone on -stable because net.inet.ip.fw.one_pass=1 by default. Reported by Philippe Regnauld (who else!) while beating the 3.0 version of dummynet. Revision Changes Path 1.51.2.21 +5 -1 src/sys/netinet/ip_fw.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 09:33:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA17285 for cvs-all-outgoing; Wed, 14 Oct 1998 09:33:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA17278; Wed, 14 Oct 1998 09:33:08 -0700 (PDT) (envelope-from luigi@FreeBSD.org) From: Luigi Rizzo Received: (from luigi@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA10093; Wed, 14 Oct 1998 09:33:06 -0700 (PDT) Date: Wed, 14 Oct 1998 09:33:06 -0700 (PDT) Message-Id: <199810141633.JAA10093@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa/snd CARDS Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk luigi 1998/10/14 09:33:06 PDT Modified files: (Branch: RELENG_2_2) sys/i386/isa/snd CARDS Log: Add a reference to documentation Submitted by: Bruce Albrecht (bruce@zuhause.mn.org) Revision Changes Path 1.2.4.2 +1 -0 src/sys/i386/isa/snd/CARDS To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 09:55:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA20064 for cvs-all-outgoing; Wed, 14 Oct 1998 09:55:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA20047; Wed, 14 Oct 1998 09:55:04 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) From: Matt Jacob Received: (from mjacob@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA11204; Wed, 14 Oct 1998 09:55:01 -0700 (PDT) Date: Wed, 14 Oct 1998 09:55:01 -0700 (PDT) Message-Id: <199810141655.JAA11204@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/dev/isp isp_freebsd_cam.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mjacob 1998/10/14 09:55:01 PDT Modified files: sys/dev/isp isp_freebsd_cam.h Log: Andrew Gallatin reported some internal queue overflows with MAXISPREQUEST at 256. So- to be safe, let's roll back to 64 while we do some more investigating. Revision Changes Path 1.7 +2 -2 src/sys/dev/isp/isp_freebsd_cam.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 11:01:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA29102 for cvs-all-outgoing; Wed, 14 Oct 1998 11:01:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA29091; Wed, 14 Oct 1998 11:01:54 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA14160; Wed, 14 Oct 1998 11:01:49 -0700 (PDT) Date: Wed, 14 Oct 1998 11:01:49 -0700 (PDT) Message-Id: <199810141801.LAA14160@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/sysutils/xosview Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/14 11:01:49 PDT Modified files: sysutils/xosview Makefile Log: Mark BROKEN for ELF. Revision Changes Path 1.8 +3 -1 ports/sysutils/xosview/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 11:12:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA01051 for cvs-all-outgoing; Wed, 14 Oct 1998 11:12:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from awfulhak.org (awfulhak.force9.co.uk [195.166.136.63]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA00911; Wed, 14 Oct 1998 11:11:46 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from woof.lan.awfulhak.org (brian@woof.lan.awfulhak.org [172.16.0.7]) by awfulhak.org (8.8.8/8.8.8) with ESMTP id TAA18379; Wed, 14 Oct 1998 19:11:28 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from woof.lan.awfulhak.org (brian@localhost [127.0.0.1]) by woof.lan.awfulhak.org (8.9.1/8.9.1) with ESMTP id PAA12066; Wed, 14 Oct 1998 15:08:54 +0100 (BST) (envelope-from brian@woof.lan.awfulhak.org) Message-Id: <199810141408.PAA12066@woof.lan.awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: asami@FreeBSD.ORG (Satoshi Asami) cc: brian@Awfulhak.org, zerium@webindex.no, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, jseger@FreeBSD.ORG Subject: Re: cvs commit: ports/x11/kworldwatch Makefile In-reply-to: Your message of "Tue, 13 Oct 1998 14:23:29 PDT." <199810132123.OAA24927@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 14 Oct 1998 15:08:54 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > * I'll look into why it works for me then (tomorrow). > > Thanks. Meanwhile, it did indeed fix the problem for me. Justin, > here's the patch. Please credit it to "Hans Petter Bieker > " in the commit message. > > Satoshi In configure: : kde_libdirs="/usr/lib/kde/lib /usr/local/kde/lib /usr/kde/lib /usr/lib/kde /usr/lib /usr/X11R6/lib /usr/X11R6/kde/lib" : test -n "$KDEDIR" && kde_libdirs="$KDEDIR/lib $KDEDIR $kde_libdirs" : : kde_libdir=NO : for i in $kde_libdirs; : do : for j in libkdecore.la; do : if test -r "$i/$j"; then : kde_libdir=$i break 2 : fi : done : done There's a similar loop for QT libraries too (and it optimises one out later on because they're the same).... The above bit of the script is the only place that mentions /usr/local/kde/lib - and $i isn't used afterwards before being set again. I have two -current machines, and it finds /usr/local/lib on both. Both machines are ELFified. How about a set -x at the top of configure on your machine followed by a ``fgrep kde/lib'' ? -- 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 Oct 14 11:42:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA07100 for cvs-all-outgoing; Wed, 14 Oct 1998 11:42:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA07092; Wed, 14 Oct 1998 11:42:02 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id LAA26592; Wed, 14 Oct 1998 11:40:54 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Mike Smith cc: Garrett Wollman , Peter Wemm , Robert Nordier , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/boot/i386/boot2 Makefile In-reply-to: Your message of "Wed, 14 Oct 1998 08:46:59 PDT." <199810141546.IAA00919@dingo.cdrom.com> Date: Wed, 14 Oct 1998 11:40:54 -0700 Message-ID: <26589.908390454@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > The directory is a wart. It may be an historic wart, but it's still a > wart. Every other collection of application-specific data is collected > elsewhere. The existence of /usr/mdec causes not inconsiderable > confusion ("why there?" "what does 'mdec' mean?"). I have to agree. /usr/mdec is not only ill-named, but in the wrong place. Let's say we're talking about a 3-stage boot here now and it goes naturally into /usr/mdec, right? Wrong, since /usr isn't even mounted yet. Oh, so that should go into /boot then? And boot1 and boot2 should still go into /usr/mdec? That makes no sense at all and if Garrett really thinks this through, he'll see that. /usr/mdec needs to die. As Mike says, it's a wart. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 11:52:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA07972 for cvs-all-outgoing; Wed, 14 Oct 1998 11:52:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA07964; Wed, 14 Oct 1998 11:52:07 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA16643; Wed, 14 Oct 1998 11:52:04 -0700 (PDT) Date: Wed, 14 Oct 1998 11:52:04 -0700 (PDT) Message-Id: <199810141852.LAA16643@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pkg_install/lib file.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/14 11:52:04 PDT Modified files: usr.sbin/pkg_install/lib file.c Log: Revert 1.33; lstat() is indeed the wrong thing to do here. I'll revisit this after release. Revision Changes Path 1.34 +2 -2 src/usr.sbin/pkg_install/lib/file.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 11:52:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA08103 for cvs-all-outgoing; Wed, 14 Oct 1998 11:52:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA08098; Wed, 14 Oct 1998 11:52:57 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA16733; Wed, 14 Oct 1998 11:52:55 -0700 (PDT) Date: Wed, 14 Oct 1998 11:52:55 -0700 (PDT) Message-Id: <199810141852.LAA16733@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pkg_install/lib file.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/14 11:52:55 PDT Modified files: (Branch: RELENG_2_2) usr.sbin/pkg_install/lib file.c Log: MFC: revert lstat to stat Revision Changes Path 1.24.2.8 +2 -2 src/usr.sbin/pkg_install/lib/file.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 11:53:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA08269 for cvs-all-outgoing; Wed, 14 Oct 1998 11:53:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA08255; Wed, 14 Oct 1998 11:53:38 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA16787; Wed, 14 Oct 1998 11:53:37 -0700 (PDT) Date: Wed, 14 Oct 1998 11:53:37 -0700 (PDT) Message-Id: <199810141853.LAA16787@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libc/gen exec.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/10/14 11:53:37 PDT Modified files: lib/libc/gen exec.c Log: Make execl() vfork()-safe. This should fix potential bugs in rcp, telnet and tip, and probably a few other apps. Reviewed by: bde Approved by: jkh Revision Changes Path 1.8 +20 -8 src/lib/libc/gen/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 Oct 14 12:35:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA13704 for cvs-all-outgoing; Wed, 14 Oct 1998 12:35:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA13681; Wed, 14 Oct 1998 12:35:15 -0700 (PDT) (envelope-from nate@FreeBSD.org) From: Nate Williams Received: (from nate@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA18286; Wed, 14 Oct 1998 12:35:13 -0700 (PDT) Date: Wed, 14 Oct 1998 12:35:13 -0700 (PDT) Message-Id: <199810141935.MAA18286@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/handbook submitters.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nate 1998/10/14 12:35:12 PDT Modified files: handbook submitters.sgml Log: - Remove my name (and added Mike Smith!) as the PCMCIA/APM Co-ordinator. Revision Changes Path 1.242 +3 -3 doc/handbook/submitters.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 12:44:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA14716 for cvs-all-outgoing; Wed, 14 Oct 1998 12:44:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA14699 for ; Wed, 14 Oct 1998 12:43:49 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from hindarfjell.ifi.uio.no (2602@hindarfjell.ifi.uio.no [129.240.64.130]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with ESMTP id VAA14877 for ; Wed, 14 Oct 1998 21:43:23 +0200 (MET DST) Received: (from dag-erli@localhost) by hindarfjell.ifi.uio.no ; Wed, 14 Oct 1998 21:43:22 +0200 (MET DST) Mime-Version: 1.0 To: committers@FreeBSD.ORG Subject: apply Organization: University of Oslo, Department of Informatics X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-other-addresses: 'finger dag-erli@ifi.uio.no' for a list X-disclaimer-1: The views expressed in this article are mine alone, and do X-disclaimer-2: not necessarily coincide with those of any organisation or X-disclaimer-3: company with which I am or have been affiliated. X-Stop-Spam: http://www.cauce.org/ From: dag-erli@ifi.uio.no (Dag-Erling C. =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 14 Oct 1998 21:43:20 +0200 Message-ID: Lines: 6 X-Mailer: Gnus v5.5/Emacs 19.34 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by hub.freebsd.org id MAB14705 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Hmm, apply is broken but I didn't do it, just in case anybody asks :) Working with EE to track the bug, we think it's an Elf thing. DES -- Dag-Erling Smørgrav - dag-erli@ifi.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 13:09:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA17652 for cvs-all-outgoing; Wed, 14 Oct 1998 13:09:49 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA17646 for ; Wed, 14 Oct 1998 13:09:45 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from hindarfjell.ifi.uio.no (2602@hindarfjell.ifi.uio.no [129.240.64.130]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with ESMTP id WAA17843 for ; Wed, 14 Oct 1998 22:09:28 +0200 (MET DST) Received: (from dag-erli@localhost) by hindarfjell.ifi.uio.no ; Wed, 14 Oct 1998 22:09:27 +0200 (MET DST) Mime-Version: 1.0 To: committers@FreeBSD.ORG Subject: Re: apply References: Organization: University of Oslo, Department of Informatics X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-other-addresses: 'finger dag-erli@ifi.uio.no' for a list X-disclaimer-1: The views expressed in this article are mine alone, and do X-disclaimer-2: not necessarily coincide with those of any organisation or X-disclaimer-3: company with which I am or have been affiliated. X-Stop-Spam: http://www.cauce.org/ From: dag-erli@ifi.uio.no (Dag-Erling C. =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 14 Oct 1998 22:09:26 +0200 In-Reply-To: dag-erli@ifi.uio.no's message of "14 Oct 1998 21:43:20 +0200" Message-ID: Lines: 10 X-Mailer: Gnus v5.5/Emacs 19.34 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by hub.freebsd.org id NAB17647 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dag-erli@ifi.uio.no (Dag-Erling C. Smørgrav ) writes: > Hmm, apply is broken but I didn't do it, just in case anybody asks :) > Working with EE to track the bug, we think it's an Elf thing. Answering myself: it's not apply, it's something else, we don't know what yet :( DES -- Dag-Erling Smørgrav - dag-erli@ifi.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 13:23:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA19430 for cvs-all-outgoing; Wed, 14 Oct 1998 13:23:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA19423; Wed, 14 Oct 1998 13:23:42 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA19872; Wed, 14 Oct 1998 13:23:40 -0700 (PDT) Date: Wed, 14 Oct 1998 13:23:40 -0700 (PDT) Message-Id: <199810142023.NAA19872@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libc/gen exec.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/10/14 13:23:40 PDT Modified files: lib/libc/gen exec.c Log: Correct braino in previous commit. I get the pointy hat again. Revision Changes Path 1.9 +4 -3 src/lib/libc/gen/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 Oct 14 13:31:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA20457 for cvs-all-outgoing; Wed, 14 Oct 1998 13:31:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from nlsystems.com (nlsys.demon.co.uk [158.152.125.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA20428; Wed, 14 Oct 1998 13:31:12 -0700 (PDT) (envelope-from dfr@nlsystems.com) Received: from herring.nlsystems.com (herring.nlsystems.com [10.0.0.2]) by nlsystems.com (8.9.1/8.8.5) with SMTP id VAA03503; Wed, 14 Oct 1998 21:29:36 +0100 (BST) Date: Wed, 14 Oct 1998 21:29:36 +0100 (BST) From: Doug Rabson To: David Greenman cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c src/sys/i386/i386 busdma_machdep.c vm_machdep.c src/sys/i386/ibcs2 imgact_coff.c src/sys/i386/include param.h src/sys/i386/isa isa.c wd.c src/sys/kern imgact_elf.c sys_pipe.c sysv_shm.c vfs_bio.c ... In-Reply-To: <199810130824.BAA23019@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, 13 Oct 1998, David Greenman wrote: > dg 1998/10/13 01:24:45 PDT > > Modified files: > sys/cam/scsi scsi_da.c > sys/i386/i386 busdma_machdep.c vm_machdep.c > sys/i386/ibcs2 imgact_coff.c > sys/i386/include param.h > sys/i386/isa isa.c wd.c > sys/kern imgact_elf.c sys_pipe.c sysv_shm.c > vfs_bio.c vfs_subr.c > sys/vm default_pager.c device_pager.c > swap_pager.c vm_glue.c vm_map.c vm_mmap.c > vm_pager.c vm_pager.h vm_unix.c > vnode_pager.c vnode_pager.h > Log: > Fixed two potentially serious classes of bugs: > > 1) The vnode pager wasn't properly tracking the file size due to > "size" being page rounded in some cases and not in others. > This sometimes resulted in corrupted files. First noticed by > Terry Lambert. > Fixed by changing the "size" pager_alloc parameter to be a 64bit > byte value (as opposed to a 32bit page index) and changing the > pagers and their callers to deal with this properly. > 2) Fixed a bogus type cast in round_page() and trunc_page() that > caused some 64bit offsets and sizes to be scrambled. Removing > the cast required adding casts at a few dozen callers. > There may be problems with other bogus casts in close-by > macros. A quick check seemed to indicate that those were okay, > however. Do I need to track this change in the alpha port? Can you give me a rough idea of the changes to busdma_machdep.c, vm_machdep.c and param.h so that I can make the appropriate change (if needed). -- Doug Rabson Mail: dfr@nlsystems.com Nonlinear Systems Ltd. Phone: +44 181 951 1891 Fax: +44 181 381 1039 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 13:37:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA21361 for cvs-all-outgoing; Wed, 14 Oct 1998 13:37:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from nlsystems.com (nlsys.demon.co.uk [158.152.125.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA21349; Wed, 14 Oct 1998 13:37:22 -0700 (PDT) (envelope-from dfr@nlsystems.com) Received: from herring.nlsystems.com (herring.nlsystems.com [10.0.0.2]) by nlsystems.com (8.9.1/8.8.5) with SMTP id VAA03538; Wed, 14 Oct 1998 21:35:32 +0100 (BST) Date: Wed, 14 Oct 1998 21:35:32 +0100 (BST) From: Doug Rabson To: Peter Wemm cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/boot/i386/libi386 bootinfo.c src/sys/kern subr_module.c In-Reply-To: <199810140507.WAA12165@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, 13 Oct 1998, Peter Wemm wrote: > peter 1998/10/13 22:07:23 PDT > > Modified files: > sys/boot/i386/libi386 bootinfo.c > sys/kern subr_module.c > Log: > Align to sizeof(long) rather than sizeof(int32_t). It needs to be > long because this code is shared with the alpha. I hope the alpha can > read 32 bit ints at 32 bit alignment (vs. 64 bit alignment). Yes it can. It can read all the data types at their natural alignments. The only problem (for device drivers) is that for sizes smaller than 32bits, it tends to read the 64bit word containing the data and extract the bits it needs. -- Doug Rabson Mail: dfr@nlsystems.com Nonlinear Systems Ltd. Phone: +44 181 951 1891 Fax: +44 181 381 1039 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 13:39:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA21741 for cvs-all-outgoing; Wed, 14 Oct 1998 13:39:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from nlsystems.com (nlsys.demon.co.uk [158.152.125.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA21695; Wed, 14 Oct 1998 13:38:59 -0700 (PDT) (envelope-from dfr@nlsystems.com) Received: from herring.nlsystems.com (herring.nlsystems.com [10.0.0.2]) by nlsystems.com (8.9.1/8.8.5) with SMTP id VAA03547; Wed, 14 Oct 1998 21:38:06 +0100 (BST) Date: Wed, 14 Oct 1998 21:38:06 +0100 (BST) From: Doug Rabson To: Peter Wemm cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/alpha/alpha machdep.c src/sys/alpha/include bootinfo.h src/sys/boot/alpha/boot2 Makefile src/sys/boot/alpha/libalpha bootinfo.c Makefile elf_freebsd.c In-Reply-To: <199810140953.CAA21021@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, 14 Oct 1998, Peter Wemm wrote: > peter 1998/10/14 02:53:25 PDT > > Modified files: > sys/alpha/alpha machdep.c > sys/alpha/include bootinfo.h > sys/boot/alpha/boot2 Makefile > sys/boot/alpha/libalpha Makefile elf_freebsd.c > Added files: > sys/boot/alpha/libalpha bootinfo.c > Log: > Initial attempt to update the Alpha loader and kernel to use the machine > independent elf loader and have access to kld modules. Jordan and I were > not sure how to create boot floppies, and the things we tried just made > SRM laugh in our faces - but it was upset at boot1 which was not touched > by these changes. Essentially this has been untested. :-( > > What this does is to steal the last three slots from the nine spare longs > in the bootinfo_v1 struct to pass the module base pointer through. > > The startup code now to set up and fills in the module and environment > structures, hopefully close enough to the i386 layout to be able to use > the same kernel code. We now pass though the updated end of the kernel > space used, rather than _end. (like the i386). > > If this does not work, it needs to be beaten into shape pronto. Otherwise > it should be backed out before 3.0. > > Pre-approved in principle by: dfr I have my computers set up in the new house, so I'll get this working tomorrow. Its actually pretty reasonable debugging this stuff on the alpha, especially when you can test most of it by netbooting the bootstrap itself. -- Doug Rabson Mail: dfr@nlsystems.com Nonlinear Systems Ltd. Phone: +44 181 951 1891 Fax: +44 181 381 1039 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 13:41:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA22108 for cvs-all-outgoing; Wed, 14 Oct 1998 13:41:00 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA22101; Wed, 14 Oct 1998 13:40:59 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA20436; Wed, 14 Oct 1998 13:40:57 -0700 (PDT) Date: Wed, 14 Oct 1998 13:40:57 -0700 (PDT) Message-Id: <199810142040.NAA20436@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/14 13:40:56 PDT Modified files: sys/boot/i386 Makefile Log: Activate boot2. Revision Changes Path 1.7 +2 -2 src/sys/boot/i386/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 13:44:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA22652 for cvs-all-outgoing; Wed, 14 Oct 1998 13:44:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA22593; Wed, 14 Oct 1998 13:44:08 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA20585; Wed, 14 Oct 1998 13:44:06 -0700 (PDT) Date: Wed, 14 Oct 1998 13:44:06 -0700 (PDT) Message-Id: <199810142044.NAA20585@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern subr_devstat.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/14 13:44:06 PDT Modified files: sys/kern subr_devstat.c Log: Disable the 'devstat_end_transaction' busy count printf until after 3.0 release goes out the door. We know there's a bug in the devstat implementation in the wd driver, but bde and msmith haven't been able to fix it yet. So, disable the printf to avoid confusing/worrying people. Suggested by: msmith Revision Changes Path 1.4 +10 -2 src/sys/kern/subr_devstat.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 14:17:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA26633 for cvs-all-outgoing; Wed, 14 Oct 1998 14:17:48 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA26628; Wed, 14 Oct 1998 14:17:47 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA21730; Wed, 14 Oct 1998 14:17:40 -0700 (PDT) Date: Wed, 14 Oct 1998 14:17:40 -0700 (PDT) Message-Id: <199810142117.OAA21730@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/cam cam_xpt.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/14 14:17:40 PDT Modified files: sys/cam cam_xpt.c Log: Disable tagged queueing for the Seagate Elite 9GB drives. They tend to get hung up when you send tags to them too quickly. (CAM is able to recover from the problem, but this just avoids it altogether.) Reviewed by: gibbs Reported by: Bret Ford and: Martin Renters Revision Changes Path 1.21 +10 -1 src/sys/cam/cam_xpt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 14:59:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA03847 for cvs-all-outgoing; Wed, 14 Oct 1998 14:59:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA03835; Wed, 14 Oct 1998 14:59:57 -0700 (PDT) (envelope-from nate@FreeBSD.org) From: Nate Williams Received: (from nate@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA23612; Wed, 14 Oct 1998 14:59:55 -0700 (PDT) Date: Wed, 14 Oct 1998 14:59:55 -0700 (PDT) Message-Id: <199810142159.OAA23612@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/etc syslog.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nate 1998/10/14 14:59:55 PDT Modified files: etc syslog.conf Log: - Add a couple comment lines to note that spaces are not allowed as field separators. PR: conf/8162 Submitted by: Sheldon Hearn Revision Changes Path 1.9 +3 -1 src/etc/syslog.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 15:03:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA04410 for cvs-all-outgoing; Wed, 14 Oct 1998 15:03:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA04402; Wed, 14 Oct 1998 15:03:01 -0700 (PDT) (envelope-from nate@FreeBSD.org) From: Nate Williams Received: (from nate@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA23819; Wed, 14 Oct 1998 15:02:58 -0700 (PDT) Date: Wed, 14 Oct 1998 15:02:58 -0700 (PDT) Message-Id: <199810142202.PAA23819@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/etc syslog.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nate 1998/10/14 15:02:58 PDT Modified files: (Branch: RELENG_2_2) etc syslog.conf Log: - MFC: Comment that spaces are not valid field separators. Revision Changes Path 1.4.2.5 +3 -1 src/etc/syslog.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 15:13:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA05679 for cvs-all-outgoing; Wed, 14 Oct 1998 15:13:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from metal.intt.org (metal.intt.org [206.109.108.186]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA05667; Wed, 14 Oct 1998 15:13:07 -0700 (PDT) (envelope-from smace@metal.intt.org) Received: (from smace@localhost) by metal.intt.org (8.9.1/8.9.1) id RAA21293; Wed, 14 Oct 1998 17:12:49 -0500 (CDT) From: Scott Mace Message-Id: <199810142212.RAA21293@metal.intt.org> Subject: Re: cvs commit: src/sys/cam cam_xpt.c In-Reply-To: <199810142117.OAA21730@freefall.freebsd.org> from Kenneth Merry at "Oct 14, 1998 2:17:40 pm" To: ken@FreeBSD.ORG (Kenneth Merry) Date: Wed, 14 Oct 1998 17:12:49 -0500 (CDT) Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > ken 1998/10/14 14:17:40 PDT > > Modified files: > sys/cam cam_xpt.c > Log: > Disable tagged queueing for the Seagate Elite 9GB drives. They tend to get > hung up when you send tags to them too quickly. (CAM is able to recover > from the problem, but this just avoids it altogether.) > > Reviewed by: gibbs > Reported by: Bret Ford > and: Martin Renters > > Revision Changes Path > 1.21 +10 -1 src/sys/cam/cam_xpt.c > This is odd, I have 2 elite 9's and they run fine with tagged queuing. What rev are the drives that fail? What are the symptoms exactly (maybe they don't run fine ?@?) In fact without tagged quueing they have very slow performance. Scott To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 15:27:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA07776 for cvs-all-outgoing; Wed, 14 Oct 1998 15:27:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from panzer.plutotech.com (panzer.plutotech.com [206.168.67.125]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA07736; Wed, 14 Oct 1998 15:27:09 -0700 (PDT) (envelope-from ken@panzer.plutotech.com) Received: (from ken@localhost) by panzer.plutotech.com (8.9.1/8.8.5) id QAA12957; Wed, 14 Oct 1998 16:26:35 -0600 (MDT) From: "Kenneth D. Merry" Message-Id: <199810142226.QAA12957@panzer.plutotech.com> Subject: Re: cvs commit: src/sys/cam cam_xpt.c In-Reply-To: <199810142212.RAA21293@metal.intt.org> from Scott Mace at "Oct 14, 98 05:12:49 pm" To: smace@intt.ORG (Scott Mace) Date: Wed, 14 Oct 1998 16:26:35 -0600 (MDT) Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, martin@tdc.on.ca X-Mailer: ELM [version 2.4ME+ PL28s (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Scott Mace wrote... > > ken 1998/10/14 14:17:40 PDT > > > > Modified files: > > sys/cam cam_xpt.c > > Log: > > Disable tagged queueing for the Seagate Elite 9GB drives. They tend to get > > hung up when you send tags to them too quickly. (CAM is able to recover > > from the problem, but this just avoids it altogether.) > > > > Reviewed by: gibbs > > Reported by: Bret Ford > > and: Martin Renters > > > > Revision Changes Path > > 1.21 +10 -1 src/sys/cam/cam_xpt.c > > > > This is odd, I have 2 elite 9's and they run fine > with tagged queuing. What rev are the drives that fail? > What are the symptoms exactly (maybe they don't run fine ?@?) Well, Bret Ford reported the following inquiry info: SEAGATE ST410800N 7110 Martin Renters hasn't yet sent me dmesg information. What firmware revision do you have? The symptoms are that the drive just kinda locks up after heavy I/O. We hit it with a BDR after a minute and it comes back. > In fact without tagged quueing they have very slow performance. I'm sure they do. If we can track it down to a specific firmware revision, we can narrow the quirk entry a little more. Ken -- Kenneth Merry ken@plutotech.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 15:37:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA09807 for cvs-all-outgoing; Wed, 14 Oct 1998 15:37:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from metal.intt.org (metal.intt.org [206.109.108.186]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA09794; Wed, 14 Oct 1998 15:37:43 -0700 (PDT) (envelope-from smace@metal.intt.org) Received: (from smace@localhost) by metal.intt.org (8.9.1/8.9.1) id RAA21607; Wed, 14 Oct 1998 17:37:22 -0500 (CDT) From: Scott Mace Message-Id: <199810142237.RAA21607@metal.intt.org> Subject: Re: cvs commit: src/sys/cam cam_xpt.c In-Reply-To: <199810142226.QAA12957@panzer.plutotech.com> from "Kenneth D. Merry" at "Oct 14, 1998 4:26:35 pm" To: ken@plutotech.com (Kenneth D. Merry) Date: Wed, 14 Oct 1998 17:37:22 -0500 (CDT) Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, martin@tdc.on.ca X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Scott Mace wrote... > > > ken 1998/10/14 14:17:40 PDT > > > > > > Modified files: > > > sys/cam cam_xpt.c > > > Log: > > > Disable tagged queueing for the Seagate Elite 9GB drives. They tend to get > > > hung up when you send tags to them too quickly. (CAM is able to recover > > > from the problem, but this just avoids it altogether.) > > > > > > Reviewed by: gibbs > > > Reported by: Bret Ford > > > and: Martin Renters > > > > > > Revision Changes Path > > > 1.21 +10 -1 src/sys/cam/cam_xpt.c > > > > > > > This is odd, I have 2 elite 9's and they run fine > > with tagged queuing. What rev are the drives that fail? > > What are the symptoms exactly (maybe they don't run fine ?@?) > > Well, Bret Ford reported the following inquiry info: > > SEAGATE ST410800N 7110 > > Martin Renters hasn't yet sent me dmesg information. What firmware > revision do you have? > > The symptoms are that the drive just kinda locks up after heavy I/O. We > hit it with a BDR after a minute and it comes back. > > > In fact without tagged quueing they have very slow performance. > > I'm sure they do. > > If we can track it down to a specific firmware revision, we can narrow the > quirk entry a little more. > My scsi system looks like this: ahc0: rev 0x03 int a irq 11 on pci0.12.0 ahc0: aic7870 Single Channel A, SCSI Id=7, 16/255 SCBs Waiting 15 seconds for SCSI devices to settle sa0 at ahc0 bus 0 target 2 lun 0 sa0: Removable Sequential Access SCSI2 device sa0: 5.0MB/s transfers (5.0MHz, offset 15) sa1 at ahc0 bus 0 target 4 lun 0 sa1: Removable Sequential Access SCSI2 device sa1: 4.32MB/s transfers (4.32MHz, offset 11) da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI2 device da0: 10.0MB/s transfers (10.0MHz, offset 15), Tagged Queueing Enabled da0: 2047MB (4194058 512 byte sectors: 255H 63S/T 261C) da1 at ahc0 bus 0 target 5 lun 0 da1: Fixed Direct Access SCSI2 device da1: 10.0MB/s transfers (10.0MHz, offset 15), Tagged Queueing Enabled da1: 8669MB (17755614 512 byte sectors: 255H 63S/T 1105C) da2 at ahc0 bus 0 target 6 lun 0 da2: Fixed Direct Access SCSI2 device da2: 10.0MB/s transfers (10.0MHz, offset 15), Tagged Queueing Enabled da2: 8669MB (17755614 512 byte sectors: 255H 63S/T 1105C) I have pounded the hell out of these drives in the past 2months with make worlds, cvs updates, hugh rm's, etc. Never had a single hang, hickup, or anyhting. I think the most current firmware is 0025, this is what the seagate repair center is shipping drives out with. Perhaps 7110 is an older firmware naming convention? The only thing I see is this: (da0:ahc0:0:0:0): tagged openings now 64 (da0:ahc0:0:0:0): tagged openings now 63 (da0:ahc0:0:0:0): tagged openings now 62 (da1:ahc0:0:5:0): tagged openings now 64 (da1:ahc0:0:5:0): tagged openings now 63 (da2:ahc0:0:6:0): tagged openings now 64 (da2:ahc0:0:6:0): tagged openings now 63 (da1:ahc0:0:5:0): tagged openings now 62 (da2:ahc0:0:6:0): tagged openings now 62 (da1:ahc0:0:5:0): tagged openings now 61 This is over time under heavy use, but never a lockup or hang or crash. Scott To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 15:40:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA10238 for cvs-all-outgoing; Wed, 14 Oct 1998 15:40:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from tdc.on.ca (tdc.on.ca [204.92.242.39]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA10233; Wed, 14 Oct 1998 15:40:11 -0700 (PDT) (envelope-from martin@tdc.on.ca) Received: (from martin@localhost) by tdc.on.ca (8.8.5/8.8.5) id TAA18262; Wed, 14 Oct 1998 19:46:48 -0400 (EDT) From: Martin Renters Message-Id: <199810142346.TAA18262@tdc.on.ca> Subject: Re: cvs commit: src/sys/cam cam_xpt.c In-Reply-To: <199810142226.QAA12957@panzer.plutotech.com> from "Kenneth D. Merry" at "Oct 14, 98 04:26:35 pm" To: ken@plutotech.com (Kenneth D. Merry) Date: Wed, 14 Oct 1998 19:46:48 -0400 (EDT) Cc: smace@intt.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 > > This is odd, I have 2 elite 9's and they run fine > > with tagged queuing. What rev are the drives that fail? > > What are the symptoms exactly (maybe they don't run fine ?@?) > > Well, Bret Ford reported the following inquiry info: > > SEAGATE ST410800N 7110 > > Martin Renters hasn't yet sent me dmesg information. What firmware > revision do you have? Mine reports SEAGATE ST410800N 7112 Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 15:46:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA11070 for cvs-all-outgoing; Wed, 14 Oct 1998 15:46:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from metal.intt.org (metal.intt.org [206.109.108.186]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA11053; Wed, 14 Oct 1998 15:46:37 -0700 (PDT) (envelope-from smace@metal.intt.org) Received: (from smace@localhost) by metal.intt.org (8.9.1/8.9.1) id RAA21697; Wed, 14 Oct 1998 17:44:53 -0500 (CDT) From: Scott Mace Message-Id: <199810142244.RAA21697@metal.intt.org> Subject: Re: cvs commit: src/sys/cam cam_xpt.c In-Reply-To: <199810142346.TAA18262@tdc.on.ca> from Martin Renters at "Oct 14, 1998 7:46:48 pm" To: martin@tdc.on.ca (Martin Renters) Date: Wed, 14 Oct 1998 17:44:52 -0500 (CDT) Cc: ken@plutotech.com, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > > > This is odd, I have 2 elite 9's and they run fine > > > with tagged queuing. What rev are the drives that fail? > > > What are the symptoms exactly (maybe they don't run fine ?@?) > > > > Well, Bret Ford reported the following inquiry info: > > > > SEAGATE ST410800N 7110 > > > > Martin Renters hasn't yet sent me dmesg information. What firmware > > revision do you have? > > Mine reports SEAGATE ST410800N 7112 > > Martin > How old is your drive? Not sure how old mine is. The warranty validation thing said that the warranty expires in Dec 1999. DOes anyone remember how long the warranties originally lasted? 3year? Scott To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 15:49:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA11578 for cvs-all-outgoing; Wed, 14 Oct 1998 15:49:20 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from panzer.plutotech.com (panzer.plutotech.com [206.168.67.125]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA11540; Wed, 14 Oct 1998 15:49:13 -0700 (PDT) (envelope-from ken@panzer.plutotech.com) Received: (from ken@localhost) by panzer.plutotech.com (8.9.1/8.8.5) id QAA13163; Wed, 14 Oct 1998 16:46:11 -0600 (MDT) From: "Kenneth D. Merry" Message-Id: <199810142246.QAA13163@panzer.plutotech.com> Subject: Re: cvs commit: src/sys/cam cam_xpt.c In-Reply-To: <199810142346.TAA18262@tdc.on.ca> from Martin Renters at "Oct 14, 98 07:46:48 pm" To: martin@tdc.on.ca (Martin Renters) Date: Wed, 14 Oct 1998 16:46:11 -0600 (MDT) Cc: smace@intt.org, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL28s (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Martin Renters wrote... > > > This is odd, I have 2 elite 9's and they run fine > > > with tagged queuing. What rev are the drives that fail? > > > What are the symptoms exactly (maybe they don't run fine ?@?) > > > > Well, Bret Ford reported the following inquiry info: > > > > SEAGATE ST410800N 7110 > > > > Martin Renters hasn't yet sent me dmesg information. What firmware > > revision do you have? > > Mine reports SEAGATE ST410800N 7112 Okay, I'll change the quirk entry to be something like this: ==== //depot/cam/sys/cam/cam_xpt.c#168 - /usr/home/ken/perforce/cam/sys/cam/cam_xpt.c ==== *** /tmp/tmp.2966.0 Wed Oct 14 16:43:41 1998 --- /usr/home/ken/perforce/cam/sys/cam/cam_xpt.c Wed Oct 14 16:43:25 1998 *************** *** 264,269 **** --- 264,278 ---- { T_DIRECT, SIP_MEDIA_FIXED, "MICROP", "3391*", "x43h" }, /*quirks*/0, /*mintags*/0, /*maxtags*/0 }, + { + /* + * Broken tagged queuing drive + * Reported by: Bret Ford + * and: Martin Renters + */ + { T_DIRECT, SIP_MEDIA_FIXED, "SEAGATE", "ST410800*", "71*" }, + /*quirks*/0, /*mintags*/0, /*maxtags*/0 + }, { /* Broken tagged queuing drive */ { T_DIRECT, SIP_MEDIA_REMOVABLE, "iomega", "jaz*", "*" }, That should disable tagged queueing for the drives that have been reported as broken, but keep it enabled for the ones that have been reported to work. Ken -- Kenneth Merry ken@plutotech.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 15:51:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA12143 for cvs-all-outgoing; Wed, 14 Oct 1998 15:51:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA12135; Wed, 14 Oct 1998 15:51:54 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA25656; Wed, 14 Oct 1998 15:51:52 -0700 (PDT) Date: Wed, 14 Oct 1998 15:51:52 -0700 (PDT) Message-Id: <199810142251.PAA25656@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/cam cam_xpt.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/14 15:51:52 PDT Modified files: sys/cam cam_xpt.c Log: Narrow the quirk entry for the Seagate Elite 9 a bit to just cover drives with 71* firmware revisions. Scott Mace reports that drives with 00* firmware revisions do tagged queueing just fine. Revision Changes Path 1.22 +2 -2 src/sys/cam/cam_xpt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 15:54:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA12444 for cvs-all-outgoing; Wed, 14 Oct 1998 15:54:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from tdc.on.ca (tdc.on.ca [204.92.242.39]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA12436; Wed, 14 Oct 1998 15:54:24 -0700 (PDT) (envelope-from martin@tdc.on.ca) Received: (from martin@localhost) by tdc.on.ca (8.8.5/8.8.5) id UAA18319; Wed, 14 Oct 1998 20:01:02 -0400 (EDT) From: Martin Renters Message-Id: <199810150001.UAA18319@tdc.on.ca> Subject: Re: cvs commit: src/sys/cam cam_xpt.c In-Reply-To: <199810142244.RAA21697@metal.intt.org> from Scott Mace at "Oct 14, 98 05:44:52 pm" To: smace@intt.ORG (Scott Mace) Date: Wed, 14 Oct 1998 20:01:02 -0400 (EDT) Cc: ken@plutotech.com, 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 > > Mine reports SEAGATE ST410800N 7112 > > > > Martin > > > > How old is your drive? > > Not sure how old mine is. The warranty validation thing said that the > warranty expires in Dec 1999. DOes anyone remember how long the warranties > originally lasted? 3year? Not sure. I got it second hand, but the guy I got them from returned one and it was still under warranty. Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 16:28:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA17953 for cvs-all-outgoing; Wed, 14 Oct 1998 16:28:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA17946; Wed, 14 Oct 1998 16:28:29 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA26745; Wed, 14 Oct 1998 16:28:27 -0700 (PDT) Date: Wed, 14 Oct 1998 16:28:27 -0700 (PDT) Message-Id: <199810142328.QAA26745@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libdevstat devstat.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/14 16:28:27 PDT Modified files: lib/libdevstat devstat.c Log: Fix a couple of potential buffer overrun cases. Submitted by: imp Revision Changes Path 1.4 +8 -4 src/lib/libdevstat/devstat.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 16:30:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA18375 for cvs-all-outgoing; Wed, 14 Oct 1998 16:30:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA18270; Wed, 14 Oct 1998 16:30:16 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA26818; Wed, 14 Oct 1998 16:30:12 -0700 (PDT) Date: Wed, 14 Oct 1998 16:30:12 -0700 (PDT) Message-Id: <199810142330.QAA26818@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/textproc/sp Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/14 16:30:12 PDT Modified files: textproc/sp Makefile Log: Mark BROKEN for ELF: cc -O -pipe -o nsgmls nsgmls.o SgmlsEventHandler.o RastEventHandler.o StringSet.o nsgmls_inst.o -lstdc++ -L/usr/ports/textproc/sp/work/sp-1.2.1/nsgmls/../lib -lsp /usr/lib/libstdc++.so: undefined reference to `log' /usr/lib/libstdc++.so: undefined reference to `sqrt' /usr/lib/libstdc++.so: undefined reference to `cosh' /usr/lib/libstdc++.so: undefined reference to `cos' /usr/lib/libstdc++.so: undefined reference to `sin' Revision Changes Path 1.7 +3 -1 ports/textproc/sp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 16:31:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA18447 for cvs-all-outgoing; Wed, 14 Oct 1998 16:31:01 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA18425; Wed, 14 Oct 1998 16:30:52 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA26860; Wed, 14 Oct 1998 16:30:49 -0700 (PDT) Date: Wed, 14 Oct 1998 16:30:49 -0700 (PDT) Message-Id: <199810142330.QAA26860@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/comline Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/14 16:30:49 PDT Modified files: www/comline Makefile Log: Mark BRKOEN for ELF: touch ../../ComLine/freebsd/.created cc -c -o ../../ComLine/freebsd/HTLine.o -O -pipe -DDEBUG -D__BSD__ -I../../Library/Implementation -I../../ComLine/Implementation -DVT=\"4.0D\" ../../ComLine/Implementation/HTLine.c cc -o ../../ComLine/freebsd/w3c_4.0D ../../ComLine/freebsd/HTLine.o -L../../Library/freebsd -lwww /usr/libexec/elf/ld: cannot open -lwww: No such file or directory *** Error code 1 Revision Changes Path 1.8 +3 -1 ports/www/comline/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 16:39:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA19462 for cvs-all-outgoing; Wed, 14 Oct 1998 16:39:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au (spinner.netplex.com.au [202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA19454; Wed, 14 Oct 1998 16:39:02 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.9.1/8.9.1/Spinner) with ESMTP id HAA08279; Thu, 15 Oct 1998 07:11:04 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199810142311.HAA08279@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: Mike Smith cc: Garrett Wollman , Robert Nordier , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/boot/i386/boot2 Makefile In-reply-to: Your message of "Wed, 14 Oct 1998 08:46:59 MST." <199810141546.IAA00919@dingo.cdrom.com> Date: Thu, 15 Oct 1998 07:11:03 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Mike Smith wrote: > > < said: > > > > > /usr/mdec is the wrong location. Nothing belongs there, and the > > > directory itself should be removed. > > > > Hello?! > > > > /usr/ contains the majority of user utilities and applications > > mdec/ boot programs; see disklabel(8) > > > > I'd say something definitely DOES belong there -- the boot programs > > installed by disklabel(8). > > The directory is a wart. It may be an historic wart, but it's still a > wart. Every other collection of application-specific data is collected > elsewhere. The existence of /usr/mdec causes not inconsiderable > confusion ("why there?" "what does 'mdec' mean?"). > > Boot programs that are read out of the filesystem belong in /boot. > Binary information that's used by disklabel belongs in /usr/libdata, > unless you want it on / for repair purposes, when /boot is a more > sensible place. Boot programs are read out of /, /boot and the boot sectors at boot time. Boot *blocks* that disklabel uses to install in the boot sectors are in /usr/mdec. disklabel has got this location hardcoded in it. You have multiple choices of boot blocks and other programs (eg: dos executables, ROM images etc) that do not require wasting precious space on /. Having them on /usr is not an issue. Either you can boot the system or you cannot. If you boot from floppy, then you can easily mount / and /usr. If /usr is destroyed as well as your bootblocks, the system is in a pretty sad state and installing the bootblocks isn't going to make the slightest difference to it's operational state - ie: still cactus. 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 Oct 14 16:39:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA19530 for cvs-all-outgoing; Wed, 14 Oct 1998 16:39:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA19525; Wed, 14 Oct 1998 16:39:56 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA27130; Wed, 14 Oct 1998 16:39:54 -0700 (PDT) Date: Wed, 14 Oct 1998 16:39:54 -0700 (PDT) Message-Id: <199810142339.QAA27130@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/libpics Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/14 16:39:54 PDT Modified files: www/libpics Makefile Log: Mark BROKEN for elf, old version nums: Creating package /usr/ports/packages/All/libpics-1.0.tgz Registering depends:. Creating gzip'd tar ball in '/usr/ports/packages/All/libpics-1.0.tgz' tar: can't add file lib/libpics.so.1 : No such file or directory /usr/sbin/pkg_create: tar command failed with code 256 *** Error code 1 Revision Changes Path 1.3 +3 -1 ports/www/libpics/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 16:45:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA20231 for cvs-all-outgoing; Wed, 14 Oct 1998 16:45:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA20226; Wed, 14 Oct 1998 16:45:56 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA27299; Wed, 14 Oct 1998 16:45:54 -0700 (PDT) Date: Wed, 14 Oct 1998 16:45:54 -0700 (PDT) Message-Id: <199810142345.QAA27299@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/xarchie Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/14 16:45:54 PDT Modified files: net/xarchie Makefile Log: Unbreak for ELF. Revision Changes Path 1.14 +2 -3 ports/net/xarchie/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 16:46:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA20392 for cvs-all-outgoing; Wed, 14 Oct 1998 16:46:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA20385; Wed, 14 Oct 1998 16:46:42 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA27354; Wed, 14 Oct 1998 16:46:40 -0700 (PDT) Date: Wed, 14 Oct 1998 16:46:40 -0700 (PDT) Message-Id: <199810142346.QAA27354@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/libwww Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/14 16:46:40 PDT Modified files: www/libwww Makefile Log: Mark BROKEN for ELF: ===> Building package for libwww-5.1m1 Creating package /usr/ports/packages/All/libwww-5.1m1.tgz Registering depends:. Creating gzip'd tar ball in '/usr/ports/packages/All/libwww-5.1m1.tgz' tar: can't add file lib/libwww.so.5 : No such file or directory /usr/sbin/pkg_create: tar command failed with code 256 *** Error code 1 Revision Changes Path 1.11 +3 -1 ports/www/libwww/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 16:53:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA21181 for cvs-all-outgoing; Wed, 14 Oct 1998 16:53:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA21174; Wed, 14 Oct 1998 16:53:20 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA27679; Wed, 14 Oct 1998 16:53:17 -0700 (PDT) Date: Wed, 14 Oct 1998 16:53:17 -0700 (PDT) Message-Id: <199810142353.QAA27679@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/linemode Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/14 16:53:17 PDT Modified files: www/linemode Makefile Log: Mark BROKEN for ELF: cc -o ../../LineMode/freebsd/www_4.0D ../../LineMode/freebsd/HTBrowse.o ../../LineMode/freebsd/GridText.o ../../LineMode/freebsd/DefaultStyles.o -L../../Library/freebsd -lwww /usr/libexec/elf/ld: cannot open -lwww: No such file or directory *** Error code 1 Revision Changes Path 1.14 +3 -1 ports/www/linemode/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 16:56:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA21462 for cvs-all-outgoing; Wed, 14 Oct 1998 16:56:03 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au (spinner.netplex.com.au [202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA21407; Wed, 14 Oct 1998 16:55:55 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.9.1/8.9.1/Spinner) with ESMTP id HAA08377; Thu, 15 Oct 1998 07:28:16 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199810142328.HAA08377@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: "Justin M. Seger" cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/textproc/sp Makefile In-reply-to: Your message of "Wed, 14 Oct 1998 16:30:12 MST." <199810142330.QAA26818@freefall.freebsd.org> Date: Thu, 15 Oct 1998 07:28:15 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Justin M. Seger" wrote: > jseger 1998/10/14 16:30:12 PDT > > Modified files: > textproc/sp Makefile > Log: > Mark BROKEN for ELF: > cc -O -pipe -o nsgmls nsgmls.o SgmlsEventHandler.o RastEventHandler.o St ringSet.o nsgmls_inst.o -lstdc++ -L/usr/ports/textproc/sp/work/sp-1.2.1/ns gmls/../lib -lsp > /usr/lib/libstdc++.so: undefined reference to `log' > /usr/lib/libstdc++.so: undefined reference to `sqrt' > /usr/lib/libstdc++.so: undefined reference to `cosh' > /usr/lib/libstdc++.so: undefined reference to `cos' > /usr/lib/libstdc++.so: undefined reference to `sin' This should have been fixed in 3.0 a few days ago: [7:39am]~-105> elfdump -Lv /usr/lib/libstdc++.so /usr/lib/libstdc++.so: **** DYNAMIC SECTION INFORMATION **** .dynamic : [INDEX] Tag Value [1] NEEDED libm.so.2 <<<< Here. [2] SONAME libstdc++.so.2 [3] INIT 0x10fb0 [4] FINI 0x2ec1c [5] HASH 0x94 [..] The DT_NEEDED tag should allow ld to consider libstdc++'s use of libm as complete, unless nsgmls uses it too. objdump --all-headers shows this too, but its output is less convenient. I tested the unmodified port on an up-to-date system: [..] c++ -fno-implicit-templates -O2 -ansi -DSGML_CATALOG_FILES_DEFAULT=\"/usr/local/share/sgml/catalog\" -I. -I/home/ports/textproc/sp/work/sp-1.2.1/nsgmls/../include -I/home/ports/textproc/sp/work/sp-1.2.1/nsgmls/../generic -c nsgmls_inst.cxx cc -O -pipe -o nsgmls nsgmls.o SgmlsEventHandler.o RastEventHandler.o StringSet.o nsgmls_inst.o -lstdc++ -L/home/ports/textproc/sp/work/sp-1.2.1/nsgmls/../lib -lsp ===> sgmlnorm [..] ===> spent Warning: Object directory not changed from original /home/ports/textproc/sp/work/sp-1.2.1/spent c++ -fno-implicit-templates -O2 -ansi -DSGML_CATALOG_FILES_DEFAULT=\"/usr/local/share/sgml/catalog\" -I. -I/home/ports/textproc/sp/work/sp-1.2.1/spent/../include -I/home/ports/textproc/sp/work/sp-1.2.1/spent/../generic -c spent.cxx cc -O -pipe -o spent spent.o -lstdc++ -L/home/ports/textproc/sp/work/sp-1.2.1/spent/../lib -lsp ===> doc [7:54am]~ports/textproc/sp-111> It works on an up-to-date ELF -current system. 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 Oct 14 16:56:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA21546 for cvs-all-outgoing; Wed, 14 Oct 1998 16:56:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA21538; Wed, 14 Oct 1998 16:56:43 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA27837; Wed, 14 Oct 1998 16:56:41 -0700 (PDT) Date: Wed, 14 Oct 1998 16:56:41 -0700 (PDT) Message-Id: <199810142356.QAA27837@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/lang/ptoc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/14 16:56:41 PDT Modified files: lang/ptoc Makefile Log: Unbreak. Submitted by: steve Revision Changes Path 1.5 +2 -2 ports/lang/ptoc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 17:07:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA22544 for cvs-all-outgoing; Wed, 14 Oct 1998 17:07:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA22539; Wed, 14 Oct 1998 17:07:07 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA28131; Wed, 14 Oct 1998 17:07:05 -0700 (PDT) Date: Wed, 14 Oct 1998 17:07:05 -0700 (PDT) Message-Id: <199810150007.RAA28131@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/news/tin Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/14 17:07:05 PDT Modified files: news/tin Makefile Log: Unbreak. Submitted by: steve Revision Changes Path 1.64 +2 -3 ports/news/tin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 17:15:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA23850 for cvs-all-outgoing; Wed, 14 Oct 1998 17:15:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA23845; Wed, 14 Oct 1998 17:15:07 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA28707; Wed, 14 Oct 1998 17:15:01 -0700 (PDT) Date: Wed, 14 Oct 1998 17:15:01 -0700 (PDT) Message-Id: <199810150015.RAA28707@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/gdb Makefile.inc Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/14 17:15:01 PDT Modified files: gnu/usr.bin/gdb Makefile.inc Log: Install gdb in /usr/lib/aout or /usr/lib/elf depending on format. Revision Changes Path 1.5 +7 -1 src/gnu/usr.bin/gdb/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 17:19:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA24637 for cvs-all-outgoing; Wed, 14 Oct 1998 17:19:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA24625; Wed, 14 Oct 1998 17:19:10 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA28935; Wed, 14 Oct 1998 17:19:08 -0700 (PDT) Date: Wed, 14 Oct 1998 17:19:08 -0700 (PDT) Message-Id: <199810150019.RAA28935@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/objformat Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/14 17:19:08 PDT Modified files: usr.bin/objformat Makefile Log: Add objformat links for gdb and (while we're at it) c++filt. This means we can (assuming an a.out gdb is present) debug a.out kernels and crashdumps with gdb -aout. Revision Changes Path 1.11 +3 -1 src/usr.bin/objformat/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 18:16:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA03493 for cvs-all-outgoing; Wed, 14 Oct 1998 18:16:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA03488; Wed, 14 Oct 1998 18:16:31 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA00672; Wed, 14 Oct 1998 18:16:24 -0700 (PDT) Date: Wed, 14 Oct 1998 18:16:24 -0700 (PDT) Message-Id: <199810150116.SAA00672@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/mozilla Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/14 18:16:24 PDT Modified files: www/mozilla Makefile Log: Mark BROKEN for ELF bad library numbers Revision Changes Path 1.27 +3 -1 ports/www/mozilla/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 18:18:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA03986 for cvs-all-outgoing; Wed, 14 Oct 1998 18:18:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA03970; Wed, 14 Oct 1998 18:18:25 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA00748; Wed, 14 Oct 1998 18:18:23 -0700 (PDT) Date: Wed, 14 Oct 1998 18:18:23 -0700 (PDT) Message-Id: <199810150118.SAA00748@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11/XttXF86srv-common Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/14 18:18:23 PDT Modified files: x11/XttXF86srv-common Makefile Log: Mark BROKEN for ELF: Creating package /usr/ports/packages/All/xtt-common-1.0.tgz Registering depends: freetype-1.1. Creating gzip'd tar ball in '/usr/ports/packages/All/xtt-common-1.0.tgz' tar: can't add file lib/modules/codeconv/BIG5.so : No such file or directory tar: can't add file lib/modules/codeconv/GB2312.so : No such file or directory tar: can't add file lib/modules/codeconv/ISO8859_1.so : No such file or directory tar: can't add file lib/modules/codeconv/ISO8859_10.so : No such file or directory tar: can't add file lib/modules/codeconv/ISO8859_15.so : No such file or directory tar: can't add file lib/modules/codeconv/ISO8859_2.so : No such file or director Revision Changes Path 1.6 +3 -1 ports/x11/XttXF86srv-common/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 18:24:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA05298 for cvs-all-outgoing; Wed, 14 Oct 1998 18:24:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA05176 for ; Wed, 14 Oct 1998 18:24:11 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id UAA18589 for ; Wed, 14 Oct 1998 20:23:54 -0500 (CDT) Date: Wed, 14 Oct 1998 20:23:54 -0500 (CDT) From: Steve Price To: committers@FreeBSD.ORG Subject: annoying make(1) behavior Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Hi All, No offense to the John B. who committed revision 1.7 of src/usr.bin/make/config.h, but this has made -current's make take on a very annoying behavior. In an ELF world despite the fact that a library doesn't even exist make(1) says it is up-to-date and the build fails. A good example of what I'm talking about is the yale-tftpd port. I have fixed several ports by just using 'USE_GMAKE=yes', just to get them fixed before we go to release, but "this ain't right" especially for this port since it uses a bmake'd Makefile. Bruce will probably have a quick answer for why this is the correct behavior, but it seems severely broken to me. I have taken a look at it and developed a couple of hacks, none of which I think are appropriate for inclusion in the pending release, so if anyone has some time and knows their way around make(1) it would be great if this could be fixed before the release. And yes, just reverting revision 1.7 does work, but this isn't the right solution either or John wouldn't have made the commit to begin with. Thanks, Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 18:28:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA06178 for cvs-all-outgoing; Wed, 14 Oct 1998 18:28:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA06163; Wed, 14 Oct 1998 18:28:36 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA01046; Wed, 14 Oct 1998 18:28:35 -0700 (PDT) Date: Wed, 14 Oct 1998 18:28:35 -0700 (PDT) Message-Id: <199810150128.SAA01046@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/p5-WWW-Search Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/14 18:28:34 PDT Modified files: www/p5-WWW-Search Makefile Log: Mark BROKEN for current: cp bin/AutoSearch /usr/bin ===> Generating temporary packing list ===> Compressing manual pages for p5-WWW-Search-1.021 /usr/local/man//man1/AutoSearch.1: No such file or directory *** Error code 1 Revision Changes Path 1.9 +6 -1 ports/www/p5-WWW-Search/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 18:29:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA06290 for cvs-all-outgoing; Wed, 14 Oct 1998 18:29:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA06260; Wed, 14 Oct 1998 18:28:56 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.9.1/8.9.0) with ESMTP id KAA03256; Thu, 15 Oct 1998 10:58:38 +0930 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.9.1/8.9.0) id KAA02004; Thu, 15 Oct 1998 10:58:36 +0930 (CST) Message-ID: <19981015105836.J586@freebie.lemis.com> Date: Thu, 15 Oct 1998 10:58:36 +0930 From: Greg Lehey To: Peter Wemm , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/gnu/usr.bin/gdb Makefile.inc References: <199810150015.RAA28707@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199810150015.RAA28707@freefall.freebsd.org>; from Peter Wemm on Wed, Oct 14, 1998 at 05:15:01PM -0700 WWW-Home-Page: http://www.lemis.com/~grog Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Wednesday, 14 October 1998 at 17:15:01 -0700, Peter Wemm wrote: > peter 1998/10/14 17:15:01 PDT > > Modified files: > gnu/usr.bin/gdb Makefile.inc > Log: > Install gdb in /usr/lib/aout or /usr/lib/elf depending on format. /usr/lib? Is this the executable? Or are you putting in a link from /usr/bin? Greg -- See complete headers for address, home page and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 18:42:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA08282 for cvs-all-outgoing; Wed, 14 Oct 1998 18:42:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA08277; Wed, 14 Oct 1998 18:42:56 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA01419; Wed, 14 Oct 1998 18:42:54 -0700 (PDT) Date: Wed, 14 Oct 1998 18:42:54 -0700 (PDT) Message-Id: <199810150142.SAA01419@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/yale-tftpd Makefile ports/net/yale-tftpd/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/14 18:42:54 PDT Modified files: net/yale-tftpd Makefile net/yale-tftpd/pkg PLIST Log: Unbreak for ELF. Submitted by: steve Revision Changes Path 1.11 +6 -3 ports/net/yale-tftpd/Makefile 1.4 +0 -1 ports/net/yale-tftpd/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 Oct 14 18:47:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA08756 for cvs-all-outgoing; Wed, 14 Oct 1998 18:47:44 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA08751; Wed, 14 Oct 1998 18:47:43 -0700 (PDT) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA01571; Wed, 14 Oct 1998 18:47:41 -0700 (PDT) Date: Wed, 14 Oct 1998 18:47:41 -0700 (PDT) Message-Id: <199810150147.SAA01571@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libc/gen popen.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/10/14 18:47:41 PDT Modified files: lib/libc/gen popen.c Log: Conform to POSIX and close any copies of popen() descriptors inherited by a popen()ed child. PR: misc/7810 Submitted by: Wayne Scott Revision Changes Path 1.12 +4 -0 src/lib/libc/gen/popen.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 18:56:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA09768 for cvs-all-outgoing; Wed, 14 Oct 1998 18:56:20 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au (spinner.netplex.com.au [202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA09669; Wed, 14 Oct 1998 18:55:56 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.9.1/8.9.1/Spinner) with ESMTP id JAA08817; Thu, 15 Oct 1998 09:27:22 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199810150127.JAA08817@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: Greg Lehey cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/gnu/usr.bin/gdb Makefile.inc In-reply-to: Your message of "Thu, 15 Oct 1998 10:58:36 +0930." <19981015105836.J586@freebie.lemis.com> Date: Thu, 15 Oct 1998 09:27:22 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Greg Lehey wrote: > On Wednesday, 14 October 1998 at 17:15:01 -0700, Peter Wemm wrote: > > peter 1998/10/14 17:15:01 PDT > > > > Modified files: > > gnu/usr.bin/gdb Makefile.inc > > Log: > > Install gdb in /usr/lib/aout or /usr/lib/elf depending on format. > > /usr/lib? Is this the executable? Or are you putting in a link from > /usr/bin? Sorry, typo. The commit was for /usr/libexec/{aout,elf}. I've been using this for a few months. > Greg 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 Oct 14 19:02:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA10983 for cvs-all-outgoing; Wed, 14 Oct 1998 19:02:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA10859; Wed, 14 Oct 1998 19:01:59 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA01979; Wed, 14 Oct 1998 19:01:52 -0700 (PDT) Date: Wed, 14 Oct 1998 19:01:52 -0700 (PDT) Message-Id: <199810150201.TAA01979@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/conf files src/sys/ddb db_kld.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/14 19:01:51 PDT Modified files: sys/conf files sys/ddb db_kld.c Log: Forgot to commit this; the alpha uses the kld symbol interface now. The tables that db_elf.c is expecting are not loaded in that format any more. Revision Changes Path 1.164 +0 -1 src/sys/conf/files 1.4 +2 -2 src/sys/ddb/db_kld.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 19:03:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA11152 for cvs-all-outgoing; Wed, 14 Oct 1998 19:03:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA11147; Wed, 14 Oct 1998 19:03:16 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA02043; Wed, 14 Oct 1998 19:03:15 -0700 (PDT) Date: Wed, 14 Oct 1998 19:03:15 -0700 (PDT) Message-Id: <199810150203.TAA02043@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/w3c-httpd Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/14 19:03:15 PDT Modified files: www/w3c-httpd Makefile Log: Mark BROKEN for ELF: echo "Include files generated from hypertext." Include files generated from hypertext. cc -o httpd_3.0A HTDaemonDIR.o HTRequest.o HTRetrieve.o HTScript.o HTLoad.o HTCache.o HTCacheInfo.o HTConfig.o HTWild.o HTSInit.o HTSUtils.o HTims.o HTPasswd.o HTAuth.o HTLex.o HTGroup.o HTACL.o HTAAProt.o HTAAServ.o HTAAFile.o HTLog.o HTgc.o HTUserInit.o HTRFC931.o ../../Library/freebsd/libwww.a -lcrypt cc: ../../Library/freebsd/libwww.a: No such file or directory *** Error code 1 Revision Changes Path 1.18 +3 -1 ports/www/w3c-httpd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 19:08:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA11981 for cvs-all-outgoing; Wed, 14 Oct 1998 19:08:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA11972; Wed, 14 Oct 1998 19:08:20 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA02265; Wed, 14 Oct 1998 19:08:18 -0700 (PDT) Date: Wed, 14 Oct 1998 19:08:18 -0700 (PDT) Message-Id: <199810150208.TAA02265@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/web500gw Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/14 19:08:17 PDT Modified files: www/web500gw Makefile Log: Mark BROKEN for ELF: gcc -O -pipe -DUSE_SYSCONF -I. -I/usr/local/include -DMODIFY -DWEB500GW_DEBUG -DSUPPORT_OLD_URLS -DWEB500GWDIR=\"/usr/local/etc/web500gw\" -DLDAPVERSION=33 -DLDAP_DEBUG -fpcc-struct-return -fwritable-strings -c gwversion.c gcc -o web500gw web500gw.o read.o search.o modify.o add.o navigation.o util.o web_util.o dir_util.o ldap2html.o messages.o init.o config.o detach.o setproctitle.o gwversion.o -L/usr/local/lib -lldap -llber util.o: In function `find_access': util.o(.text+0x91a): undefined reference to `re_comp' util.o(.text+0x927): undefined reference to `re_exec' util.o: In function `find_language': util.o(.text+0x96a): undefined reference to `re_comp' util.o(.text+0x977): undefined reference to `re_exec' util.o: In function `find_browser': util.o(.text+0xd2e): undefined reference to `re_comp' util.o(.text+0xd3b): undefined reference to `re_exec' *** Error code 1 Revision Changes Path 1.4 +3 -1 ports/www/web500gw/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 19:19:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA13610 for cvs-all-outgoing; Wed, 14 Oct 1998 19:19:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA13598; Wed, 14 Oct 1998 19:19:41 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.9.1/8.9.0) with ESMTP id LAA03545; Thu, 15 Oct 1998 11:49:19 +0930 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.9.1/8.9.0) id LAA02216; Thu, 15 Oct 1998 11:49:19 +0930 (CST) Message-ID: <19981015114918.N586@freebie.lemis.com> Date: Thu, 15 Oct 1998 11:49:18 +0930 From: Greg Lehey To: Peter Wemm Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/gnu/usr.bin/gdb Makefile.inc References: <19981015105836.J586@freebie.lemis.com> <199810150127.JAA08817@spinner.netplex.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199810150127.JAA08817@spinner.netplex.com.au>; from Peter Wemm on Thu, Oct 15, 1998 at 09:27:22AM +0800 WWW-Home-Page: http://www.lemis.com/~grog Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Thursday, 15 October 1998 at 9:27:22 +0800, Peter Wemm wrote: > Greg Lehey wrote: >> On Wednesday, 14 October 1998 at 17:15:01 -0700, Peter Wemm wrote: >>> peter 1998/10/14 17:15:01 PDT >>> >>> Modified files: >>> gnu/usr.bin/gdb Makefile.inc >>> Log: >>> Install gdb in /usr/lib/aout or /usr/lib/elf depending on format. >> >> /usr/lib? Is this the executable? Or are you putting in a link from >> /usr/bin? > > Sorry, typo. The commit was for /usr/libexec/{aout,elf}. I've been using > this for a few months. I still don't understand what gdb's doing in there. Do you have /usr/libexec/ in your PATH? Greg -- See complete headers for address, home page and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 19:35:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA16477 for cvs-all-outgoing; Wed, 14 Oct 1998 19:35:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au (spinner.netplex.com.au [202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA16463; Wed, 14 Oct 1998 19:35:11 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.9.1/8.9.1/Spinner) with ESMTP id KAA09027; Thu, 15 Oct 1998 10:04:58 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199810150204.KAA09027@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: Greg Lehey cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/gnu/usr.bin/gdb Makefile.inc In-reply-to: Your message of "Thu, 15 Oct 1998 11:49:18 +0930." <19981015114918.N586@freebie.lemis.com> Date: Thu, 15 Oct 1998 10:04:57 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Greg Lehey wrote: > On Thursday, 15 October 1998 at 9:27:22 +0800, Peter Wemm wrote: > > Greg Lehey wrote: > >> On Wednesday, 14 October 1998 at 17:15:01 -0700, Peter Wemm wrote: > >>> peter 1998/10/14 17:15:01 PDT > >>> > >>> Modified files: > >>> gnu/usr.bin/gdb Makefile.inc > >>> Log: > >>> Install gdb in /usr/lib/aout or /usr/lib/elf depending on format. > >> > >> /usr/lib? Is this the executable? Or are you putting in a link from > >> /usr/bin? > > > > Sorry, typo. The commit was for /usr/libexec/{aout,elf}. I've been using > > this for a few months. > > I still don't understand what gdb's doing in there. Do you have > /usr/libexec/ in your PATH? No, /usr/bin/objformat is linked to /usr/bin/gdb, and it does the redirection based on $OBJFORMAT, /etc/objformat and any -aout or -elf arguments. This means that "/usr/bin/gdb -aout" causes /usr/libexec/aout/ gdb to get run, and likewise /usr/libexec/elf/gdb for elf. We have not been supplying an a.out gdb at all. Remember, the 3.0 relase is elf based, and /usr/bin/gdb would have been ELF-only and completely unable to read the kernel or crashdumps. At least there's a place to put an a.out gdb now without breaking the elf development environment. > Greg 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 Oct 14 20:56:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA26602 for cvs-all-outgoing; Wed, 14 Oct 1998 20:56:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA26597; Wed, 14 Oct 1998 20:56:20 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA05316; Wed, 14 Oct 1998 20:56:18 -0700 (PDT) Date: Wed, 14 Oct 1998 20:56:18 -0700 (PDT) Message-Id: <199810150356.UAA05316@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/bin/cp cp.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1998/10/14 20:56:18 PDT Modified files: (Branch: RELENG_2_2) bin/cp cp.1 Log: MFC: {rev 1.11} Correct a grammatical nit and remove ambiguity about the effect of the -p option. Revision Changes Path 1.6.2.3 +6 -4 src/bin/cp/cp.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 21:31:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA00257 for cvs-all-outgoing; Wed, 14 Oct 1998 21:31:48 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA00252; Wed, 14 Oct 1998 21:31:47 -0700 (PDT) (envelope-from sef@FreeBSD.org) From: Sean Eric Fagan Received: (from sef@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA06431; Wed, 14 Oct 1998 21:31:45 -0700 (PDT) Date: Wed, 14 Oct 1998 21:31:45 -0700 (PDT) Message-Id: <199810150431.VAA06431@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/truss syscalls.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sef 1998/10/14 21:31:44 PDT Modified files: usr.bin/truss syscalls.c Log: Add lstat() as a known system call. Revision Changes Path 1.6 +3 -1 src/usr.bin/truss/syscalls.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 22:04:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA03393 for cvs-all-outgoing; Wed, 14 Oct 1998 22:04:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA03383; Wed, 14 Oct 1998 22:04:31 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA07346; Wed, 14 Oct 1998 22:04:29 -0700 (PDT) Date: Wed, 14 Oct 1998 22:04:29 -0700 (PDT) Message-Id: <199810150504.WAA07346@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/rdist rdist.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1998/10/14 22:04:28 PDT Modified files: usr.bin/rdist rdist.1 Log: Fix formatting bug. PR: 8320 Submitted by: Amakawa Shuhei Revision Changes Path 1.10 +3 -1 src/usr.bin/rdist/rdist.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 22:17:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA04474 for cvs-all-outgoing; Wed, 14 Oct 1998 22:17:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: (from jkoshy@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA04466; Wed, 14 Oct 1998 22:17:31 -0700 (PDT) (envelope-from jkoshy) Date: Wed, 14 Oct 1998 22:17:31 -0700 (PDT) From: Joseph Koshy Message-Id: <199810150517.WAA04466@hub.freebsd.org> X-Mailer: exmh version 2.0.2 2/24/98 To: jmb Cc: committers@FreeBSD.ORG Subject: commit messages getting lost? Mime-Version: 1.0 Content-Type: text/plain Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Is it just me, or are CVS-commit messages getting lost :(? I'm seeing messages in the cvs-all digest that I didn't see appearing individually -committers, and some of the commits I've made today haven't yet: (~3hrs later) appeared on -committers. I read messages from hub, using fetchmail+ssh to pull the messages down to whereever I'm actually located so I don't think mail is being lost enroute from hub. GNATS seems to be sending out state change messages just fine so I suspect something may be awry with the CVS scripts. Thanks, Koshy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 23:08:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA09476 for cvs-all-outgoing; Wed, 14 Oct 1998 23:08:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from tibatong.ihf.rwth-aachen.de (tibatong.ihf.RWTH-Aachen.DE [134.130.90.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA09468; Wed, 14 Oct 1998 23:08:29 -0700 (PDT) (envelope-from tg@tibatong.ihf.rwth-aachen.de) Received: (from tg@localhost) by tibatong.ihf.rwth-aachen.de (8.8.8/8.8.8) id IAA01011; Thu, 15 Oct 1998 08:07:59 +0200 (CEST) (envelope-from tg) To: Joseph Koshy Cc: jmb@hub.freebsd.org, committers@FreeBSD.ORG Subject: Re: commit messages getting lost? References: <199810150517.WAA04466@hub.freebsd.org> Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII From: Thomas Gellekum Date: 15 Oct 1998 08:07:58 +0200 In-Reply-To: Joseph Koshy's message of "Wed, 14 Oct 1998 22:17:31 -0700 (PDT)" Message-ID: <87emsa9x35.fsf@tibatong.ihf.rwth-aachen.de> Lines: 7 X-Mailer: Gnus v5.6.34/XEmacs 20.4 - "Emerald" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Joseph Koshy writes: > Is it just me, or are CVS-commit messages getting lost :(? I'm seeing No, it's not only you. I'm missing a couple of ports-related messages. tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Oct 14 23:50:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA13164 for cvs-all-outgoing; Wed, 14 Oct 1998 23:50:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA13159; Wed, 14 Oct 1998 23:50:46 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA11176; Wed, 14 Oct 1998 23:50:44 -0700 (PDT) Date: Wed, 14 Oct 1998 23:50:44 -0700 (PDT) Message-Id: <199810150650.XAA11176@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall index.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/14 23:50:43 PDT Modified files: release/sysinstall index.c Log: snuff warning message if package is not found in INDEX but is found to be already installed anyway. Revision Changes Path 1.57 +2 -2 src/release/sysinstall/index.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 00:42:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA18342 for cvs-all-outgoing; Thu, 15 Oct 1998 00:42:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA18336; Thu, 15 Oct 1998 00:42:28 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA13018; Thu, 15 Oct 1998 00:42:26 -0700 (PDT) Date: Thu, 15 Oct 1998 00:42:26 -0700 (PDT) Message-Id: <199810150742.AAA13018@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall/help readme.hlp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/15 00:42:25 PDT Modified files: release/sysinstall/help readme.hlp Log: Update README.TXT, not that anyone will read it anyway, to describe just what 3.0 is meant to be. Revision Changes Path 1.21 +22 -3 src/release/sysinstall/help/readme.hlp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 01:06:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA20825 for cvs-all-outgoing; Thu, 15 Oct 1998 01:06:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: (from jkoshy@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA20819; Thu, 15 Oct 1998 01:06:30 -0700 (PDT) (envelope-from jkoshy) Date: Thu, 15 Oct 1998 01:06:30 -0700 (PDT) From: Joseph Koshy Message-Id: <199810150806.BAA20819@hub.freebsd.org> X-Mailer: exmh version 2.0.2 2/24/98 To: Steve Price Cc: committers@FreeBSD.ORG Subject: Re: annoying make(1) behavior In-Reply-To: Your message of "Wed, 14 Oct 1998 20:23:54 EST." Mime-Version: 1.0 Content-Type: text/plain Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > despite the fact that a library doesn't even exist make(1) > says it is up-to-date and the build fails. A good example Try the following patch to "src/usr.bin/make/arch.c". Index: arch.c =================================================================== RCS file: /home/ncvs/src/usr.bin/make/arch.c,v retrieving revision 1.8 diff -u -r1.8 arch.c --- arch.c 1997/02/22 19:27:05 1.8 +++ arch.c 1998/10/15 13:11:31 @@ -1187,7 +1187,7 @@ oodate = TRUE; } #else - oodate = FALSE; + oodate = (gn->mtime == 0); /* out of date if non-existent */ #endif } return (oodate); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 01:11:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA21175 for cvs-all-outgoing; Thu, 15 Oct 1998 01:11:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA21166; Thu, 15 Oct 1998 01:11:57 -0700 (PDT) (envelope-from sos@FreeBSD.org) From: Søren Schmidt Received: (from sos@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA14075; Thu, 15 Oct 1998 01:11:55 -0700 (PDT) Date: Thu, 15 Oct 1998 01:11:55 -0700 (PDT) Message-Id: <199810150811.BAA14075@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa atapi-cd.c atapi-cd.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk sos 1998/10/15 01:11:55 PDT Modified files: sys/i386/isa atapi-cd.c atapi-cd.h Log: Make the next_writeable address specific for each drive, there might be more than one burner online. Revision Changes Path 1.3 +5 -6 src/sys/i386/isa/atapi-cd.c 1.2 +2 -2 src/sys/i386/isa/atapi-cd.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 02:50:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA28578 for cvs-all-outgoing; Thu, 15 Oct 1998 02:50:49 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA28570; Thu, 15 Oct 1998 02:50:48 -0700 (PDT) (envelope-from dfr@FreeBSD.org) From: Doug Rabson Received: (from dfr@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA17398; Thu, 15 Oct 1998 02:50:46 -0700 (PDT) Date: Thu, 15 Oct 1998 02:50:46 -0700 (PDT) Message-Id: <199810150950.CAA17398@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern makedevops.sh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dfr 1998/10/15 02:50:45 PDT Modified files: sys/kern makedevops.sh Log: Use the interface name as well as the method name when creating the method description. Submitted by: Nick Hibma Revision Changes Path 1.2 +2 -2 src/sys/kern/makedevops.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 02:52:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA28894 for cvs-all-outgoing; Thu, 15 Oct 1998 02:52:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA28889; Thu, 15 Oct 1998 02:52:21 -0700 (PDT) (envelope-from dfr@FreeBSD.org) From: Doug Rabson Received: (from dfr@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA17515; Thu, 15 Oct 1998 02:52:19 -0700 (PDT) Date: Thu, 15 Oct 1998 02:52:19 -0700 (PDT) Message-Id: <199810150952.CAA17515@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern imgact_elf.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dfr 1998/10/15 02:52:19 PDT Modified files: sys/kern imgact_elf.c Log: Don't frob the user stack directly, use suword instead. This fixes the elf_freebsd_fixup() panic which many people have noticed on the alpha. Revision Changes Path 1.39 +2 -2 src/sys/kern/imgact_elf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 02:53:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA29008 for cvs-all-outgoing; Thu, 15 Oct 1998 02:53:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA29003; Thu, 15 Oct 1998 02:53:29 -0700 (PDT) (envelope-from dfr@FreeBSD.org) From: Doug Rabson Received: (from dfr@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA17564; Thu, 15 Oct 1998 02:53:28 -0700 (PDT) Date: Thu, 15 Oct 1998 02:53:28 -0700 (PDT) Message-Id: <199810150953.CAA17564@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/alpha/alpha vm_machdep.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dfr 1998/10/15 02:53:28 PDT Modified files: sys/alpha/alpha vm_machdep.c Log: Change a bogus cast to the correct one. Revision Changes Path 1.4 +2 -2 src/sys/alpha/alpha/vm_machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 03:03:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA29818 for cvs-all-outgoing; Thu, 15 Oct 1998 03:03:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA29812; Thu, 15 Oct 1998 03:03:52 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA17938; Thu, 15 Oct 1998 03:03:50 -0700 (PDT) Date: Thu, 15 Oct 1998 03:03:50 -0700 (PDT) Message-Id: <199810151003.DAA17938@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall dist.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/15 03:03:50 PDT Modified files: release/sysinstall dist.c Log: Search for correct property name; the older attrs code bogusly folded case, so I never noticed this bug. :) Revision Changes Path 1.129 +2 -2 src/release/sysinstall/dist.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 03:13:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA00613 for cvs-all-outgoing; Thu, 15 Oct 1998 03:13:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA00608; Thu, 15 Oct 1998 03:13:55 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA18623; Thu, 15 Oct 1998 03:13:53 -0700 (PDT) Date: Thu, 15 Oct 1998 03:13:53 -0700 (PDT) Message-Id: <199810151013.DAA18623@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release ABOUT.TXT ERRATA.TXT LAYOUT.TXT src/release/sysinstall/help relnotes.hlp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/15 03:13:53 PDT Modified files: release ABOUT.TXT ERRATA.TXT LAYOUT.TXT Log: Update size information for ports. Revision Changes Path 1.9 +5 -10 src/release/ABOUT.TXT 1.3 +7 -3 src/release/ERRATA.TXT 1.2 +1 -1 src/release/LAYOUT.TXT Modified files: release/sysinstall/help relnotes.hlp Log: Add ipfw change information. Revision Changes Path 1.95 +4 -1 src/release/sysinstall/help/relnotes.hlp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 03:14:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA00778 for cvs-all-outgoing; Thu, 15 Oct 1998 03:14:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA00771; Thu, 15 Oct 1998 03:14:57 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA18693; Thu, 15 Oct 1998 03:14:55 -0700 (PDT) Date: Thu, 15 Oct 1998 03:14:55 -0700 (PDT) Message-Id: <199810151014.DAA18693@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release LAYOUT.TXT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/15 03:14:55 PDT Modified files: release LAYOUT.TXT Log: Call ourselves by the correct name. :) Submitted by: Sue Blake Revision Changes Path 1.3 +2 -2 src/release/LAYOUT.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 03:16:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA01028 for cvs-all-outgoing; Thu, 15 Oct 1998 03:16:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA01021; Thu, 15 Oct 1998 03:16:35 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA18819; Thu, 15 Oct 1998 03:16:34 -0700 (PDT) Date: Thu, 15 Oct 1998 03:16:34 -0700 (PDT) Message-Id: <199810151016.DAA18819@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall/help readme.hlp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/15 03:16:33 PDT Modified files: release/sysinstall/help readme.hlp Log: Update for 3.0 Submitted by: Sue Blake Revision Changes Path 1.22 +3 -3 src/release/sysinstall/help/readme.hlp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 03:43:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA02971 for cvs-all-outgoing; Thu, 15 Oct 1998 03:43:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA02966; Thu, 15 Oct 1998 03:43:24 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA19640; Thu, 15 Oct 1998 03:43:22 -0700 (PDT) Date: Thu, 15 Oct 1998 03:43:22 -0700 (PDT) Message-Id: <199810151043.DAA19640@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/wml Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 03:43:22 PDT Modified files: www/wml Makefile Log: Mark BROKEN for current, pel: ===> Building package for wml-1.6.7 Creating package /usr/ports/packages/All/wml-1.6.7.tgz Registering depends:. Creating gzip'd tar ball in '/usr/ports/packages/All/wml-1.6.7.tgz' tar: can't add file lib/wml/perl/lib/site_perl/5.005/File/PathConvert.pm : No such file or directory tar: can't add file lib/wml/perl/lib/site_perl/5.005/Getopt/Long.pm : No such file or directory Revision Changes Path 1.26 +6 -1 ports/www/wml/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 03:53:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA03845 for cvs-all-outgoing; Thu, 15 Oct 1998 03:53:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA03840; Thu, 15 Oct 1998 03:53:31 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA19924; Thu, 15 Oct 1998 03:53:28 -0700 (PDT) Date: Thu, 15 Oct 1998 03:53:28 -0700 (PDT) Message-Id: <199810151053.DAA19924@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-fm/ezfm Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 03:53:28 PDT Modified files: x11-fm/ezfm Makefile Log: Mark BROKEN for ELF: cc -I/usr/X11R6/include -o ezfm action.o folder.o atoms.o clientMessage.o main.o icons.o items.o finfo.o signal.o info.o infoBtn.o printer.o misc.o mbtnFile.o mbtnView.o mbtnHelp.o popup.o viewFile.o mnt1.o bgn.o trashBtn.o btnBox.o drives.o toolBox.o extension.o hash.o dnda.o dndb.o dndc.o dndd.o dnde.o dndr.o rc.o state.o mbtnOption.o mbtnSelection.o netscape.o libfile.a -lEZ -ljpeg -L/usr/local/lib -L/usr/X11R6/lib -lX11 -lXext -lm -lc cc: libfile.a: No such file or directory *** Error code 1 Revision Changes Path 1.4 +3 -1 ports/x11-fm/ezfm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 04:01:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA04935 for cvs-all-outgoing; Thu, 15 Oct 1998 04:01:36 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA04929; Thu, 15 Oct 1998 04:01:33 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA21328; Thu, 15 Oct 1998 04:01:31 -0700 (PDT) Date: Thu, 15 Oct 1998 04:01:31 -0700 (PDT) Message-Id: <199810151101.EAA21328@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall/help upgrade.hlp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/15 04:01:31 PDT Modified files: release/sysinstall/help upgrade.hlp Log: Fix upgrade notes. PR: 8331 Submitted by: Sue Blake Revision Changes Path 1.17 +4 -3 src/release/sysinstall/help/upgrade.hlp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 04:10:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA07303 for cvs-all-outgoing; Thu, 15 Oct 1998 04:10:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA07284; Thu, 15 Oct 1998 04:10:05 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA21710; Thu, 15 Oct 1998 04:10:03 -0700 (PDT) Date: Thu, 15 Oct 1998 04:10:03 -0700 (PDT) Message-Id: <199810151110.EAA21710@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11/xloadimage Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 04:10:03 PDT Modified files: x11/xloadimage Makefile Log: Mark BROKEN for ELF: cc -o xloadimage -O -DSYSV -DHAS_SELECT_INCLUDE -DHAS_JPEG -DHAS_TIFF -I/usr/X11R6/include -DSYSPATHFILE=\"/usr/X11R6/lib/X11/app-defaults/Xloadimage\" build.o new.o niff.o value.o zio.o cmuwmraster.o faces.o fbm.o gif.o imagetypes.o img.o mac.o mcidas.o mc_tables.o pbm.o pcx.o pdsuncomp.o rle.o rlelib.o sunraster.o vff.o vicar.o xbitmap.o xpixmap.o xwd.o bright.o clip.o compress.o dither.o fill.o halftone.o merge.o reduce.o rotate.o smooth.o undither.o zoom.o config.o misc.o options.o root.o send.o window.o xloadimage.o jpeg.o tiff.o jpeg/libjpeg.a tiff/libtiff.a -L/usr/X11R6/lib -lX11 -lm cc: jpeg/libjpeg.a: No such file or directory cc: tiff/libtiff.a: No such file or directory *** Error code 1 Revision Changes Path 1.13 +3 -1 ports/x11/xloadimage/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 04:12:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA07514 for cvs-all-outgoing; Thu, 15 Oct 1998 04:12:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA07509; Thu, 15 Oct 1998 04:12:42 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA21839; Thu, 15 Oct 1998 04:12:40 -0700 (PDT) Date: Thu, 15 Oct 1998 04:12:40 -0700 (PDT) Message-Id: <199810151112.EAA21839@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/15 04:12:40 PDT Modified files: release Makefile Log: More attempts to DTRT for the alpha, based on what I now know about boot2. Revision Changes Path 1.420 +5 -5 src/release/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 04:13:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA07609 for cvs-all-outgoing; Thu, 15 Oct 1998 04:13:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA07599; Thu, 15 Oct 1998 04:13:08 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA21875; Thu, 15 Oct 1998 04:13:04 -0700 (PDT) Date: Thu, 15 Oct 1998 04:13:04 -0700 (PDT) Message-Id: <199810151113.EAA21875@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-toolkits/FWF Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 04:13:04 PDT Modified files: x11-toolkits/FWF Makefile Log: Mark BROKEN for ELF. Revision Changes Path 1.15 +3 -1 ports/x11-toolkits/FWF/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 04:16:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA08011 for cvs-all-outgoing; Thu, 15 Oct 1998 04:16:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA07997; Thu, 15 Oct 1998 04:16:35 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA21979; Thu, 15 Oct 1998 04:16:34 -0700 (PDT) Date: Thu, 15 Oct 1998 04:16:34 -0700 (PDT) Message-Id: <199810151116.EAA21979@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-toolkits/auis Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 04:16:33 PDT Modified files: x11-toolkits/auis Makefile Log: Mark BROKEN for ELF: building (dependInstall) (/usr/ports/x11-toolkits/auis/work/auis-6.3.1/overhead/class/machdep/i386_bsd) make: don't know how to make /usr/lib/crt0.o. Stop *** Error code 2 Revision Changes Path 1.5 +3 -1 ports/x11-toolkits/auis/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 04:22:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA08742 for cvs-all-outgoing; Thu, 15 Oct 1998 04:22:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA08736; Thu, 15 Oct 1998 04:22:37 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA22095; Thu, 15 Oct 1998 04:22:35 -0700 (PDT) Date: Thu, 15 Oct 1998 04:22:35 -0700 (PDT) Message-Id: <199810151122.EAA22095@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall/help install.hlp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/15 04:22:34 PDT Modified files: release/sysinstall/help install.hlp Log: Make the bit about DOS partitions somewhat clearer. PR: 8333 Revision Changes Path 1.23 +4 -5 src/release/sysinstall/help/install.hlp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 04:24:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA08967 for cvs-all-outgoing; Thu, 15 Oct 1998 04:24:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA08961; Thu, 15 Oct 1998 04:24:32 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA22238; Thu, 15 Oct 1998 04:24:30 -0700 (PDT) Date: Thu, 15 Oct 1998 04:24:30 -0700 (PDT) Message-Id: <199810151124.EAA22238@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall/help install.hlp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/15 04:24:30 PDT Modified files: release/sysinstall/help install.hlp Log: Update DOS emulator description. Revision Changes Path 1.24 +5 -6 src/release/sysinstall/help/install.hlp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 04:27:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA09239 for cvs-all-outgoing; Thu, 15 Oct 1998 04:27:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA09229; Thu, 15 Oct 1998 04:27:53 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA22386; Thu, 15 Oct 1998 04:27:45 -0700 (PDT) Date: Thu, 15 Oct 1998 04:27:45 -0700 (PDT) Message-Id: <199810151127.EAA22386@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall/help install.hlp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/15 04:27:45 PDT Modified files: release/sysinstall/help install.hlp Log: Make it clear that installations can only occur from drive C. PR: 8334 Submitted by: Sue Blake Revision Changes Path 1.25 +6 -7 src/release/sysinstall/help/install.hlp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 04:43:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA10646 for cvs-all-outgoing; Thu, 15 Oct 1998 04:43:03 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA10641; Thu, 15 Oct 1998 04:43:02 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA23008; Thu, 15 Oct 1998 04:43:00 -0700 (PDT) Date: Thu, 15 Oct 1998 04:43:00 -0700 (PDT) Message-Id: <199810151143.EAA23008@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-toolkits/gtk-- Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 04:43:00 PDT Modified files: x11-toolkits/gtk-- Makefile Log: Mark BROKEN for ELF: ../../src/gtk--/container.h: In function `static void Gtk_Container::cpp_class_init(struct _GtkContainerClass *, struct Gtk_c_signals_Container *)': In file included from ../../src/gtk--/bin.h:8, from ../../src/gtk--/alignment.h:8, from ../../src/gtk--.h:208, from gtk--.cc:31: ../../src/gtk--/container.h:242: `struct _GtkContainerClass' has no member named `foreach' ../../src/gtk--/container.h:243: `struct _GtkContainerClass' has no member named `foreach' gmake[4]: *** [gtk--.lo] Error 1 gmake[4]: Leaving directory `/usr/ports/x11-toolkits/gtk--/work/Gtk---0.9.14/src/gtk--' Revision Changes Path 1.4 +3 -1 ports/x11-toolkits/gtk--/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 06:00:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA17233 for cvs-all-outgoing; Thu, 15 Oct 1998 06:00:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA17228; Thu, 15 Oct 1998 06:00:39 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA26024; Thu, 15 Oct 1998 06:00:36 -0700 (PDT) Date: Thu, 15 Oct 1998 06:00:36 -0700 (PDT) Message-Id: <199810151300.GAA26024@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/make arch.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkoshy 1998/10/15 06:00:35 PDT Modified files: usr.bin/make arch.c Log: Fix a serious bug in make(1)'s handling of archive libraries. This case did not need to be tested when RANLIBMAG was defined (as when in an `aout' environment) because Arch_StatMember() treated the two cases of the library not being present and a member of the library not being present the same way, forcing a rebuild of the library. Since in the ELF environment we don't look inside archive libraries we now need to check if the archive library is present in order to determine its `out-of-date'-ness. (I hope I've been able to meet the Oct 15th freeze). Reported-by: Steve Price (and a few others whom I've forgotten, sorry) Revision Changes Path 1.9 +2 -2 src/usr.bin/make/arch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 06:08:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA18671 for cvs-all-outgoing; Thu, 15 Oct 1998 06:08:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA18663; Thu, 15 Oct 1998 06:08:53 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id GAA06948; Thu, 15 Oct 1998 06:08:57 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Joseph Koshy cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/make arch.c In-reply-to: Your message of "Thu, 15 Oct 1998 06:00:36 PDT." <199810151300.GAA26024@freefall.freebsd.org> Date: Thu, 15 Oct 1998 06:08:57 -0700 Message-ID: <6945.908456937@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > (I hope I've been able to meet the Oct 15th freeze). Actually, we're already in freeze and people are supposed to now be clearing commits through me. :-) But I'm happy to see this fixed in any case and won't argue. Just FYI for next time. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 06:12:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA19244 for cvs-all-outgoing; Thu, 15 Oct 1998 06:12:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA19234; Thu, 15 Oct 1998 06:12:52 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA26423; Thu, 15 Oct 1998 06:12:50 -0700 (PDT) Date: Thu, 15 Oct 1998 06:12:50 -0700 (PDT) Message-Id: <199810151312.GAA26423@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/news press.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/10/15 06:12:50 PDT Modified files: en/news press.sgml Log: Added The Irish Times October 12, 1998 It's only free Unix - but I like it, by David Malone Submitted by: eps@sirius.com & Dom Mitchell Revision Changes Path 1.23 +6 -0 www/en/news/press.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 06:24:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA20077 for cvs-all-outgoing; Thu, 15 Oct 1998 06:24:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA20072; Thu, 15 Oct 1998 06:24:11 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA26775; Thu, 15 Oct 1998 06:24:09 -0700 (PDT) Date: Thu, 15 Oct 1998 06:24:09 -0700 (PDT) Message-Id: <199810151324.GAA26775@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-toolkits/iv Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 06:24:09 PDT Modified files: x11-toolkits/iv Makefile Log: Mark BROKEN for ELF: ===> Building package for iv-3.1 Creating package /usr/ports/packages/All/iv-3.1.tgz Registering depends:. Creating gzip'd tar ball in '/usr/ports/packages/All/iv-3.1.tgz' tar: can't add file interviews/lib/FREEBSD/libIV.so.3 : No such file or director y tar: can't add file interviews/lib/FREEBSD/libUnidraw.so.3 : No such file or dir ectory tar: can't add file interviews/bin/FREEBSD/alert : No such file or directory tar: can't add file interviews/bin/FREEBSD/dclock : No such file or directory tar: can't add file interviews/bin/FREEBSD/doc : No such file or directory tar: can't add file interviews/bin/FREEBSD/ibuild : No such file or directory tar: can't add file interviews/bin/FREEBSD/iclass : No such file or directory tar: can't add file interviews/bin/FREEBSD/idemo : No such file or directory tar: can't add file interviews/bin/FREEBSD/idraw : No such file or directory tar: can't add file interviews/bin/FREEBSD/ifc : No such file or directory tar: can't add file interviews/bin/FREEBSD/logo : No such file or directory tar: can't add file interviews/bin/FREEBSD/mailbox : No such file or directory /usr/sbin/pkg_create: tar command failed with code 256 *** Error code 1 Revision Changes Path 1.17 +3 -1 ports/x11-toolkits/iv/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 06:30:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA20692 for cvs-all-outgoing; Thu, 15 Oct 1998 06:30:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA20686; Thu, 15 Oct 1998 06:30:51 -0700 (PDT) (envelope-from mckay@FreeBSD.org) From: Stephen McKay Received: (from mckay@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA27064; Thu, 15 Oct 1998 06:30:49 -0700 (PDT) Date: Thu, 15 Oct 1998 06:30:49 -0700 (PDT) Message-Id: <199810151330.GAA27064@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/at at.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mckay 1998/10/15 06:30:49 PDT Modified files: usr.bin/at at.c Log: atq ignored locale info when printing dates. Is the other call to setlocale() just in the wrong place? PR: 8300 Revision Changes Path 1.14 +5 -1 src/usr.bin/at/at.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 06:37:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA21452 for cvs-all-outgoing; Thu, 15 Oct 1998 06:37:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA21433; Thu, 15 Oct 1998 06:37:38 -0700 (PDT) (envelope-from mckay@FreeBSD.org) From: Stephen McKay Received: (from mckay@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA15318; Thu, 15 Oct 1998 06:37:36 -0700 (PDT) Date: Thu, 15 Oct 1998 06:37:36 -0700 (PDT) Message-Id: <199810151337.GAA15318@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sbin/mountd mountd.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk mckay 1998/10/15 06:37:36 PDT Modified files: sbin/mountd mountd.8 Log: Spelling. Revision Changes Path 1.14 +2 -2 src/sbin/mountd/mountd.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 06:57:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA24369 for cvs-all-outgoing; Thu, 15 Oct 1998 06:57:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA24364; Thu, 15 Oct 1998 06:57:53 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA03387; Thu, 15 Oct 1998 06:57:51 -0700 (PDT) Date: Thu, 15 Oct 1998 06:57:51 -0700 (PDT) Message-Id: <199810151357.GAA03387@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/commercial software.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/10/15 06:57:50 PDT Modified files: en/commercial software.sgml Log: Added Firehunter Submited by: Rick Siple , after a discussion with Mike Gunning mike_gunning@hp.com (Firehunter R&D project manager) Revision Changes Path 1.46 +13 -2 www/en/commercial/software.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 07:15:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA28141 for cvs-all-outgoing; Thu, 15 Oct 1998 07:15:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA28136; Thu, 15 Oct 1998 07:15:11 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA04145; Thu, 15 Oct 1998 07:15:09 -0700 (PDT) Date: Thu, 15 Oct 1998 07:15:09 -0700 (PDT) Message-Id: <199810151415.HAA04145@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/gdb Makefile.inc src/gnu/usr.bin/gdb/gdb Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/15 07:15:09 PDT Modified files: gnu/usr.bin/gdb Makefile.inc gnu/usr.bin/gdb/gdb Makefile Log: Fixed breakage of gdbreplay's and gdbserver's BINDIR in previous commit. They may belong in /usr/libexec/{aout,elf}, but objformat doesn't support that. Fixed bogus `?=' assignments for BINDIR. Revision Changes Path 1.6 +1 -7 src/gnu/usr.bin/gdb/Makefile.inc 1.38 +3 -1 src/gnu/usr.bin/gdb/gdb/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 07:28:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA29791 for cvs-all-outgoing; Thu, 15 Oct 1998 07:28:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA29783; Thu, 15 Oct 1998 07:28:11 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA04589; Thu, 15 Oct 1998 07:28:10 -0700 (PDT) Date: Thu, 15 Oct 1998 07:28:10 -0700 (PDT) Message-Id: <199810151428.HAA04589@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-toolkits/p5-Tk Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 07:28:09 PDT Modified files: x11-toolkits/p5-Tk Makefile Log: Standard perl breakage for current Revision Changes Path 1.21 +7 -1 ports/x11-toolkits/p5-Tk/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 07:31:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA00506 for cvs-all-outgoing; Thu, 15 Oct 1998 07:31:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA00489; Thu, 15 Oct 1998 07:31:48 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA04834; Thu, 15 Oct 1998 07:31:46 -0700 (PDT) Date: Thu, 15 Oct 1998 07:31:46 -0700 (PDT) Message-Id: <199810151431.HAA04834@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-toolkits/pygtk Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 07:31:46 PDT Modified files: x11-toolkits/pygtk Makefile Log: Mark BROKEN for current: bad python paths Revision Changes Path 1.13 +7 -1 ports/x11-toolkits/pygtk/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 07:33:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA00822 for cvs-all-outgoing; Thu, 15 Oct 1998 07:33:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ns.mt.sri.com (sri-gw.MT.net [206.127.105.141]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA00816; Thu, 15 Oct 1998 07:33:50 -0700 (PDT) (envelope-from nate@mt.sri.com) Received: from mt.sri.com (rocky.mt.sri.com [206.127.76.100]) by ns.mt.sri.com (8.8.8/8.8.8) with SMTP id IAA14465; Thu, 15 Oct 1998 08:33:29 -0600 (MDT) (envelope-from nate@rocky.mt.sri.com) Received: by mt.sri.com (SMI-8.6/SMI-SVR4) id IAA10776; Thu, 15 Oct 1998 08:33:28 -0600 Date: Thu, 15 Oct 1998 08:33:28 -0600 Message-Id: <199810151433.IAA10776@mt.sri.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: "Jordan K. Hubbard" Cc: Joseph Koshy , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/make arch.c In-Reply-To: <6945.908456937@time.cdrom.com> References: <199810151300.GAA26024@freefall.freebsd.org> <6945.908456937@time.cdrom.com> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > > (I hope I've been able to meet the Oct 15th freeze). > > Actually, we're already in freeze and people are supposed to now > be clearing commits through me. :-) I thought we were in 'slush' mode, which implied that we didn't need to get permission from you if we considered them trivial/well-tested? Confused, and hope I didn't step on your toes with my syslog file change... Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 07:36:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA01234 for cvs-all-outgoing; Thu, 15 Oct 1998 07:36:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA01229; Thu, 15 Oct 1998 07:36:23 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA04993; Thu, 15 Oct 1998 07:36:21 -0700 (PDT) Date: Thu, 15 Oct 1998 07:36:21 -0700 (PDT) Message-Id: <199810151436.HAA04993@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-toolkits/qt Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 07:36:21 PDT Modified files: x11-toolkits/qt Makefile Log: Mark BROKEN for ELF: tsort: kernel/qapp_x11.o /usr/libexec/elf/ld: cannot open /usr/lib/c++rt0.o: No such file or directory gmake[1]: *** [link-freebsd-gcc-shared] Error 1 gmake[1]: Leaving directory `/usr/ports/x11-toolkits/qt/work/qt-1.31/src' gmake: *** [src] Error 2 *** Error code 2 Revision Changes Path 1.20 +3 -1 ports/x11-toolkits/qt/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 07:37:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA01374 for cvs-all-outgoing; Thu, 15 Oct 1998 07:37:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au (spinner.netplex.com.au [202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA01331; Thu, 15 Oct 1998 07:36:59 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.9.1/8.9.1/Spinner) with ESMTP id WAA11495; Thu, 15 Oct 1998 22:09:03 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199810151409.WAA11495@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: Bruce Evans cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/gnu/usr.bin/gdb Makefile.inc src/gnu/usr.bin/gdb/gdb Makefile In-reply-to: Your message of "Thu, 15 Oct 1998 07:15:09 MST." <199810151415.HAA04145@freefall.freebsd.org> Date: Thu, 15 Oct 1998 22:09:02 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Bruce Evans wrote: > Fixed bogus `?=' assignments for BINDIR. Well, you'd better change all the others too. The majority of src/*/Makefile.inc and src/gnu/*/Makefile.inc also use ?= for BINDIR. peter@overcee[10:32pm]~src-141> grep BINDIR */Makefile.inc */*/Makefile.inc bin/Makefile.inc:BINDIR?= /bin games/Makefile.inc:BINDIR?= /usr/games/hide games/Makefile.inc:BINDIR= /usr/games libexec/Makefile.inc:BINDIR?= /usr/libexec sbin/Makefile.inc:BINDIR?= /sbin share/Makefile.inc:BINDIR?= ${SHAREDIR} usr.bin/Makefile.inc:BINDIR?= /usr/bin usr.sbin/Makefile.inc:BINDIR?= /usr/sbin contrib/global/Makefile.inc:BINDIR?= /usr/bin etc/periodic/Makefile.inc:BINDIR= /etc/periodic/${.CURDIR:T} gnu/libexec/Makefile.inc:BINDIR?= /usr/libexec gnu/usr.bin/Makefile.inc:BINDIR?= /usr/bin gnu/usr.sbin/Makefile.inc:BINDIR?= /usr/sbin kerberosIV/libexec/Makefile.inc:BINDIR= /usr/libexec kerberosIV/usr.bin/Makefile.inc:BINDIR= /usr/bin kerberosIV/usr.sbin/Makefile.inc:BINDIR= /usr/sbin libexec/bootpd/Makefile.inc:BINDIR?= /usr/libexec secure/usr.bin/Makefile.inc:BINDIR= /usr/bin usr.bin/global/Makefile.inc:BINDIR?= /usr/bin usr.sbin/atm/Makefile.inc:BINDIR?= /usr/sbin usr.sbin/bootparamd/Makefile.inc:BINDIR?= /usr/sbin usr.sbin/crunch/Makefile.inc:BINDIR?= /usr/bin usr.sbin/pccard/Makefile.inc:BINDIR?= /usr/sbin usr.sbin/tcpdump/Makefile.inc:BINDIR?= /usr/sbin peter@overcee[10:33pm]~src-142> 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 Oct 15 08:25:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA07534 for cvs-all-outgoing; Thu, 15 Oct 1998 08:25:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.15.68.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA07515; Thu, 15 Oct 1998 08:25:08 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id BAA16413; Fri, 16 Oct 1998 01:24:49 +1000 Date: Fri, 16 Oct 1998 01:24:49 +1000 From: Bruce Evans Message-Id: <199810151524.BAA16413@godzilla.zeta.org.au> To: bde@FreeBSD.ORG, peter@netplex.com.au Subject: Re: cvs commit: src/gnu/usr.bin/gdb Makefile.inc src/gnu/usr.bin/gdb/gdb Makefile Cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >Bruce Evans wrote: >> Fixed bogus `?=' assignments for BINDIR. > >Well, you'd better change all the others too. The majority of >src/*/Makefile.inc and src/gnu/*/Makefile.inc also use ?= for BINDIR. > >peter@overcee[10:32pm]~src-141> grep BINDIR */Makefile.inc */*/Makefile.inc >bin/Makefile.inc:BINDIR?= /bin >games/Makefile.inc:BINDIR?= /usr/games/hide >games/Makefile.inc:BINDIR= /usr/games >... This has been on one of my todo lists for a year or two. Try `make BINDIR=/bin'. There are more urgent things to fix :-). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 08:35:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA08750 for cvs-all-outgoing; Thu, 15 Oct 1998 08:35:01 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ghpc8.ihf.rwth-aachen.de (ghpc8.ihf.RWTH-Aachen.DE [134.130.90.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA08649; Thu, 15 Oct 1998 08:34:46 -0700 (PDT) (envelope-from tg@ghpc8.ihf.rwth-aachen.de) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.rwth-aachen.de [134.130.90.6]) by ghpc8.ihf.rwth-aachen.de (8.8.8/8.8.6) with ESMTP id RAA01190; Thu, 15 Oct 1998 17:34:14 +0200 (CEST) Received: (from tg@localhost) by ghpc6.ihf.rwth-aachen.de (8.8.8/8.8.5) id RAA04523; Thu, 15 Oct 1998 17:34:13 +0200 (CEST) To: "Justin M. Seger" Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/x11-toolkits/pygtk Makefile References: <199810151431.HAA04834@freefall.freebsd.org> Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII From: Thomas Gellekum Date: 15 Oct 1998 17:34:13 +0200 In-Reply-To: "Justin M. Seger"'s message of "Thu, 15 Oct 1998 07:31:46 -0700 (PDT)" Message-ID: <87zpaxg7pm.fsf@ghpc6.ihf.rwth-aachen.de> Lines: 13 X-Mailer: Gnus v5.6.34/XEmacs 20.4 - "Emerald" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Justin M. Seger" writes: > jseger 1998/10/15 07:31:46 PDT > > Modified files: > x11-toolkits/pygtk Makefile > Log: > Mark BROKEN for current: bad python paths Care to elaborate? Do you have a log somewhere? Is there a problem with python or is it only with pygtk? tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 09:05:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA13057 for cvs-all-outgoing; Thu, 15 Oct 1998 09:05:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA13052; Thu, 15 Oct 1998 09:05:03 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA08098; Thu, 15 Oct 1998 09:05:01 -0700 (PDT) Date: Thu, 15 Oct 1998 09:05:01 -0700 (PDT) Message-Id: <199810151605.JAA08098@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/ja/handbook authors.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/10/15 09:05:01 PDT Modified files: ja/handbook authors.sgml Log: Catch up to 1.118 Revision Changes Path 1.54 +6 -2 doc/ja/handbook/authors.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 09:06:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA13192 for cvs-all-outgoing; Thu, 15 Oct 1998 09:06:20 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA13186; Thu, 15 Oct 1998 09:06:18 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id JAA07604; Thu, 15 Oct 1998 09:06:20 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Nate Williams cc: Joseph Koshy , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/make arch.c In-reply-to: Your message of "Thu, 15 Oct 1998 08:33:28 MDT." <199810151433.IAA10776@mt.sri.com> Date: Thu, 15 Oct 1998 09:06:20 -0700 Message-ID: <7601.908467580@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > I thought we were in 'slush' mode, which implied that we didn't need to > get permission from you if we considered them trivial/well-tested? I announced an end to slush and the beginning of "final countdown" a couple of days back, but don't worry about it - you're not the only one to jump in with a commit here (just noticed one from Bruce :) and as long as the commits are entirely benign, I'm not worried. It's the "let me just switch us to the new kld mechanism by default!" commits I was more worried about. :-) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 09:06:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA13221 for cvs-all-outgoing; Thu, 15 Oct 1998 09:06:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA13211; Thu, 15 Oct 1998 09:06:21 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA08326; Thu, 15 Oct 1998 09:06:19 -0700 (PDT) Date: Thu, 15 Oct 1998 09:06:19 -0700 (PDT) Message-Id: <199810151606.JAA08326@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/ja/man/man1 addr2line.1 cccp.1 chkey.1 chmod.1 ci.1 ckdist.1 cvs.1 doscmd.1 ed.1 gcc.1 ipf.1 ipftest.1 ipnat.1 ipresend.1 ipsend.1 iptest.1 keyinit.1 keylogout.1 mail.1 mptable.1 objcopy.1 objdump.1 perl.1 ps.1 rcsfreeze.1 refer.1 ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/10/15 09:06:19 PDT Modified files: ja/man/man1 addr2line.1 cccp.1 chkey.1 chmod.1 ci.1 ckdist.1 cvs.1 doscmd.1 ed.1 gcc.1 ipf.1 ipftest.1 ipnat.1 ipresend.1 ipsend.1 iptest.1 keyinit.1 keylogout.1 mail.1 mptable.1 objcopy.1 objdump.1 perl.1 ps.1 rcsfreeze.1 refer.1 spppcontrol.1 tar.1 tclsh.1 tcpdump.1 tip.1 troff.1 truss.1 uustat.1 vi.1 window.1 ja/man/man5 dm.conf.5 ipf.5 ipsend.5 passwd.5 ja/man/man8 arp.8 bootptest.8 fsck.8 init.8 ipfstat.8 ipfw.8 ipmon.8 keyserv.8 moused.8 newkey.8 nos-tun.8 ppp.8 pppd.8 procctl.8 rbootd.8 sendmail.8 ypinit.8 yppoll.8 Log: Catch up to 3.0-19980827-SNAP (3rd and last!) Submitted by: Kazuo Horikawa Revision Changes Path 1.2 +6 -6 doc/ja/man/man1/addr2line.1 1.2 +1 -1 doc/ja/man/man1/cccp.1 1.2 +1 -1 doc/ja/man/man1/chkey.1 1.6 +1 -1 doc/ja/man/man1/chmod.1 1.3 +2 -2 doc/ja/man/man1/ci.1 1.2 +53 -46 doc/ja/man/man1/ckdist.1 1.4 +2 -2 doc/ja/man/man1/cvs.1 1.2 +7 -5 doc/ja/man/man1/doscmd.1 1.6 +3 -3 doc/ja/man/man1/ed.1 1.4 +2 -2 doc/ja/man/man1/gcc.1 1.2 +8 -7 doc/ja/man/man1/ipf.1 1.2 +14 -12 doc/ja/man/man1/ipftest.1 1.2 +6 -5 doc/ja/man/man1/ipnat.1 1.2 +53 -49 doc/ja/man/man1/ipresend.1 1.2 +45 -42 doc/ja/man/man1/ipsend.1 1.2 +86 -54 doc/ja/man/man1/iptest.1 1.3 +5 -5 doc/ja/man/man1/keyinit.1 1.2 +1 -1 doc/ja/man/man1/keylogout.1 1.6 +1 -1 doc/ja/man/man1/mail.1 1.2 +1 -1 doc/ja/man/man1/mptable.1 1.2 +2 -2 doc/ja/man/man1/objcopy.1 1.2 +5 -5 doc/ja/man/man1/objdump.1 1.5 +6 -6 doc/ja/man/man1/perl.1 1.5 +0 -10 doc/ja/man/man1/ps.1 1.3 +1 -1 doc/ja/man/man1/rcsfreeze.1 1.3 +1 -1 doc/ja/man/man1/refer.1 1.2 +5 -5 doc/ja/man/man1/spppcontrol.1 1.6 +1 -1 doc/ja/man/man1/tar.1 1.2 +3 -3 doc/ja/man/man1/tclsh.1 1.6 +1 -1 doc/ja/man/man1/tcpdump.1 1.3 +2 -2 doc/ja/man/man1/tip.1 1.2 +2 -2 doc/ja/man/man1/troff.1 1.2 +4 -3 doc/ja/man/man1/truss.1 1.4 +2 -1 doc/ja/man/man1/uustat.1 1.4 +1 -1 doc/ja/man/man1/vi.1 1.3 +96 -96 doc/ja/man/man1/window.1 1.3 +1 -1 doc/ja/man/man5/dm.conf.5 1.2 +13 -11 doc/ja/man/man5/ipf.5 1.2 +29 -30 doc/ja/man/man5/ipsend.5 1.5 +1 -1 doc/ja/man/man5/passwd.5 1.4 +1 -1 doc/ja/man/man8/arp.8 1.2 +1 -1 doc/ja/man/man8/bootptest.8 1.3 +1 -1 doc/ja/man/man8/fsck.8 1.6 +2 -2 doc/ja/man/man8/init.8 1.2 +46 -40 doc/ja/man/man8/ipfstat.8 1.7 +1 -1 doc/ja/man/man8/ipfw.8 1.2 +17 -43 doc/ja/man/man8/ipmon.8 1.2 +2 -2 doc/ja/man/man8/keyserv.8 1.5 +1 -1 doc/ja/man/man8/moused.8 1.2 +1 -1 doc/ja/man/man8/newkey.8 1.2 +7 -6 doc/ja/man/man8/nos-tun.8 1.10 +1673 -657 doc/ja/man/man8/ppp.8 1.5 +1 -1 doc/ja/man/man8/pppd.8 1.2 +26 -21 doc/ja/man/man8/procctl.8 1.5 +1 -1 doc/ja/man/man8/rbootd.8 1.5 +1 -1 doc/ja/man/man8/sendmail.8 1.2 +18 -18 doc/ja/man/man8/ypinit.8 1.2 +1 -1 doc/ja/man/man8/yppoll.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 09:06:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA13313 for cvs-all-outgoing; Thu, 15 Oct 1998 09:06:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from austin.polstra.com (austin.polstra.com [206.213.73.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA13305; Thu, 15 Oct 1998 09:06:49 -0700 (PDT) (envelope-from jdp@austin.polstra.com) Received: from austin.polstra.com (jdp@localhost) by austin.polstra.com (8.9.1/8.9.1) with ESMTP id JAA04156; Thu, 15 Oct 1998 09:06:29 -0700 (PDT) (envelope-from jdp) Message-Id: <199810151606.JAA04156@austin.polstra.com> To: jkh@time.cdrom.com Subject: Re: cvs commit: src/usr.bin/make arch.c In-Reply-To: <6945.908456937@time.cdrom.com> References: <6945.908456937@time.cdrom.com> Organization: Polstra & Co., Seattle, WA Cc: Joseph Koshy , committers@FreeBSD.ORG Date: Thu, 15 Oct 1998 09:06:29 -0700 From: John Polstra Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In article <6945.908456937@time.cdrom.com>, Jordan K. Hubbard wrote: > > (I hope I've been able to meet the Oct 15th freeze). > > Actually, we're already in freeze and people are supposed to now > be clearing commits through me. :-) > > But I'm happy to see this fixed in any case and won't argue. Just FYI > for next time. Yes, well this change broke make world, which is exactly why it's a bad idea to race against the freeze: cc -O -pipe -I/usr/src/usr.bin/make -I/usr/obj/elf/usr/src/tmp/usr/include -c /usr/src/usr.bin/make/arch.c /usr/src/usr.bin/make/arch.c: In function `Arch_LibOODate': /usr/src/usr.bin/make/arch.c:1190: `gm' undeclared (first use this function) /usr/src/usr.bin/make/arch.c:1190: (Each undeclared identifier is reported only once /usr/src/usr.bin/make/arch.c:1190: for each function it appears in.) *** Error code 1 (continuing) John -- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Self-knowledge is always bad news." -- John Barth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 09:10:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA13913 for cvs-all-outgoing; Thu, 15 Oct 1998 09:10:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA13869; Thu, 15 Oct 1998 09:10:03 -0700 (PDT) (envelope-from jdp@FreeBSD.org) From: John Polstra Received: (from jdp@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA08477; Thu, 15 Oct 1998 09:09:57 -0700 (PDT) Date: Thu, 15 Oct 1998 09:09:57 -0700 (PDT) Message-Id: <199810151609.JAA08477@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/make arch.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jdp 1998/10/15 09:09:57 PDT Modified files: usr.bin/make arch.c Log: Fix make world breakage from last commit. Revision Changes Path 1.10 +2 -2 src/usr.bin/make/arch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 09:17:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA14813 for cvs-all-outgoing; Thu, 15 Oct 1998 09:17:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA14805; Thu, 15 Oct 1998 09:17:27 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id JAA07704; Thu, 15 Oct 1998 09:17:29 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: John Polstra cc: Joseph Koshy , committers@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/make arch.c In-reply-to: Your message of "Thu, 15 Oct 1998 09:06:29 PDT." <199810151606.JAA04156@austin.polstra.com> Date: Thu, 15 Oct 1998 09:17:29 -0700 Message-ID: <7701.908468249@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Yes, well this change broke make world, which is exactly why it's a > bad idea to race against the freeze: Urk. I thought it was a change intended to fix previous raced-in breakage, which is why I didn't complain. Joseph - can you please look into this? We're getting pretty tight on time here. :-) Thanks. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 09:19:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA15111 for cvs-all-outgoing; Thu, 15 Oct 1998 09:19:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA15096; Thu, 15 Oct 1998 09:19:15 -0700 (PDT) (envelope-from motoyuki@FreeBSD.org) From: Motoyuki Konno Received: (from motoyuki@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA08832; Thu, 15 Oct 1998 09:19:11 -0700 (PDT) Date: Thu, 15 Oct 1998 09:19:11 -0700 (PDT) Message-Id: <199810151619.JAA08832@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/ja/FAQ hackers.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk motoyuki 1998/10/15 09:19:11 PDT Modified files: ja/FAQ hackers.sgml Log: Merge the following changes in the English version: hackers.sgml : 1.4 -> 1.6 Submitted by: HARADA Kiroh Revision Changes Path 1.5 +200 -3 doc/ja/FAQ/hackers.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 09:27:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAB16218 for cvs-all-outgoing; Thu, 15 Oct 1998 09:27:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from austin.polstra.com (austin.polstra.com [206.213.73.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA16212; Thu, 15 Oct 1998 09:27:15 -0700 (PDT) (envelope-from jdp@austin.polstra.com) Received: from austin.polstra.com (jdp@localhost) by austin.polstra.com (8.9.1/8.9.1) with ESMTP id JAA04372; Thu, 15 Oct 1998 09:26:48 -0700 (PDT) (envelope-from jdp) Message-Id: <199810151626.JAA04372@austin.polstra.com> To: "Jordan K. Hubbard" cc: Joseph Koshy , committers@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/make arch.c In-reply-to: Your message of "Thu, 15 Oct 1998 09:17:29 PDT." <7701.908468249@time.cdrom.com> Date: Thu, 15 Oct 1998 09:26:47 -0700 From: John Polstra Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk I already fixed it. John To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 09:55:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA20267 for cvs-all-outgoing; Thu, 15 Oct 1998 09:55:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA20255; Thu, 15 Oct 1998 09:55:42 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grondar.za (localhost [127.0.0.1]) by gratis.grondar.za (8.9.1/8.9.1) with ESMTP id SAA13072; Thu, 15 Oct 1998 18:55:12 +0200 (SAST) (envelope-from mark@grondar.za) Message-Id: <199810151655.SAA13072@gratis.grondar.za> To: "Justin M. Seger" cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/x11-toolkits/p5-Tk Makefile In-Reply-To: Your message of " Thu, 15 Oct 1998 07:28:10 MST." <199810151428.HAA04589@freefall.freebsd.org> References: <199810151428.HAA04589@freefall.freebsd.org> Date: Thu, 15 Oct 1998 18:55:10 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Justin M. Seger" wrote: > jseger 1998/10/15 07:28:09 PDT > > Modified files: > x11-toolkits/p5-Tk Makefile > Log: > Standard perl breakage for current Damn. I know how to fix this in perl-land. Just checking and it'll come RSN. M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 10:06:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA22759 for cvs-all-outgoing; Thu, 15 Oct 1998 10:06:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA22753; Thu, 15 Oct 1998 10:06:38 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA11030; Thu, 15 Oct 1998 10:06:36 -0700 (PDT) Date: Thu, 15 Oct 1998 10:06:36 -0700 (PDT) Message-Id: <199810151706.KAA11030@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/alpha/libalpha bootinfo.c src/sys/boot/i386/libi386 bootinfo.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/15 10:06:36 PDT Modified files: sys/boot/alpha/libalpha bootinfo.c sys/boot/i386/libi386 bootinfo.c Log: Get the last used address via a more conservative method, don't depend on the module chain being in increasing address order. Revision Changes Path 1.2 +6 -4 src/sys/boot/alpha/libalpha/bootinfo.c 1.14 +6 -4 src/sys/boot/i386/libi386/bootinfo.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 10:09:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA23030 for cvs-all-outgoing; Thu, 15 Oct 1998 10:09:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA23025; Thu, 15 Oct 1998 10:09:26 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA11117; Thu, 15 Oct 1998 10:09:20 -0700 (PDT) Date: Thu, 15 Oct 1998 10:09:20 -0700 (PDT) Message-Id: <199810151709.KAA11117@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern init_main.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/15 10:09:20 PDT Modified files: sys/kern init_main.c Log: Fix sysinit_add(). - Don't include multiple copies of the previous sysinit in the new one. - Leave space for and explicitly null terminate the new list. Revision Changes Path 1.99 +17 -13 src/sys/kern/init_main.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 10:12:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA23310 for cvs-all-outgoing; Thu, 15 Oct 1998 10:12:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA23305; Thu, 15 Oct 1998 10:12:14 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA11197; Thu, 15 Oct 1998 10:12:12 -0700 (PDT) Date: Thu, 15 Oct 1998 10:12:12 -0700 (PDT) Message-Id: <199810151712.KAA11197@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern kern_linker.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/15 10:12:12 PDT Modified files: sys/kern kern_linker.c Log: - bzero() after malloc(). This is especially obvious when kern_malloc is compiled with DIAGNOSTIC. - Don't break from the preload module processing loop prematurely. Revision Changes Path 1.10 +5 -3 src/sys/kern/kern_linker.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 10:14:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA23568 for cvs-all-outgoing; Thu, 15 Oct 1998 10:14:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA23560; Thu, 15 Oct 1998 10:14:18 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA11274; Thu, 15 Oct 1998 10:14:16 -0700 (PDT) Date: Thu, 15 Oct 1998 10:14:16 -0700 (PDT) Message-Id: <199810151714.KAA11274@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libc/gen exec.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/10/15 10:14:16 PDT Modified files: lib/libc/gen exec.c Log: Fix style issues in execl(), and make execle() vfork()-safe. Reviewed by: bde Approved by: jkh Revision Changes Path 1.10 +23 -13 src/lib/libc/gen/exec.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 10:16:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA23868 for cvs-all-outgoing; Thu, 15 Oct 1998 10:16:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA23861; Thu, 15 Oct 1998 10:16:26 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA11409; Thu, 15 Oct 1998 10:16:24 -0700 (PDT) Date: Thu, 15 Oct 1998 10:16:24 -0700 (PDT) Message-Id: <199810151716.KAA11409@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern link_elf.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/15 10:16:24 PDT Modified files: sys/kern link_elf.c Log: - bzero() after malloc() bug fix - look up relocation symbol names in correct table bugfix. - remove unused (initialized to 0) variable and conditional free() of it. Revision Changes Path 1.6 +7 -6 src/sys/kern/link_elf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 10:46:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA28476 for cvs-all-outgoing; Thu, 15 Oct 1998 10:46:30 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA28471; Thu, 15 Oct 1998 10:46:29 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA12376; Thu, 15 Oct 1998 10:46:27 -0700 (PDT) Date: Thu, 15 Oct 1998 10:46:27 -0700 (PDT) Message-Id: <199810151746.KAA12376@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/cam cam_periph.c cam_xpt.c src/sys/cam/scsi scsi_cd.c scsi_ch.c scsi_pass.c scsi_pt.c scsi_sa.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/15 10:46:27 PDT Modified files: sys/cam cam_periph.c cam_xpt.c sys/cam/scsi scsi_cd.c scsi_ch.c scsi_pass.c scsi_pt.c scsi_sa.c Log: Clean up some unused variables. Reviewed by: ken Submitted by: phk Revision Changes Path 1.5 +1 -3 src/sys/cam/cam_periph.c 1.23 +1 -11 src/sys/cam/cam_xpt.c 1.7 +1 -5 src/sys/cam/scsi/scsi_cd.c 1.4 +1 -2 src/sys/cam/scsi/scsi_ch.c 1.3 +1 -3 src/sys/cam/scsi/scsi_pass.c 1.2 +1 -3 src/sys/cam/scsi/scsi_pt.c 1.3 +2 -3 src/sys/cam/scsi/scsi_sa.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 11:21:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA04560 for cvs-all-outgoing; Thu, 15 Oct 1998 11:21:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA04546; Thu, 15 Oct 1998 11:21:54 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) From: "Justin T. Gibbs" Received: (from gibbs@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA13954; Thu, 15 Oct 1998 11:21:50 -0700 (PDT) Date: Thu, 15 Oct 1998 11:21:50 -0700 (PDT) Message-Id: <199810151821.LAA13954@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/dev/aic7xxx aic7xxx.c src/sys/i386/eisa ahc_eisa.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk gibbs 1998/10/15 11:21:50 PDT Modified files: sys/dev/aic7xxx aic7xxx.c sys/i386/eisa ahc_eisa.c Log: Bring back support for honoring the primary channel setting for twin channel EISA adapters. This could have caused the system to find the wrong root disk. Reviewed by: J Wunsch Revision Changes Path 1.8 +77 -45 src/sys/dev/aic7xxx/aic7xxx.c 1.3 +12 -3 src/sys/i386/eisa/ahc_eisa.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 11:50:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA09112 for cvs-all-outgoing; Thu, 15 Oct 1998 11:50:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA09107; Thu, 15 Oct 1998 11:50:08 -0700 (PDT) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA15054; Thu, 15 Oct 1998 11:50:05 -0700 (PDT) Date: Thu, 15 Oct 1998 11:50:05 -0700 (PDT) Message-Id: <199810151850.LAA15054@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/perl/perl Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/10/15 11:50:04 PDT Modified files: gnu/usr.bin/perl/perl Makefile Log: Properly install the *.h files in CORE and Config.pm where it wants to be. This should fix a substantial number of broken p5-* ports. Tested-on: x11-toolkits/p5-Tk (Amongst others) Revision Changes Path 1.16 +7 -1 src/gnu/usr.bin/perl/perl/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 12:09:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA11986 for cvs-all-outgoing; Thu, 15 Oct 1998 12:09:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA11981; Thu, 15 Oct 1998 12:09:01 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA15872; Thu, 15 Oct 1998 12:08:59 -0700 (PDT) Date: Thu, 15 Oct 1998 12:08:59 -0700 (PDT) Message-Id: <199810151908.MAA15872@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/cam cam_xpt.c src/sys/cam/scsi scsi_all.c scsi_all.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/15 12:08:58 PDT Modified files: sys/cam cam_xpt.c sys/cam/scsi scsi_all.c scsi_all.h Log: Fix several potential buffer overrun conditions. These changes have been tested both in the kernel and in userland. Also, fix a couple of printf warnings that show up when CAMDEBUG is defined. Reviewed by: imp Partially submitted by: imp Revision Changes Path 1.24 +4 -4 src/sys/cam/cam_xpt.c 1.6 +109 -23 src/sys/cam/scsi/scsi_all.c 1.5 +3 -2 src/sys/cam/scsi/scsi_all.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 12:12:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA12430 for cvs-all-outgoing; Thu, 15 Oct 1998 12:12:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA12421; Thu, 15 Oct 1998 12:12:08 -0700 (PDT) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA16049; Thu, 15 Oct 1998 12:12:04 -0700 (PDT) Date: Thu, 15 Oct 1998 12:12:04 -0700 (PDT) Message-Id: <199810151912.MAA16049@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall/help hardware.hlp trouble.hlp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/10/15 12:12:04 PDT Modified files: release/sysinstall/help hardware.hlp trouble.hlp Log: Add some points from experiences installing on a range of IBM Netfinity systems. Revision Changes Path 1.41 +2 -1 src/release/sysinstall/help/hardware.hlp 1.5 +30 -1 src/release/sysinstall/help/trouble.hlp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 12:29:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA14687 for cvs-all-outgoing; Thu, 15 Oct 1998 12:29:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA14673; Thu, 15 Oct 1998 12:29:48 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA16954; Thu, 15 Oct 1998 12:29:45 -0700 (PDT) Date: Thu, 15 Oct 1998 12:29:45 -0700 (PDT) Message-Id: <199810151929.MAA16954@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/copyright Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/10/15 12:29:45 PDT Modified files: en/copyright Makefile Log: Build license.sgml again. Cut&paste error by: Jordan Revision Changes Path 1.6 +2 -2 www/en/copyright/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 12:32:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA15172 for cvs-all-outgoing; Thu, 15 Oct 1998 12:32:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA15090; Thu, 15 Oct 1998 12:31:57 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA17054; Thu, 15 Oct 1998 12:31:55 -0700 (PDT) Date: Thu, 15 Oct 1998 12:31:55 -0700 (PDT) Message-Id: <199810151931.MAA17054@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/copyright license.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/10/15 12:31:55 PDT Modified files: en/copyright license.sgml Log: Change title: The FreeBSD Copyright -> The 4.4BSD Copyright Revision Changes Path 1.4 +3 -3 www/en/copyright/license.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 12:36:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA15716 for cvs-all-outgoing; Thu, 15 Oct 1998 12:36:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA15705; Thu, 15 Oct 1998 12:36:27 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA17286; Thu, 15 Oct 1998 12:36:24 -0700 (PDT) Date: Thu, 15 Oct 1998 12:36:24 -0700 (PDT) Message-Id: <199810151936.MAA17286@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/copyright copyright.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/10/15 12:36:24 PDT Modified files: en/copyright copyright.sgml Log: Move 'The FreeBSD Copyright' before 'The BSD Copyright' Revision Changes Path 1.3 +3 -3 www/en/copyright/copyright.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 12:53:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA19510 for cvs-all-outgoing; Thu, 15 Oct 1998 12:53:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA19504; Thu, 15 Oct 1998 12:53:32 -0700 (PDT) (envelope-from imp@FreeBSD.org) From: Warner Losh Received: (from imp@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA18170; Thu, 15 Oct 1998 12:53:30 -0700 (PDT) Date: Thu, 15 Oct 1998 12:53:30 -0700 (PDT) Message-Id: <199810151953.MAA18170@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/dev/aha aha.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk imp 1998/10/15 12:53:30 PDT Modified files: sys/dev/aha aha.c Log: Reduce the number of ccbs to 16, per the aha documentation. Move bogus comment to proper place. This should fix the hangs people are seeing under very heavy load, at least it does for me. Please let me know if you continue to have problems. Revision Changes Path 1.9 +3 -3 src/sys/dev/aha/aha.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 13:04:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA20926 for cvs-all-outgoing; Thu, 15 Oct 1998 13:04:29 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA20909; Thu, 15 Oct 1998 13:04:25 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA18609; Thu, 15 Oct 1998 13:04:21 -0700 (PDT) Date: Thu, 15 Oct 1998 13:04:21 -0700 (PDT) Message-Id: <199810152004.NAA18609@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/boot2 lib.h sio.s Makefile boot2.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/15 13:04:21 PDT Modified files: sys/boot/i386/boot2 Makefile boot2.c Added files: sys/boot/i386/boot2 lib.h sio.s Log: Add serial, dual, and probe-keyboard support. Revision Changes Path 1.6 +8 -4 src/sys/boot/i386/boot2/Makefile 1.7 +70 -22 src/sys/boot/i386/boot2/boot2.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 13:11:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA22023 for cvs-all-outgoing; Thu, 15 Oct 1998 13:11:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from implode.root.com (implode.root.com [198.145.90.17]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA22004; Thu, 15 Oct 1998 13:11:40 -0700 (PDT) (envelope-from root@implode.root.com) Received: from implode.root.com (localhost [127.0.0.1]) by implode.root.com (8.8.5/8.8.5) with ESMTP id NAA18162; Thu, 15 Oct 1998 13:09:27 -0700 (PDT) Message-Id: <199810152009.NAA18162@implode.root.com> To: Doug Rabson cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/cam/scsi scsi_da.c src/sys/i386/i386 busdma_machdep.c vm_machdep.c src/sys/i386/ibcs2 imgact_coff.c src/sys/i386/include param.h src/sys/i386/isa isa.c wd.c src/sys/kern imgact_elf.c sys_pipe.c sysv_shm.c vfs_bio.c ... In-reply-to: Your message of "Wed, 14 Oct 1998 21:29:36 BST." From: David Greenman Reply-To: dg@root.com Date: Thu, 15 Oct 1998 13:09:26 -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >> 2) Fixed a bogus type cast in round_page() and trunc_page() that >> caused some 64bit offsets and sizes to be scrambled. Removing >> the cast required adding casts at a few dozen callers. >> There may be problems with other bogus casts in close-by >> macros. A quick check seemed to indicate that those were okay, >> however. > >Do I need to track this change in the alpha port? Can you give me a rough >idea of the changes to busdma_machdep.c, vm_machdep.c and param.h so that >I can make the appropriate change (if needed). Basically, round_page and trunc_page and the calls to them need to be 64bit safe. Since a long is 64bits on alpha, I don't think there is a bug there, except for perhaps the cast being wrong: param.h:#define round_page(x) ((((unsigned long)(x)) + PAGE_MASK) & ~(PAGE_MASK)) The cast should be removed, and then any compile errors that this creates with the callers need to be fixed by casting to vm_offset_t. -DG David Greenman Co-founder/Principal Architect, The FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 13:11:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA22083 for cvs-all-outgoing; Thu, 15 Oct 1998 13:11:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA22078; Thu, 15 Oct 1998 13:11:55 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA18905; Thu, 15 Oct 1998 13:11:53 -0700 (PDT) Date: Thu, 15 Oct 1998 13:11:53 -0700 (PDT) Message-Id: <199810152011.NAA18905@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-toolkits/qt133 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 13:11:53 PDT Modified files: x11-toolkits/qt133 Makefile Log: Mark BROKEN for ELF: tsort: kernel/qapp_x11.o /usr/libexec/elf/ld: cannot open /usr/lib/c++rt0.o: No such file or directory gmake[1]: *** [link-freebsd-gcc-shared] Error 1 gmake[1]: Leaving directory `/usr/ports/x11-toolkits/qt133/work/qt-1.33/src' gmake: *** [src] Error 2 *** Error code 2 Stop. *** Error code 1 Revision Changes Path 1.21 +3 -1 ports/x11-toolkits/qt133/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 13:23:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA24105 for cvs-all-outgoing; Thu, 15 Oct 1998 13:23:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA24100; Thu, 15 Oct 1998 13:23:36 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA19286; Thu, 15 Oct 1998 13:23:33 -0700 (PDT) Date: Thu, 15 Oct 1998 13:23:33 -0700 (PDT) Message-Id: <199810152023.NAA19286@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/handbook handbook.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/10/15 13:23:33 PDT Modified files: handbook handbook.sgml Log: Make the link to the search page a full link so it will work from a local copy of the handbook. Revision Changes Path 1.90 +2 -2 doc/handbook/handbook.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 13:24:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA24356 for cvs-all-outgoing; Thu, 15 Oct 1998 13:24:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA24351; Thu, 15 Oct 1998 13:24:26 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA19352; Thu, 15 Oct 1998 13:24:24 -0700 (PDT) Date: Thu, 15 Oct 1998 13:24:24 -0700 (PDT) Message-Id: <199810152024.NAA19352@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/FAQ FAQ.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/10/15 13:24:24 PDT Modified files: FAQ FAQ.sgml Log: Make the link to the search page a full link so it will work from a local copy of the FAQ. Revision Changes Path 1.101 +3 -3 doc/FAQ/FAQ.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 13:27:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA25092 for cvs-all-outgoing; Thu, 15 Oct 1998 13:27:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA25083; Thu, 15 Oct 1998 13:27:29 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA19498; Thu, 15 Oct 1998 13:27:26 -0700 (PDT) Date: Thu, 15 Oct 1998 13:27:26 -0700 (PDT) Message-Id: <199810152027.NAA19498@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/man/man4/man4.i386 lpt.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/10/15 13:27:26 PDT Modified files: share/man/man4/man4.i386 lpt.4 Log: Add reference to lp(4). Revision Changes Path 1.7 +2 -1 src/share/man/man4/man4.i386/lpt.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 13:35:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA26076 for cvs-all-outgoing; Thu, 15 Oct 1998 13:35:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA26071; Thu, 15 Oct 1998 13:35:31 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA20409; Thu, 15 Oct 1998 13:35:29 -0700 (PDT) Date: Thu, 15 Oct 1998 13:35:29 -0700 (PDT) Message-Id: <199810152035.NAA20409@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/man/man4/man4.i386 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/10/15 13:35:28 PDT Modified files: share/man/man4/man4.i386 Makefile Log: Added manpage link plip.4 -> lp.4 Revision Changes Path 1.81 +2 -2 src/share/man/man4/man4.i386/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 13:36:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA26245 for cvs-all-outgoing; Thu, 15 Oct 1998 13:36:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA26229; Thu, 15 Oct 1998 13:36:58 -0700 (PDT) (envelope-from wosch@FreeBSD.org) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA20470; Thu, 15 Oct 1998 13:36:56 -0700 (PDT) Date: Thu, 15 Oct 1998 13:36:56 -0700 (PDT) Message-Id: <199810152036.NAA20470@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/man/man4/man4.i386 lp.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wosch 1998/10/15 13:36:55 PDT Modified files: share/man/man4/man4.i386 lp.4 Log: Added reference to ifconfig(8). Revision Changes Path 1.6 +3 -2 src/share/man/man4/man4.i386/lp.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 13:43:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA27341 for cvs-all-outgoing; Thu, 15 Oct 1998 13:43:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA27333; Thu, 15 Oct 1998 13:43:28 -0700 (PDT) (envelope-from imp@FreeBSD.org) From: Warner Losh Received: (from imp@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA20821; Thu, 15 Oct 1998 13:43:26 -0700 (PDT) Date: Thu, 15 Oct 1998 13:43:26 -0700 (PDT) Message-Id: <199810152043.NAA20821@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/man/man4 wst.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk imp 1998/10/15 13:43:26 PDT Added files: share/man/man4 wst.4 Log: Man page for the wst driver. I had planned on committing this earlier, but forgot. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 13:44:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA27595 for cvs-all-outgoing; Thu, 15 Oct 1998 13:44:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA27552; Thu, 15 Oct 1998 13:44:26 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA21293; Thu, 15 Oct 1998 13:44:21 -0700 (PDT) Date: Thu, 15 Oct 1998 13:44:21 -0700 (PDT) Message-Id: <199810152044.NAA21293@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11-toolkits/slingshot Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 13:44:21 PDT Modified files: x11-toolkits/slingshot Makefile Log: Mark BROKEN for ELF: ===> Building package for slingshot-2.1 Creating package /usr/ports/packages/All/slingshot-2.1.tgz Registering depends: XFree86-3.3.2 xview-config-3.2.1 xview-lib-3.2.1. Creating gzip'd tar ball in '/usr/ports/packages/All/slingshot-2.1.tgz' tar: can't add file lib/libsspkg.so.1 : No such file or directory /usr/sbin/pkg_create: tar command failed with code 256 *** Error code 1 Revision Changes Path 1.7 +3 -1 ports/x11-toolkits/slingshot/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 13:46:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA27992 for cvs-all-outgoing; Thu, 15 Oct 1998 13:46:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA27911; Thu, 15 Oct 1998 13:46:01 -0700 (PDT) (envelope-from imp@FreeBSD.org) From: Warner Losh Received: (from imp@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA22022; Thu, 15 Oct 1998 13:45:58 -0700 (PDT) Date: Thu, 15 Oct 1998 13:45:58 -0700 (PDT) Message-Id: <199810152045.NAA22022@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/man/man4 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk imp 1998/10/15 13:45:57 PDT Modified files: share/man/man4 Makefile Log: Add wst.4 Revision Changes Path 1.44 +1 -1 src/share/man/man4/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 14:20:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA07397 for cvs-all-outgoing; Thu, 15 Oct 1998 14:20:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA07347; Thu, 15 Oct 1998 14:20:37 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA23605; Thu, 15 Oct 1998 14:20:34 -0700 (PDT) Date: Thu, 15 Oct 1998 14:20:34 -0700 (PDT) Message-Id: <199810152120.OAA23605@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall/help XF86.hlp hardware.hlp partition.hlp relnotes.hlp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/15 14:20:33 PDT Modified files: release/sysinstall/help XF86.hlp hardware.hlp partition.hlp relnotes.hlp Log: Add references to ATM cards (Mike Spengler ) and remove all tabs. Revision Changes Path 1.8 +318 -318 src/release/sysinstall/help/XF86.hlp 1.42 +12 -6 src/release/sysinstall/help/hardware.hlp 1.5 +3 -12 src/release/sysinstall/help/partition.hlp 1.96 +20 -20 src/release/sysinstall/help/relnotes.hlp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 14:25:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA08985 for cvs-all-outgoing; Thu, 15 Oct 1998 14:25:16 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA08979; Thu, 15 Oct 1998 14:25:12 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA23700; Thu, 15 Oct 1998 14:25:10 -0700 (PDT) Date: Thu, 15 Oct 1998 14:25:10 -0700 (PDT) Message-Id: <199810152125.OAA23700@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/chinese/CJK Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 14:25:10 PDT Modified files: chinese/CJK Makefile Log: Mark BROKEN: gmake[1]: Entering directory `/usr/ports/chinese/CJK/work/CJK/4_1.3' (mkdir -p /usr/local/share/texmf/tex/latex/CJK); && \ (/bin/cp -R texinput/* /usr/local/share/texmf/tex/latex/CJK); && \ (/usr/sbin/chown -R . /usr/local/share/texmf/tex/latex/CJK); gmake -C doc/teTeX patch gmake[2]: Entering directory `/usr/ports/chinese/CJK/work/CJK/4_1.3/doc/teTeX' patch /usr/local/bin/MakeTeXPK < MakeTeXPK.diff Hmm... Looks like a new-style context diff to me... The text leading up to this was: -------------------------- |*** MakeTeXPK.teTeX Fri Aug 22 05:45:35 1997 |--- MakeTeXPK Fri Jun 12 03:52:38 1998 -------------------------- Patching file /usr/local/bin/MakeTeXPK using Plan A... Hunk #1 failed at 80. Hunk #2 failed at 142. Hunk #3 failed at 173. Revision Changes Path 1.3 +3 -1 ports/chinese/CJK/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 14:29:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA10076 for cvs-all-outgoing; Thu, 15 Oct 1998 14:29:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA10059; Thu, 15 Oct 1998 14:29:03 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA23797; Thu, 15 Oct 1998 14:28:59 -0700 (PDT) Date: Thu, 15 Oct 1998 14:28:59 -0700 (PDT) Message-Id: <199810152128.OAA23797@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall/help relnotes.hlp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/15 14:28:59 PDT Modified files: release/sysinstall/help relnotes.hlp Log: Note latest SCSI subsystem changes. Submitted by: "Kenneth D. Merry" Revision Changes Path 1.97 +41 -31 src/release/sysinstall/help/relnotes.hlp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 14:40:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA11710 for cvs-all-outgoing; Thu, 15 Oct 1998 14:40:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA11655; Thu, 15 Oct 1998 14:40:10 -0700 (PDT) (envelope-from abial@FreeBSD.org) From: Andrzej Bialecki Received: (from abial@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA24574; Thu, 15 Oct 1998 14:40:08 -0700 (PDT) Date: Thu, 15 Oct 1998 14:40:08 -0700 (PDT) Message-Id: <199810152140.OAA24574@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/picobsd README.html Version src/release/picobsd/build clean src/release/picobsd/dial/conf Makefile src/release/picobsd/dial/crunch1 Makefile src/release/picobsd/dial/floppy.tree/etc rc.network resolv.conf ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk abial 1998/10/15 14:40:07 PDT Modified files: release/picobsd README.html Version release/picobsd/build clean release/picobsd/dial/conf Makefile release/picobsd/dial/crunch1 Makefile release/picobsd/dial/floppy.tree/etc rc.network resolv.conf release/picobsd/dial/lang README.en README.pl release/picobsd/doc/src bugs.html faq.html release/picobsd/isp/conf Makefile release/picobsd/isp/crunch1 Makefile release/picobsd/isp/floppy.tree/etc hosts motd rc rc.conf rc.network resolv.conf release/picobsd/net/conf Makefile release/picobsd/net/crunch1 Makefile release/picobsd/net/floppy.tree/etc hosts motd rc rc.conf rc.network resolv.conf release/picobsd/router/conf Makefile release/picobsd/router/crunch1 Makefile release/picobsd/router/floppy.tree/etc hosts motd rc resolv.conf release/picobsd/tinyware/kget uc_eisa.c uc_isa.c uc_kmem.c uc_list.c uc_main.c uc_main.h uc_pci.c release/picobsd/tinyware/oinit oinit.c Log: Various fixups and corrections to match the 3.0-RELEASE tree. The PicoBSD version is now 0.42. Revision Changes Path 1.2 +3 -2 src/release/picobsd/README.html 1.3 +1 -1 src/release/picobsd/Version 1.7 +9 -3 src/release/picobsd/build/clean 1.3 +3 -2 src/release/picobsd/dial/conf/Makefile 1.2 +2 -2 src/release/picobsd/dial/crunch1/Makefile 1.3 +0 -0 src/release/picobsd/dial/floppy.tree/etc/rc.network 1.3 +0 -0 src/release/picobsd/dial/floppy.tree/etc/resolv.conf 1.3 +34 -2 src/release/picobsd/dial/lang/README.en 1.3 +36 -1 src/release/picobsd/dial/lang/README.pl 1.4 +10 -1 src/release/picobsd/doc/src/bugs.html 1.2 +21 -8 src/release/picobsd/doc/src/faq.html 1.3 +3 -2 src/release/picobsd/isp/conf/Makefile 1.3 +2 -2 src/release/picobsd/isp/crunch1/Makefile 1.3 +0 -0 src/release/picobsd/isp/floppy.tree/etc/hosts 1.3 +1 -1 src/release/picobsd/isp/floppy.tree/etc/motd 1.3 +2 -2 src/release/picobsd/isp/floppy.tree/etc/rc 1.3 +0 -0 src/release/picobsd/isp/floppy.tree/etc/rc.conf 1.3 +0 -0 src/release/picobsd/isp/floppy.tree/etc/rc.network 1.3 +0 -0 src/release/picobsd/isp/floppy.tree/etc/resolv.conf 1.3 +3 -2 src/release/picobsd/net/conf/Makefile 1.2 +2 -2 src/release/picobsd/net/crunch1/Makefile 1.3 +0 -0 src/release/picobsd/net/floppy.tree/etc/hosts 1.3 +1 -1 src/release/picobsd/net/floppy.tree/etc/motd 1.3 +2 -2 src/release/picobsd/net/floppy.tree/etc/rc 1.3 +0 -0 src/release/picobsd/net/floppy.tree/etc/rc.conf 1.3 +0 -0 src/release/picobsd/net/floppy.tree/etc/rc.network 1.3 +0 -0 src/release/picobsd/net/floppy.tree/etc/resolv.conf 1.3 +3 -2 src/release/picobsd/router/conf/Makefile 1.2 +2 -2 src/release/picobsd/router/crunch1/Makefile 1.3 +0 -0 src/release/picobsd/router/floppy.tree/etc/hosts 1.3 +1 -1 src/release/picobsd/router/floppy.tree/etc/motd 1.3 +2 -2 src/release/picobsd/router/floppy.tree/etc/rc 1.3 +0 -0 src/release/picobsd/router/floppy.tree/etc/resolv.conf 1.2 +2 -2 src/release/picobsd/tinyware/kget/uc_eisa.c 1.2 +3 -6 src/release/picobsd/tinyware/kget/uc_isa.c 1.2 +1 -1 src/release/picobsd/tinyware/kget/uc_kmem.c 1.2 +1 -1 src/release/picobsd/tinyware/kget/uc_list.c 1.3 +1 -0 src/release/picobsd/tinyware/kget/uc_main.c 1.2 +14 -13 src/release/picobsd/tinyware/kget/uc_main.h 1.2 +1 -1 src/release/picobsd/tinyware/kget/uc_pci.c 1.2 +2 -2 src/release/picobsd/tinyware/oinit/oinit.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 14:56:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA13494 for cvs-all-outgoing; Thu, 15 Oct 1998 14:56:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA13447; Thu, 15 Oct 1998 14:56:01 -0700 (PDT) (envelope-from dfr@FreeBSD.org) From: Doug Rabson Received: (from dfr@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA25104; Thu, 15 Oct 1998 14:55:59 -0700 (PDT) Date: Thu, 15 Oct 1998 14:55:59 -0700 (PDT) Message-Id: <199810152155.OAA25104@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/alpha/libalpha bootinfo.c elf_freebsd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dfr 1998/10/15 14:55:59 PDT Modified files: sys/boot/alpha/libalpha bootinfo.c elf_freebsd.c Log: Fix the bootinfo so that the right values actual make it into the kernel. Revision Changes Path 1.3 +6 -3 src/sys/boot/alpha/libalpha/bootinfo.c 1.6 +5 -7 src/sys/boot/alpha/libalpha/elf_freebsd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 14:56:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA13592 for cvs-all-outgoing; Thu, 15 Oct 1998 14:56:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA13571; Thu, 15 Oct 1998 14:56:50 -0700 (PDT) (envelope-from dfr@FreeBSD.org) From: Doug Rabson Received: (from dfr@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA25195; Thu, 15 Oct 1998 14:56:48 -0700 (PDT) Date: Thu, 15 Oct 1998 14:56:48 -0700 (PDT) Message-Id: <199810152156.OAA25195@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/common load_elf.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dfr 1998/10/15 14:56:47 PDT Modified files: sys/boot/common load_elf.c Log: Change some printfs so that ELF_VERBOSE prints meaningful values on the alpha. Revision Changes Path 1.7 +3 -3 src/sys/boot/common/load_elf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 15:00:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA14302 for cvs-all-outgoing; Thu, 15 Oct 1998 15:00:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA14296; Thu, 15 Oct 1998 15:00:56 -0700 (PDT) (envelope-from dfr@FreeBSD.org) From: Doug Rabson Received: (from dfr@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA25331; Thu, 15 Oct 1998 15:00:54 -0700 (PDT) Date: Thu, 15 Oct 1998 15:00:54 -0700 (PDT) Message-Id: <199810152200.PAA25331@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/alpha/alpha machdep.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dfr 1998/10/15 15:00:54 PDT Modified files: sys/alpha/alpha machdep.c Log: Fix a typo preventing the correct value of kernend from being picked up from the bootstrap. Also change some debug printfs from #if 0 to #ifdef DEBUG_CLUSTER to make it easier to debug startup memory problems. Revision Changes Path 1.18 +8 -8 src/sys/alpha/alpha/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 15:08:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA15719 for cvs-all-outgoing; Thu, 15 Oct 1998 15:08:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA15714; Thu, 15 Oct 1998 15:08:16 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA25605; Thu, 15 Oct 1998 15:08:14 -0700 (PDT) Date: Thu, 15 Oct 1998 15:08:14 -0700 (PDT) Message-Id: <199810152208.PAA25605@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/boot2 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/15 15:08:14 PDT Modified files: sys/boot/i386/boot2 Makefile Log: Fix path to sio.s Revision Changes Path 1.7 +2 -2 src/sys/boot/i386/boot2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 15:14:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA16857 for cvs-all-outgoing; Thu, 15 Oct 1998 15:14:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from nlsystems.com (nlsys.demon.co.uk [158.152.125.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA16849; Thu, 15 Oct 1998 15:14:16 -0700 (PDT) (envelope-from dfr@nlsystems.com) Received: from herring.nlsystems.com (herring.nlsystems.com [10.0.0.2]) by nlsystems.com (8.9.1/8.8.5) with SMTP id XAA09629; Thu, 15 Oct 1998 23:13:39 +0100 (BST) Date: Thu, 15 Oct 1998 23:13:38 +0100 (BST) From: Doug Rabson To: Doug Rabson cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/boot/alpha/libalpha bootinfo.c elf_freebsd.c In-Reply-To: <199810152155.OAA25104@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, 15 Oct 1998, Doug Rabson wrote: > dfr 1998/10/15 14:55:59 PDT > > Modified files: > sys/boot/alpha/libalpha bootinfo.c elf_freebsd.c > Log: > Fix the bootinfo so that the right values actual make it into the kernel. With this change, the alpha bootstrap works again. Make sure you get the corresponding change to sys/alpha/alpha/machdep.c too. -- Doug Rabson Mail: dfr@nlsystems.com Nonlinear Systems Ltd. Phone: +44 181 951 1891 Fax: +44 181 381 1039 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 15:24:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA18981 for cvs-all-outgoing; Thu, 15 Oct 1998 15:24:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA18970; Thu, 15 Oct 1998 15:24:27 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA27134; Thu, 15 Oct 1998 15:24:25 -0700 (PDT) Date: Thu, 15 Oct 1998 15:24:25 -0700 (PDT) Message-Id: <199810152224.PAA27134@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/ja/handbook submitters.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kuriyama 1998/10/15 15:24:25 PDT Modified files: ja/handbook submitters.sgml Log: Catch up to 1.242. Revision Changes Path 1.77 +40 -30 doc/ja/handbook/submitters.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 15:47:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA21672 for cvs-all-outgoing; Thu, 15 Oct 1998 15:47:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA21654; Thu, 15 Oct 1998 15:47:05 -0700 (PDT) (envelope-from motoyuki@FreeBSD.org) From: Motoyuki Konno Received: (from motoyuki@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA27947; Thu, 15 Oct 1998 15:47:02 -0700 (PDT) Date: Thu, 15 Oct 1998 15:47:02 -0700 (PDT) Message-Id: <199810152247.PAA27947@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/ja/handbook bibliography.sgml contrib.sgml handbook.sgml install.sgml porting.sgml ports.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk motoyuki 1998/10/15 15:47:02 PDT Modified files: ja/handbook bibliography.sgml contrib.sgml handbook.sgml install.sgml porting.sgml ports.sgml Log: Merge the following changes in the English version: bibliography.sgml : 1.33 -> 1.37 contrib.sgml : 1.310 -> 1.311 handbook.sgml : 1.89 -> 1.90 install.sgml : 1.66 -> 1.67 porting.sgml : 1.111 -> 1.112 ports.sgml : 1.30 -> 1.31 submitters.sgml : 1.238 -> 1.242 Submitted by: Mitsuru IWASAKI HARADA Kiroh hino@ccm.cl.nec.co.jp Motoyuki Konno Revision Changes Path 1.17 +33 -21 doc/ja/handbook/bibliography.sgml 1.92 +3 -2 doc/ja/handbook/contrib.sgml 1.33 +3 -3 doc/ja/handbook/handbook.sgml 1.27 +5 -3 doc/ja/handbook/install.sgml 1.49 +14 -2 doc/ja/handbook/porting.sgml 1.17 +9 -62 doc/ja/handbook/ports.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 16:11:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA24374 for cvs-all-outgoing; Thu, 15 Oct 1998 16:11:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA24369; Thu, 15 Oct 1998 16:11:56 -0700 (PDT) (envelope-from motoyuki@FreeBSD.org) From: Motoyuki Konno Received: (from motoyuki@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA28781; Thu, 15 Oct 1998 16:11:54 -0700 (PDT) Date: Thu, 15 Oct 1998 16:11:54 -0700 (PDT) Message-Id: <199810152311.QAA28781@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/ja/FAQ FAQ.sgml x.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk motoyuki 1998/10/15 16:11:54 PDT Modified files: ja/FAQ FAQ.sgml x.sgml Log: Merge the following changes in the English version: FAQ.sgml : 1.100 -> 1.101 x.sgml : 1.3 -> 1.5 Submitted by: Mitsuru IWASAKI HARADA Kiroh hino@ccm.cl.nec.co.jp Revision Changes Path 1.5 +4 -4 doc/ja/FAQ/FAQ.sgml 1.4 +18 -17 doc/ja/FAQ/x.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 16:18:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA25188 for cvs-all-outgoing; Thu, 15 Oct 1998 16:18:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA25130; Thu, 15 Oct 1998 16:18:02 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) From: "Justin T. Gibbs" Received: (from gibbs@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA28905; Thu, 15 Oct 1998 16:17:59 -0700 (PDT) Date: Thu, 15 Oct 1998 16:17:59 -0700 (PDT) Message-Id: <199810152317.QAA28905@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/cam cam_ccb.h src/sys/pci ncr.c src/sys/dev/isp isp_freebsd_cam.h src/sys/dev/dpt dpt_scsi.c src/sys/dev/buslogic bt.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk gibbs 1998/10/15 16:17:59 PDT Modified files: sys/cam cam_ccb.h Log: Add a mechanism to send a non-tagged transaction even if a device is currently operating in a tagged mode. The SIM driver should determine if a device is in tag mode by looking at the CAM_TAG_ACTION_VALID flag in the ccb header. If the flag is set, the tag_action field is either a SCSI II tag message (simple, ordered, head) or CAM_TAG_ACTION_NONE to specify that no tagging should be performed. Revision Changes Path 1.2 +7 -1 src/sys/cam/cam_ccb.h Modified files: sys/pci ncr.c sys/dev/isp isp_freebsd_cam.h sys/dev/dpt dpt_scsi.c sys/dev/buslogic bt.c Log: Honor CAM_TAG_ACTION_NONE. Revision Changes Path 1.137 +3 -2 src/sys/pci/ncr.c 1.8 +3 -2 src/sys/dev/isp/isp_freebsd_cam.h 1.19 +3 -2 src/sys/dev/dpt/dpt_scsi.c 1.6 +4 -3 src/sys/dev/buslogic/bt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 16:35:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA27256 for cvs-all-outgoing; Thu, 15 Oct 1998 16:35:16 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA27246; Thu, 15 Oct 1998 16:35:12 -0700 (PDT) (envelope-from motoyuki@FreeBSD.org) From: Motoyuki Konno Received: (from motoyuki@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA29420; Thu, 15 Oct 1998 16:35:10 -0700 (PDT) Date: Thu, 15 Oct 1998 16:35:10 -0700 (PDT) Message-Id: <199810152335.QAA29420@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/ja/FAQ misc.sgml x.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk motoyuki 1998/10/15 16:35:10 PDT Modified files: ja/FAQ misc.sgml x.sgml Log: Merge the following changes in the English version: misc.sgml : 1.6 -> 1.7 Fix typo. x.sgml Revision Changes Path 1.6 +75 -3 doc/ja/FAQ/misc.sgml 1.5 +2 -2 doc/ja/FAQ/x.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 16:47:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA28225 for cvs-all-outgoing; Thu, 15 Oct 1998 16:47:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA28219; Thu, 15 Oct 1998 16:47:21 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) From: "Justin T. Gibbs" Received: (from gibbs@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA29984; Thu, 15 Oct 1998 16:47:15 -0700 (PDT) Date: Thu, 15 Oct 1998 16:47:15 -0700 (PDT) Message-Id: <199810152347.QAA29984@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/dev/isp isp_freebsd.c src/sys/dev/dpt dpt_scsi.c src/sys/dev/buslogic bt.c src/sys/dev/aha aha.c src/sys/dev/advansys adwcam.c advansys.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk gibbs 1998/10/15 16:47:14 PDT Modified files: sys/dev/isp isp_freebsd.c sys/dev/dpt dpt_scsi.c sys/dev/buslogic bt.c sys/dev/aha aha.c Log: -Wunused cleanup. Submitted by: Poul-Henning Kamp Revision Changes Path 1.8 +2 -2 src/sys/dev/isp/isp_freebsd.c 1.20 +3 -9 src/sys/dev/dpt/dpt_scsi.c 1.7 +2 -4 src/sys/dev/buslogic/bt.c 1.10 +2 -5 src/sys/dev/aha/aha.c Modified files: sys/dev/advansys adwcam.c advansys.c Log: -Wunused cleanup. Fixed bug in advansys.c where we did not properly clean up ccb_info data structures in softc teardown. Submitted by: Poul-Henning Kamp Revision Changes Path 1.2 +2 -4 src/sys/dev/advansys/adwcam.c 1.4 +3 -16 src/sys/dev/advansys/advansys.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 16:49:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA28548 for cvs-all-outgoing; Thu, 15 Oct 1998 16:49:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA28543; Thu, 15 Oct 1998 16:49:31 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) From: "Justin T. Gibbs" Received: (from gibbs@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA00193; Thu, 15 Oct 1998 16:49:28 -0700 (PDT) Date: Thu, 15 Oct 1998 16:49:28 -0700 (PDT) Message-Id: <199810152349.QAA00193@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/dev/aic7xxx aic7xxx.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk gibbs 1998/10/15 16:49:28 PDT Modified files: sys/dev/aic7xxx aic7xxx.c Log: -Wunused cleanup. Correct a problem where an external bus reset on the 'background' channel of a Twin Channel EISA controller could put the driver into an infinite loop. Noticed by: Twin Channel bug, Joerg Wunsch Submitted by: -Wunused, Poul-Henning Kamp Revision Changes Path 1.9 +26 -18 src/sys/dev/aic7xxx/aic7xxx.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 17:07:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA01155 for cvs-all-outgoing; Thu, 15 Oct 1998 17:07:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA01149; Thu, 15 Oct 1998 17:07:03 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA00817; Thu, 15 Oct 1998 17:06:57 -0700 (PDT) Date: Thu, 15 Oct 1998 17:06:57 -0700 (PDT) Message-Id: <199810160006.RAA00817@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sbin/mount mount.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk des 1998/10/15 17:06:56 PDT Modified files: sbin/mount mount.8 Log: Warn about "mount -u" bug. Revision Changes Path 1.24 +5 -1 src/sbin/mount/mount.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 17:26:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA03602 for cvs-all-outgoing; Thu, 15 Oct 1998 17:26:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA03596; Thu, 15 Oct 1998 17:26:31 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA01338; Thu, 15 Oct 1998 17:26:29 -0700 (PDT) Date: Thu, 15 Oct 1998 17:26:29 -0700 (PDT) Message-Id: <199810160026.RAA01338@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/man/man4 pass.4 worm.4 xpt.4 src/share/man/man9 cd.9 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/15 17:26:29 PDT Modified files: share/man/man4 pass.4 worm.4 xpt.4 share/man/man9 cd.9 Log: Change the worm(4) man page to note that there is no longer a worm(4) driver, and point users in the right direction for similar functionality. The functionality that used to be provided there is now provided by the cd(4) driver and cdrecord. Fix cross-references in a few other man pages. (i.e. delete references to things I haven't written yet) Revision Changes Path 1.2 +3 -5 src/share/man/man4/pass.4 1.17 +37 -386 src/share/man/man4/worm.4 1.2 +3 -5 src/share/man/man4/xpt.4 1.9 +2 -3 src/share/man/man9/cd.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 17:29:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA03956 for cvs-all-outgoing; Thu, 15 Oct 1998 17:29:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA03948; Thu, 15 Oct 1998 17:29:42 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA01456; Thu, 15 Oct 1998 17:29:38 -0700 (PDT) Date: Thu, 15 Oct 1998 17:29:38 -0700 (PDT) Message-Id: <199810160029.RAA01456@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall/help relnotes.hlp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/15 17:29:37 PDT Modified files: release/sysinstall/help relnotes.hlp Log: Add notes about SCSI tape support. Submitted by: "Kenneth D. Merry" Revision Changes Path 1.98 +14 -0 src/release/sysinstall/help/relnotes.hlp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 17:33:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA04471 for cvs-all-outgoing; Thu, 15 Oct 1998 17:33:02 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA04466; Thu, 15 Oct 1998 17:32:58 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA01588; Thu, 15 Oct 1998 17:32:56 -0700 (PDT) Date: Thu, 15 Oct 1998 17:32:56 -0700 (PDT) Message-Id: <199810160032.RAA01588@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/vietnamese/vn7to8 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 17:32:56 PDT Modified files: vietnamese/vn7to8 Makefile Log: Mark BROKEN for ELF: ===> Building for vi-vn7to8-1.1.1 cc -I../include -c vn7to8.c cc -I../include -s -o vn7to8 vn7to8.o ../lib/libviqr.a ../lib/libvntype.a cc: ../lib/libviqr.a: No such file or directory cc: ../lib/libvntype.a: No such file or directory *** Error code 1 Revision Changes Path 1.4 +3 -1 ports/vietnamese/vn7to8/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 17:35:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA04809 for cvs-all-outgoing; Thu, 15 Oct 1998 17:35:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA04804; Thu, 15 Oct 1998 17:35:02 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA01642; Thu, 15 Oct 1998 17:35:00 -0700 (PDT) Date: Thu, 15 Oct 1998 17:35:00 -0700 (PDT) Message-Id: <199810160035.RAA01642@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/vietnamese/vnelvis Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 17:35:00 PDT Modified files: vietnamese/vnelvis Makefile Log: Mark BROKEN for ELF: cc -Dbsd -I../include -s -o vnelvis blk.o cmd1.o cmd2.o curses.o cut.o ex.o input.o main.o misc.o modify.o move1.o move2.o move3.o move4.o move5.o opts.o recycle.o redraw.o regexp.o regsub.o system.o tio.o tmp.o vars.o vcmd.o vi.o ../lib/libviqr.a ../lib/libvntype.a -ltermcap ../lib/libviqr.a: could not read symbols: Archive has no index; run ranlib to add one *** Error code 1 Revision Changes Path 1.6 +3 -1 ports/vietnamese/vnelvis/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 17:36:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA04991 for cvs-all-outgoing; Thu, 15 Oct 1998 17:36:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA04943; Thu, 15 Oct 1998 17:35:59 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA01691; Thu, 15 Oct 1998 17:35:56 -0700 (PDT) Date: Thu, 15 Oct 1998 17:35:56 -0700 (PDT) Message-Id: <199810160035.RAA01691@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/german/spinne Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 17:35:56 PDT Modified files: german/spinne Makefile Log: Mark BROKEN for ELF: depends on lang/mocka Revision Changes Path 1.5 +3 -1 ports/german/spinne/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 17:37:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA05255 for cvs-all-outgoing; Thu, 15 Oct 1998 17:37:18 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA05250; Thu, 15 Oct 1998 17:37:16 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA01815; Thu, 15 Oct 1998 17:37:14 -0700 (PDT) Date: Thu, 15 Oct 1998 17:37:14 -0700 (PDT) Message-Id: <199810160037.RAA01815@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/vietnamese/vnpstext Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 17:37:14 PDT Modified files: vietnamese/vnpstext Makefile Log: Mark BROKEN for ELF: cc -DDEFAULT_PSLIBDIR="\"/usr/local/share/vn-fonts\"" -I../include -c vnpstext.c cc -s -o vnpstext vnpstext.o ../lib/libvntype.a cc: ../lib/libvntype.a: No such file or directory *** Error code 1 Revision Changes Path 1.6 +3 -1 ports/vietnamese/vnpstext/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 17:40:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA05747 for cvs-all-outgoing; Thu, 15 Oct 1998 17:40:03 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA05723; Thu, 15 Oct 1998 17:39:48 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA01894; Thu, 15 Oct 1998 17:39:45 -0700 (PDT) Date: Thu, 15 Oct 1998 17:39:45 -0700 (PDT) Message-Id: <199810160039.RAA01894@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/vietnamese/vnterm Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 17:39:44 PDT Modified files: vietnamese/vnterm Makefile Log: Mark BROKEN for ELF: cc -o vnterm -I../include -O -L/usr/X11R6/lib main.o input.o charproc.o cursor.o util.o tabs.o screen.o scrollbar.o button.o Tekproc.o misc.o VTPrsTbl.o TekPrsTbl.o data.o menu.o vnvars.o -lXaw -lXmu -lXt -lSM -lICE -lXext -lX11 ../lib/libviqr.a ../lib/libvntype.a -ltermcap -Wl,-rpath,/usr/X11R6/lib cc: ../lib/libviqr.a: No such file or directory cc: ../lib/libvntype.a: No such file or directory *** Error code 1 Stop. *** Error code 1 Revision Changes Path 1.10 +3 -1 ports/vietnamese/vnterm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 17:45:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA06529 for cvs-all-outgoing; Thu, 15 Oct 1998 17:45:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA06524; Thu, 15 Oct 1998 17:45:18 -0700 (PDT) (envelope-from hanai@FreeBSD.org) From: Hanai Hiroyuki Received: (from hanai@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA02037; Thu, 15 Oct 1998 17:45:15 -0700 (PDT) Date: Thu, 15 Oct 1998 17:45:15 -0700 (PDT) Message-Id: <199810160045.RAA02037@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/handbook handbook.sgml doc/ja/handbook handbook.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hanai 1998/10/15 17:45:15 PDT Modified files: handbook handbook.sgml ja/handbook handbook.sgml Log: Oops! Next release is 3.0! This commit is too late? Revision Changes Path 1.91 +2 -2 doc/handbook/handbook.sgml 1.34 +2 -2 doc/ja/handbook/handbook.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 17:48:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA07030 for cvs-all-outgoing; Thu, 15 Oct 1998 17:48:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA07025; Thu, 15 Oct 1998 17:48:14 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA02123; Thu, 15 Oct 1998 17:48:12 -0700 (PDT) Date: Thu, 15 Oct 1998 17:48:12 -0700 (PDT) Message-Id: <199810160048.RAA02123@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/russian/pgp.language Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 17:48:11 PDT Modified files: russian/pgp.language Makefile Log: Mark BROKEN for ELF: ===> ru-pgp-2.6.3ia depends on executable: pgp - found [ -d /usr/local/lib/pgp ] || mkdir -p /usr/local/lib/pgp cd /usr/ports/russian/pgp.language/work; install -c -o bin -g bin -m 444 language.txt ru.hlp /usr/local/lib/pgp cd /usr/ports/russian/pgp.language/work; tr -d '\015' < NOTES.ru > /usr/local/lib/pgp/NOTES.ru cd /usr/local/lib/pgp; grep -l -q '^Language.*=.*ru' config.txt || { cp config.txt config.txt.bak; sed 's/^Language.*=.*$/Language = ru/' < config.txt.bak > config.txt; } grep: config.txt: No such file or directory cp: config.txt: No such file or directory *** Error code 1 Revision Changes Path 1.18 +3 -1 ports/russian/pgp.language/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 17:55:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA08038 for cvs-all-outgoing; Thu, 15 Oct 1998 17:55:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA08033; Thu, 15 Oct 1998 17:55:31 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA02411; Thu, 15 Oct 1998 17:55:28 -0700 (PDT) Date: Thu, 15 Oct 1998 17:55:28 -0700 (PDT) Message-Id: <199810160055.RAA02411@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/sharity-light Makefile ports/net/sharity-light/files unshlight.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 17:55:28 PDT Modified files: net/sharity-light Makefile net/sharity-light/files unshlight.c Log: Unbreak for current. Submitted by: dima Revision Changes Path 1.8 +1 -6 ports/net/sharity-light/Makefile 1.2 +4 -0 ports/net/sharity-light/files/unshlight.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 18:03:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA09158 for cvs-all-outgoing; Thu, 15 Oct 1998 18:03:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA09152; Thu, 15 Oct 1998 18:03:26 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA02745; Thu, 15 Oct 1998 18:03:24 -0700 (PDT) Date: Thu, 15 Oct 1998 18:03:24 -0700 (PDT) Message-Id: <199810160103.SAA02745@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/korean/ftghostscript5 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 18:03:23 PDT Modified files: korean/ftghostscript5 Makefile Log: Mark BROKEN for ELF: ./echogs -a ldt.tr -s - -lz -lm LD_RUN_PATH=; export LD_RUN_PATH; XCFLAGS= XINCLUDE= XLDFLAGS= XLIBDIRS= XLIBS= FEATURE_DEVS= DEVICE_DEVS= DEVICE_DEVS1= DEVICE_DEVS2= DEVICE_DEVS3= DEVICE_DEVS4= DEVICE_DEVS5= DEVICE_DEVS6= DEVICE_DEVS7= DEVICE_DEVS8= DEVICE_DEVS9= DEVICE_DEVS10= DEVICE_DEVS11= DEVICE_DEVS12= DEVICE_DEVS13= DEVICE_DEVS14= DEVICE_DEVS15= /bin/sh Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA09790 for cvs-all-outgoing; Thu, 15 Oct 1998 18:07:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from nagual.pp.ru (lsd.relcom.eu.net [193.125.27.73]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA09767; Thu, 15 Oct 1998 18:07:08 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.9.1/8.9.1) id FAA11125; Fri, 16 Oct 1998 05:06:49 +0400 (MSD) (envelope-from ache) Message-ID: <19981016050649.A10863@nagual.pp.ru> Date: Fri, 16 Oct 1998 05:06:49 +0400 From: "Andrey A. Chernov" To: "Justin M. Seger" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/russian/pgp.language Makefile Mail-Followup-To: "Justin M. Seger" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <199810160048.RAA02123@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199810160048.RAA02123@freefall.freebsd.org>; from jseger@FreeBSD.ORG on Thu, Oct 15, 1998 at 05:48:12PM -0700 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Thu, Oct 15, 1998 at 05:48:12PM -0700, Justin M. Seger wrote: > jseger 1998/10/15 17:48:11 PDT > > Modified files: > russian/pgp.language Makefile > Log: > Mark BROKEN for ELF: > ===> ru-pgp-2.6.3ia depends on executable: pgp - found > [ -d /usr/local/lib/pgp ] || mkdir -p /usr/local/lib/pgp > cd /usr/ports/russian/pgp.language/work; install -c -o bin -g bin -m 444 language.txt ru.hlp /usr/local/lib/pgp > cd /usr/ports/russian/pgp.language/work; tr -d '\015' < NOTES.ru > /usr/local/lib/pgp/NOTES.ru > cd /usr/local/lib/pgp; grep -l -q '^Language.*=.*ru' config.txt || { cp config.txt config.txt.bak; sed 's/^Language.*=.*$/Language = ru/' < config.txt.bak > config.txt; } > grep: config.txt: No such file or directory > cp: config.txt: No such file or directory > *** Error code 1 It is not broken for ELF, you just have not have PGP properly installed - /usr/local/lib/pgp/config.txt is missing. -- Andrey A. Chernov http://www.nagual.pp.ru/~ache/ MTH/SH/HE S-- W-- N+ PEC>+ D A a++ C G>+ QH+(++) 666+>++ Y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 18:08:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA09962 for cvs-all-outgoing; Thu, 15 Oct 1998 18:08:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA09954; Thu, 15 Oct 1998 18:08:10 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA02959; Thu, 15 Oct 1998 18:08:07 -0700 (PDT) Date: Thu, 15 Oct 1998 18:08:07 -0700 (PDT) Message-Id: <199810160108.SAA02959@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/databases/mysql321 Makefile ports/databases/mysql321/patches patch-ag patch-ah patch-ai patch-aj patch-ab patch-ac Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 18:08:07 PDT Modified files: databases/mysql321 Makefile databases/mysql321/patches patch-ab patch-ac Added files: databases/mysql321/patches patch-ag patch-ah patch-ai patch-aj Log: Unbreak. Submitted by: Dirk Froemberg Revision Changes Path 1.29 +1 -3 ports/databases/mysql321/Makefile 1.5 +1 -1 ports/databases/mysql321/patches/patch-ab 1.2 +4 -18 ports/databases/mysql321/patches/patch-ac To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 18:11:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA10347 for cvs-all-outgoing; Thu, 15 Oct 1998 18:11:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA10342; Thu, 15 Oct 1998 18:11:41 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA03074; Thu, 15 Oct 1998 18:11:39 -0700 (PDT) Date: Thu, 15 Oct 1998 18:11:39 -0700 (PDT) Message-Id: <199810160111.SAA03074@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/chimera Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 18:11:39 PDT Modified files: japanese/chimera Makefile Log: Mark BROKEN for ELF: cc -o chimera -O2 -m486 -L/usr/X11R6/lib main.o url.o net.o ftp.o gopher.o http.o util.o document.o local.o cache.o mime.o input.o md5.o auth.o lang.o stringdb.o inline.o widget.o convert.o fallback.o -L../mxw -lmxw -L../libhtmlw -lhtmlw -L../xloadimage -lxloadimage -L../common -lcommon -lXaw -lXmu -lXt -lSM -lICE -lXext -lX11 -lm /usr/X11R6/lib/libhtmlw.a(HTML.o): In function `CreateScrollbars': HTML.o(.text+0x77f): undefined reference to `xmDrawingAreaWidgetClass' HTML.o(.text+0x826): undefined reference to `xmScrollBarWidgetClass' Revision Changes Path 1.9 +3 -1 ports/japanese/chimera/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 18:12:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA10458 for cvs-all-outgoing; Thu, 15 Oct 1998 18:12:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA10453; Thu, 15 Oct 1998 18:12:25 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA03143; Thu, 15 Oct 1998 18:12:23 -0700 (PDT) Date: Thu, 15 Oct 1998 18:12:23 -0700 (PDT) Message-Id: <199810160112.SAA03143@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/korean/hanemacs Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 18:12:22 PDT Modified files: korean/hanemacs Makefile Log: Mark BROKEn for ELF: gmake[1]: *** No rule to make target `/usr/lib/crt0.o', needed by `temacs'. Stop. gmake[1]: Leaving directory `/usr/ports/korean/hanemacs/work/hanemacs-19.34/src' gmake: *** [src] Error 2 Revision Changes Path 1.2 +3 -1 ports/korean/hanemacs/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 18:24:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA11965 for cvs-all-outgoing; Thu, 15 Oct 1998 18:24:49 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA11944; Thu, 15 Oct 1998 18:24:44 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id SAA10564; Thu, 15 Oct 1998 18:24:49 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Hanai Hiroyuki cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: doc/handbook handbook.sgml doc/ja/handbook handbook.sgml In-reply-to: Your message of "Thu, 15 Oct 1998 17:45:15 PDT." <199810160045.RAA02037@freefall.freebsd.org> Date: Thu, 15 Oct 1998 18:24:49 -0700 Message-ID: <10560.908501089@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Nope, still on time. Thanks for checking! > hanai 1998/10/15 17:45:15 PDT > > Modified files: > handbook handbook.sgml > ja/handbook handbook.sgml > Log: > Oops! Next release is 3.0! > This commit is too late? > > Revision Changes Path > 1.91 +2 -2 doc/handbook/handbook.sgml > 1.34 +2 -2 doc/ja/handbook/handbook.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 18:30:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA12610 for cvs-all-outgoing; Thu, 15 Oct 1998 18:30:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA12605; Thu, 15 Oct 1998 18:30:14 -0700 (PDT) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA03659; Thu, 15 Oct 1998 18:30:12 -0700 (PDT) Date: Thu, 15 Oct 1998 18:30:12 -0700 (PDT) Message-Id: <199810160130.SAA03659@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/conf GENERIC Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/10/15 18:30:11 PDT Modified files: sys/i386/conf GENERIC Log: Add commented out bpf entry. (DHCP is popular here, and this is required). Ok'ed by: jkh Revision Changes Path 1.125 +7 -1 src/sys/i386/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 18:49:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA14421 for cvs-all-outgoing; Thu, 15 Oct 1998 18:49:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA14416; Thu, 15 Oct 1998 18:49:16 -0700 (PDT) (envelope-from yokota@FreeBSD.org) From: Kazutaka YOKOTA Received: (from yokota@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA04502; Thu, 15 Oct 1998 18:49:14 -0700 (PDT) Date: Thu, 15 Oct 1998 18:49:14 -0700 (PDT) Message-Id: <199810160149.SAA04502@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/syscons/keymaps INDEX.keymaps Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk yokota 1998/10/15 18:49:14 PDT Modified files: share/syscons/keymaps INDEX.keymaps Log: Keep the entries sorted by name. Rev.1.21 broke the order inadvertently. No functaionlal change. Revision Changes Path 1.22 +2 -2 src/share/syscons/keymaps/INDEX.keymaps To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 19:03:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA16201 for cvs-all-outgoing; Thu, 15 Oct 1998 19:03:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA16196; Thu, 15 Oct 1998 19:03:02 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA05143; Thu, 15 Oct 1998 19:03:00 -0700 (PDT) Date: Thu, 15 Oct 1998 19:03:00 -0700 (PDT) Message-Id: <199810160203.TAA05143@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/korean/hanterm Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 19:03:00 PDT Modified files: korean/hanterm Makefile Log: Mark BROKEN for ELF: checking for XextCreateExtension in -lXext... yes checking for XawSimpleMenuAddGlobalActions in -lXaw... no checking for XawSimpleMenuAddGlobalActions in -lXaw_s... no configure: error: Unable to successfully link Athena library (-lcf_x_athena) with test program *** Error code 1 Revision Changes Path 1.5 +3 -1 ports/korean/hanterm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 19:04:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA16397 for cvs-all-outgoing; Thu, 15 Oct 1998 19:04:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA16392; Thu, 15 Oct 1998 19:04:11 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA05205; Thu, 15 Oct 1998 19:04:10 -0700 (PDT) Date: Thu, 15 Oct 1998 19:04:10 -0700 (PDT) Message-Id: <199810160204.TAA05205@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/korean/hanterm-xf86 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 19:04:09 PDT Modified files: korean/hanterm-xf86 Makefile Log: Mark BROKEN for ELF: checking for XextCreateExtension in -lXext... yes checking for XawSimpleMenuAddGlobalActions in -lXaw... no checking for XawSimpleMenuAddGlobalActions in -lXaw_s... no configure: error: Unable to successfully link Athena library (-lcf_x_athena) with test program *** Error code 1 Revision Changes Path 1.9 +3 -1 ports/korean/hanterm-xf86/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 19:04:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA16474 for cvs-all-outgoing; Thu, 15 Oct 1998 19:04:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA16465; Thu, 15 Oct 1998 19:04:50 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA05240; Thu, 15 Oct 1998 19:04:48 -0700 (PDT) Date: Thu, 15 Oct 1998 19:04:48 -0700 (PDT) Message-Id: <199810160204.TAA05240@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/diclookup-mule Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 19:04:48 PDT Modified files: japanese/diclookup-mule Makefile Log: Mark BROKEN for ELF: installing in lib... cp od-eiwa.elc od-chujiten.elc od-chujiten64.elc od-chujiten64-epw.elc od-kojien.elc od-crown.elc od-italian.elc od-oxford.elc od-readers.elc /usr/local/lib/mule/site-lisp usage: cp [-R [-H | -L | -P]] [-f | -i] [-p] src target cp [-R [-H | -L | -P]] [-f | -i] [-p] src1 ... srcN directory *** Error code 1 Revision Changes Path 1.3 +3 -1 ports/japanese/diclookup-mule/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 19:08:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA16998 for cvs-all-outgoing; Thu, 15 Oct 1998 19:08:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA16993; Thu, 15 Oct 1998 19:08:24 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA05344; Thu, 15 Oct 1998 19:08:22 -0700 (PDT) Date: Thu, 15 Oct 1998 19:08:22 -0700 (PDT) Message-Id: <199810160208.TAA05344@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/conf newvers.sh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/15 19:08:21 PDT Modified files: sys/conf newvers.sh Log: Change to 3.0-RELEASE in anticipation of the tag. Revision Changes Path 1.39 +2 -2 src/sys/conf/newvers.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 19:11:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA17472 for cvs-all-outgoing; Thu, 15 Oct 1998 19:11:29 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA17453 for ; Thu, 15 Oct 1998 19:11:24 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id TAA10912 for ; Thu, 15 Oct 1998 19:11:30 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: committers@FreeBSD.ORG Subject: Tag will go down at 20:30 PDT Date: Thu, 15 Oct 1998 19:11:29 -0700 Message-ID: <10908.908503889@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk I've moved it up a half hour to give a few folks just a bit more time, but that's when it will be. I'll be turning commits off (how do we do that again? :) around this time and flipping them back on after the tag is completed. Again, I will *not* be tagging the ports tree in order to give those folks a bit more time. It's also not critical (for me) that ports be tagged since the release builds have never used tags in extracting ports. Even if I tagged ports now, any subsequent builds I did after sliding various tags on src forward would simply grab the -current ports tree and the tag would be essentially ignored. It's only for reference purposes, I guess. Never did understand the logic of tagging the ports tree (with a completely different tag, no less) anyway. :-) In any case, just FYI! - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 19:12:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA17641 for cvs-all-outgoing; Thu, 15 Oct 1998 19:12:38 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA17634; Thu, 15 Oct 1998 19:12:37 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA05661; Thu, 15 Oct 1998 19:12:35 -0700 (PDT) Date: Thu, 15 Oct 1998 19:12:35 -0700 (PDT) Message-Id: <199810160212.TAA05661@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/x11/xloadimage Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 19:12:35 PDT Modified files: x11/xloadimage Makefile Log: Unbreak. Submitted by: jmz Revision Changes Path 1.14 +2 -3 ports/x11/xloadimage/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 19:16:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA17984 for cvs-all-outgoing; Thu, 15 Oct 1998 19:16:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA17977; Thu, 15 Oct 1998 19:16:03 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA05847; Thu, 15 Oct 1998 19:16:01 -0700 (PDT) Date: Thu, 15 Oct 1998 19:16:01 -0700 (PDT) Message-Id: <199810160216.TAA05847@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/comms/yaps Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 19:16:01 PDT Modified files: comms/yaps Makefile Log: Unbreak. Submitted by: Jun Kuriyama Revision Changes Path 1.3 +3 -4 ports/comms/yaps/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 19:20:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA18733 for cvs-all-outgoing; Thu, 15 Oct 1998 19:20:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA18646 for ; Thu, 15 Oct 1998 19:20:01 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id TAA10999 for ; Thu, 15 Oct 1998 19:20:05 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: committers@FreeBSD.ORG Subject: sys/param.h Date: Thu, 15 Oct 1998 19:20:04 -0700 Message-ID: <10995.908504404@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Any parameters people want to tweak in here before RELEASE? - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 19:27:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA19898 for cvs-all-outgoing; Thu, 15 Oct 1998 19:27:20 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA19885; Thu, 15 Oct 1998 19:27:10 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA06210; Thu, 15 Oct 1998 19:27:08 -0700 (PDT) Date: Thu, 15 Oct 1998 19:27:08 -0700 (PDT) Message-Id: <199810160227.TAA06210@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall/help readme.hlp relnotes.hlp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/15 19:27:08 PDT Modified files: release/sysinstall/help readme.hlp relnotes.hlp Log: Adjust for -RELEASE Revision Changes Path 1.23 +16 -16 src/release/sysinstall/help/readme.hlp 1.99 +16 -13 src/release/sysinstall/help/relnotes.hlp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 19:36:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA20706 for cvs-all-outgoing; Thu, 15 Oct 1998 19:36:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA20701; Thu, 15 Oct 1998 19:36:18 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA06735; Thu, 15 Oct 1998 19:36:16 -0700 (PDT) Date: Thu, 15 Oct 1998 19:36:16 -0700 (PDT) Message-Id: <199810160236.TAA06735@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/korean/mizifont Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 19:36:16 PDT Modified files: korean/mizifont Makefile Log: Mark BROKEN for ELF. Depends on rpm Revision Changes Path 1.6 +3 -1 ports/korean/mizifont/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 19:42:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA21465 for cvs-all-outgoing; Thu, 15 Oct 1998 19:42:41 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA21460; Thu, 15 Oct 1998 19:42:36 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA07021; Thu, 15 Oct 1998 19:42:30 -0700 (PDT) Date: Thu, 15 Oct 1998 19:42:30 -0700 (PDT) Message-Id: <199810160242.TAA07021@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/databases/postgresql Makefile ports/databases/postgresql/patches patch-al patch-am patch-ak ports/databases/postgresql/pkg PLIST ports/databases/postgresql/scripts createuser Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 19:42:29 PDT Modified files: databases/postgresql Makefile databases/postgresql/patches patch-ak databases/postgresql/pkg PLIST databases/postgresql/scripts createuser Added files: databases/postgresql/patches patch-al patch-am Log: Unbreak. Submitted by: steve Revision Changes Path 1.28 +2 -4 ports/databases/postgresql/Makefile 1.2 +16 -2 ports/databases/postgresql/patches/patch-ak 1.16 +5 -6 ports/databases/postgresql/pkg/PLIST 1.5 +1 -1 ports/databases/postgresql/scripts/createuser To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 19:43:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA21566 for cvs-all-outgoing; Thu, 15 Oct 1998 19:43:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA21551; Thu, 15 Oct 1998 19:43:29 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA07080; Thu, 15 Oct 1998 19:43:27 -0700 (PDT) Date: Thu, 15 Oct 1998 19:43:27 -0700 (PDT) Message-Id: <199810160243.TAA07080@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/korean/nh2ps Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 19:43:27 PDT Modified files: korean/nh2ps Makefile Log: Mark BROKEN for ELF: ===> Building for ko-nh2ps-2.3 Generating psfontmap.c ... ./mkpsfontmap.pl > psfontmap.c ./mkpsfontmap.pl: not found *** Error code 127 Revision Changes Path 1.6 +3 -1 ports/korean/nh2ps/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 19:53:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA22538 for cvs-all-outgoing; Thu, 15 Oct 1998 19:53:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA22533; Thu, 15 Oct 1998 19:53:07 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA07396; Thu, 15 Oct 1998 19:53:05 -0700 (PDT) Date: Thu, 15 Oct 1998 19:53:05 -0700 (PDT) Message-Id: <199810160253.TAA07396@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/korean/pgp.language Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 19:53:05 PDT Modified files: korean/pgp.language Makefile Log: Mark as RESTRICTED: Crypto Revision Changes Path 1.2 +3 -1 ports/korean/pgp.language/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 19:54:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA22685 for cvs-all-outgoing; Thu, 15 Oct 1998 19:54:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA22676; Thu, 15 Oct 1998 19:54:10 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA07448; Thu, 15 Oct 1998 19:54:07 -0700 (PDT) Date: Thu, 15 Oct 1998 19:54:07 -0700 (PDT) Message-Id: <199810160254.TAA07448@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/russian/pgp.language Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 19:54:07 PDT Modified files: russian/pgp.language Makefile Log: Unmark RBOKEN, mark RESSTRICTED: crypto Revision Changes Path 1.19 +2 -2 ports/russian/pgp.language/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 19:55:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA22962 for cvs-all-outgoing; Thu, 15 Oct 1998 19:55:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA22950; Thu, 15 Oct 1998 19:55:53 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA07548; Thu, 15 Oct 1998 19:55:50 -0700 (PDT) Date: Thu, 15 Oct 1998 19:55:50 -0700 (PDT) Message-Id: <199810160255.TAA07548@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/textproc/sp Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 19:55:50 PDT Modified files: textproc/sp Makefile Log: Unmark BROKEN. Submitted by: jfieber Revision Changes Path 1.8 +1 -3 ports/textproc/sp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 20:03:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA24295 for cvs-all-outgoing; Thu, 15 Oct 1998 20:03:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA24277; Thu, 15 Oct 1998 20:03:11 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA07831; Thu, 15 Oct 1998 20:03:08 -0700 (PDT) Date: Thu, 15 Oct 1998 20:03:08 -0700 (PDT) Message-Id: <199810160303.UAA07831@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/korean/pine Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 20:03:08 PDT Modified files: korean/pine Makefile Log: Mark BROKEN for ELF: ===> Installing for ko-pine-3.96k.3 install -c -o root -g wheel -m 444 bin/libpico.so.1.3 /usr/local/lib/libpico.so.1.3 /sbin/ldconfig -m /usr/local/lib install -c -s -o root -g wheel -m 555 bin/pico /usr/local/bin/pico install: bin/pico: No such file or directory *** Error code 71 Revision Changes Path 1.8 +3 -1 ports/korean/pine/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 20:04:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA24633 for cvs-all-outgoing; Thu, 15 Oct 1998 20:04:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA24606; Thu, 15 Oct 1998 20:04:09 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA07989; Thu, 15 Oct 1998 20:04:07 -0700 (PDT) Date: Thu, 15 Oct 1998 20:04:07 -0700 (PDT) Message-Id: <199810160304.UAA07989@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/www/libwww Makefile ports/www/libwww/patches patch-af ports/www/libwww/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 20:04:07 PDT Modified files: www/libwww Makefile www/libwww/pkg PLIST Added files: www/libwww/patches patch-af Log: Unbreak for ELF. Submitted by: steve Revision Changes Path 1.12 +2 -4 ports/www/libwww/Makefile 1.10 +2 -2 ports/www/libwww/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 20:04:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA24714 for cvs-all-outgoing; Thu, 15 Oct 1998 20:04:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA24670; Thu, 15 Oct 1998 20:04:18 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA08020; Thu, 15 Oct 1998 20:04:16 -0700 (PDT) Date: Thu, 15 Oct 1998 20:04:16 -0700 (PDT) Message-Id: <199810160304.UAA08020@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/common load_elf.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/15 20:04:16 PDT Modified files: sys/boot/common load_elf.c Log: "fix" the gzipped kernel load problem by having the loader check that it can seek back to the first PT_LOAD and doing a close/reopen if it cannot. This is because the first PT_LOAD section includes the ELF headers. This fixes gzipped kernels on the i386, it should solve mike's problem for the Alpha. Revision Changes Path 1.8 +33 -22 src/sys/boot/common/load_elf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 20:10:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA25826 for cvs-all-outgoing; Thu, 15 Oct 1998 20:10:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA25820; Thu, 15 Oct 1998 20:10:12 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA08335; Thu, 15 Oct 1998 20:10:10 -0700 (PDT) Date: Thu, 15 Oct 1998 20:10:10 -0700 (PDT) Message-Id: <199810160310.UAA08335@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/net/rwhois Makefile ports/net/rwhois/patches patch-af Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 20:10:09 PDT Modified files: net/rwhois Makefile Added files: net/rwhois/patches patch-af Log: Unbreak. Submitted by: steve Revision Changes Path 1.5 +1 -3 ports/net/rwhois/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 20:10:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA25948 for cvs-all-outgoing; Thu, 15 Oct 1998 20:10:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA25943; Thu, 15 Oct 1998 20:10:48 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA08393; Thu, 15 Oct 1998 20:10:46 -0700 (PDT) Date: Thu, 15 Oct 1998 20:10:46 -0700 (PDT) Message-Id: <199810160310.UAA08393@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/iv Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 20:10:45 PDT Modified files: japanese/iv Makefile Log: Mark BROKEN for ELF: ===> Compressing manual pages for ja-iv-3.1 ===> Registering installation for ja-iv-3.1 ===> Building package for ja-iv-3.1 Creating package /usr/ports/packages/All/ja-iv-3.1.tgz Registering depends:. Creating gzip'd tar ball in '/usr/ports/packages/All/ja-iv-3.1.tgz' tar: can't add file interviews/lib/libIV.so.3 : No such file or directory tar: can't add file interviews/lib/libUnidraw.so.3 : No such file or directory tar: can't add file interviews/bin/alert : No such file or directory tar: can't add file interviews/bin/dclock : No such file or directory tar: can't add file interviews/bin/doc : No such file or directory tar: can't add file interviews/bin/ibuild : No such file or directory Revision Changes Path 1.5 +3 -1 ports/japanese/iv/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 20:17:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA26458 for cvs-all-outgoing; Thu, 15 Oct 1998 20:17:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA26453; Thu, 15 Oct 1998 20:17:50 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA08653; Thu, 15 Oct 1998 20:17:48 -0700 (PDT) Date: Thu, 15 Oct 1998 20:17:48 -0700 (PDT) Message-Id: <199810160317.UAA08653@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/plan9/wily Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 20:17:47 PDT Modified files: plan9/wily Makefile Log: Unbreak. Submitted by: steve Revision Changes Path 1.7 +2 -3 ports/plan9/wily/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 20:26:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA27388 for cvs-all-outgoing; Thu, 15 Oct 1998 20:26:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA27383; Thu, 15 Oct 1998 20:26:10 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA09027; Thu, 15 Oct 1998 20:26:08 -0700 (PDT) Date: Thu, 15 Oct 1998 20:26:08 -0700 (PDT) Message-Id: <199810160326.UAA09027@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/pgp.language Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 20:26:08 PDT Modified files: japanese/pgp.language Makefile Log: Mark RESTRICTED: Crypto Revision Changes Path 1.3 +3 -1 ports/japanese/pgp.language/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 20:26:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA27507 for cvs-all-outgoing; Thu, 15 Oct 1998 20:26:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA27502; Thu, 15 Oct 1998 20:26:56 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA09079; Thu, 15 Oct 1998 20:26:54 -0700 (PDT) Date: Thu, 15 Oct 1998 20:26:54 -0700 (PDT) Message-Id: <199810160326.UAA09079@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/etc make.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/15 20:26:54 PDT Modified files: etc make.conf Log: Commented out example of changing the default kernel format with warning. Revision Changes Path 1.70 +9 -1 src/etc/make.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 20:28:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA27693 for cvs-all-outgoing; Thu, 15 Oct 1998 20:28:16 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA27688; Thu, 15 Oct 1998 20:28:15 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA09141; Thu, 15 Oct 1998 20:28:13 -0700 (PDT) Date: Thu, 15 Oct 1998 20:28:13 -0700 (PDT) Message-Id: <199810160328.UAA09141@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/man/man4 da.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/15 20:28:13 PDT Modified files: share/man/man4 da.4 Log: Update the da(4) man page for CAM. The da.4 man page was repository-copied from the sd.4 man page. This includes a discussion of write caching and its effects. Reviewed by: ken Submitted by: gibbs Revision Changes Path 1.12 +100 -87 src/share/man/man4/da.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 20:29:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA27902 for cvs-all-outgoing; Thu, 15 Oct 1998 20:29:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA27897; Thu, 15 Oct 1998 20:29:52 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA09208; Thu, 15 Oct 1998 20:29:50 -0700 (PDT) Date: Thu, 15 Oct 1998 20:29:50 -0700 (PDT) Message-Id: <199810160329.UAA09208@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/man/man4 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/15 20:29:49 PDT Modified files: share/man/man4 Makefile Log: Add the da(4) man page. Revision Changes Path 1.45 +1 -1 src/share/man/man4/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 20:32:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA28254 for cvs-all-outgoing; Thu, 15 Oct 1998 20:32:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA28231; Thu, 15 Oct 1998 20:32:06 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA09443; Thu, 15 Oct 1998 20:32:04 -0700 (PDT) Date: Thu, 15 Oct 1998 20:32:04 -0700 (PDT) Message-Id: <199810160332.UAA09443@freefall.freebsd.org> 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 1998/10/15 20:32:03 PDT Modified files: share/mk bsd.kmod.mk Log: Update the kld glue Pre-Approved by: jkh Revision Changes Path 1.56 +32 -1 src/share/mk/bsd.kmod.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 20:40:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA29314 for cvs-all-outgoing; Thu, 15 Oct 1998 20:40:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA29297 for ; Thu, 15 Oct 1998 20:40:53 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-197.ix.netcom.com [209.109.234.197]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id UAA06494; Thu, 15 Oct 1998 20:40:28 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id UAA01717; Thu, 15 Oct 1998 20:40:25 -0700 (PDT) Date: Thu, 15 Oct 1998 20:40:25 -0700 (PDT) Message-Id: <199810160340.UAA01717@silvia.hip.berkeley.edu> To: jkh@time.cdrom.com CC: committers@FreeBSD.ORG In-reply-to: <10995.908504404@time.cdrom.com> (jkh@time.cdrom.com) Subject: Re: sys/param.h From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Any parameters people want to tweak in here before RELEASE? Bump __FreeBSD_version by one, cut release, and bump one again to denote post-release. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 20:41:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA29467 for cvs-all-outgoing; Thu, 15 Oct 1998 20:41:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA29462; Thu, 15 Oct 1998 20:41:51 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA09769; Thu, 15 Oct 1998 20:41:49 -0700 (PDT) Date: Thu, 15 Oct 1998 20:41:49 -0700 (PDT) Message-Id: <199810160341.UAA09769@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/nethack Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 20:41:49 PDT Modified files: japanese/nethack Makefile Log: Mark BROKEN for ELF. Lib Sm and LibICE Revision Changes Path 1.22 +3 -1 ports/japanese/nethack/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 20:42:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA29624 for cvs-all-outgoing; Thu, 15 Oct 1998 20:42:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA29619; Thu, 15 Oct 1998 20:42:30 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA09818; Thu, 15 Oct 1998 20:42:28 -0700 (PDT) Date: Thu, 15 Oct 1998 20:42:28 -0700 (PDT) Message-Id: <199810160342.UAA09818@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/pgp.language Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 20:42:28 PDT Modified files: japanese/pgp.language Makefile Log: Type in last commit Revision Changes Path 1.4 +2 -2 ports/japanese/pgp.language/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 20:45:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA00174 for cvs-all-outgoing; Thu, 15 Oct 1998 20:45:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA00166; Thu, 15 Oct 1998 20:45:38 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA09914; Thu, 15 Oct 1998 20:45:36 -0700 (PDT) Date: Thu, 15 Oct 1998 20:45:36 -0700 (PDT) Message-Id: <199810160345.UAA09914@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern link_aout.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/15 20:45:36 PDT Modified files: sys/kern link_aout.c Log: Fix some bugs in link_aout.c caused by using uninitialized malloc space. Pre-Approved by: jkh Revision Changes Path 1.14 +4 -1 src/sys/kern/link_aout.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 20:55:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA01529 for cvs-all-outgoing; Thu, 15 Oct 1998 20:55:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA01524; Thu, 15 Oct 1998 20:55:04 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA10455; Thu, 15 Oct 1998 20:55:02 -0700 (PDT) Date: Thu, 15 Oct 1998 20:55:02 -0700 (PDT) Message-Id: <199810160355.UAA10455@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/alpha/alpha elf_machdep.c src/sys/gnu/i386/fpemul fpu_entry.c src/sys/i386/i386 elf_machdep.c math_emulate.c src/sys/i386/ibcs2 imgact_coff.c src/sys/i386/linux imgact_linux.c linux_sysvec.c src/sys/kern imgact_aout.c imgact_elf.c ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/15 20:55:02 PDT Modified files: sys/alpha/alpha elf_machdep.c sys/gnu/i386/fpemul fpu_entry.c sys/i386/i386 elf_machdep.c math_emulate.c sys/i386/ibcs2 imgact_coff.c sys/i386/linux imgact_linux.c linux_sysvec.c sys/kern imgact_aout.c imgact_elf.c imgact_gzip.c imgact_shell.c kern_exec.c kern_lkm.c kern_module.c kern_sysctl.c link_elf.c vfs_init.c sys/netinet ip_fw.c ip_input.c sys/sys _posix.h exec.h kernel.h linker.h mount.h vnode.h Log: *gulp*. Jordan specifically OK'ed this.. This is the bulk of the support for doing kld modules. Two linker_sets were replaced by SYSINIT()'s. VFS's and exec handlers are self registered. kld is now a superset of lkm. I have converted most of them, they will follow as a seperate commit as samples. This all still works as a static a.out kernel using LKM's. Revision Changes Path 1.2 +42 -34 src/sys/alpha/alpha/elf_machdep.c 1.15 +29 -9 src/sys/gnu/i386/fpemul/fpu_entry.c 1.3 +43 -17 src/sys/i386/i386/elf_machdep.c 1.28 +26 -9 src/sys/i386/i386/math_emulate.c 1.33 +2 -2 src/sys/i386/ibcs2/imgact_coff.c 1.30 +2 -2 src/sys/i386/linux/imgact_linux.c 1.37 +36 -17 src/sys/i386/linux/linux_sysvec.c 1.43 +2 -2 src/sys/kern/imgact_aout.c 1.40 +2 -2 src/sys/kern/imgact_elf.c 1.35 +2 -2 src/sys/kern/imgact_gzip.c 1.17 +3 -2 src/sys/kern/imgact_shell.c 1.87 +66 -5 src/sys/kern/kern_exec.c 1.57 +11 -36 src/sys/kern/kern_lkm.c 1.11 +2 -2 src/sys/kern/kern_module.c 1.78 +3 -1 src/sys/kern/kern_sysctl.c 1.7 +41 -30 src/sys/kern/link_elf.c 1.35 +194 -79 src/sys/kern/vfs_init.c 1.97 +50 -8 src/sys/netinet/ip_fw.c 1.102 +1 -4 src/sys/netinet/ip_input.c 1.3 +2 -2 src/sys/sys/_posix.h 1.19 +38 -1 src/sys/sys/exec.h 1.43 +25 -2 src/sys/sys/kernel.h 1.9 +5 -3 src/sys/sys/linker.h 1.69 +34 -4 src/sys/sys/mount.h 1.75 +6 -4 src/sys/sys/vnode.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 20:56:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA01839 for cvs-all-outgoing; Thu, 15 Oct 1998 20:56:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA01817 for ; Thu, 15 Oct 1998 20:56:35 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-197.ix.netcom.com [209.109.234.197]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id UAA06507; Thu, 15 Oct 1998 20:56:11 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id UAA01755; Thu, 15 Oct 1998 20:56:05 -0700 (PDT) Date: Thu, 15 Oct 1998 20:56:05 -0700 (PDT) Message-Id: <199810160356.UAA01755@silvia.hip.berkeley.edu> To: jkh@time.cdrom.com CC: committers@FreeBSD.ORG In-reply-to: <10908.908503889@time.cdrom.com> (jkh@time.cdrom.com) Subject: Re: Tag will go down at 20:30 PDT From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * I've moved it up a half hour to give a few folks just a bit more time, * but that's when it will be. I'll be turning commits off (how do we do * that again? :) around this time and flipping them back on after the * tag is completed. Don't turn Justin off, he's still workin' on the ports tree. I'm going to lay down the tag ("cvs rtag TAG ports", right?) when I see his commit to ports/INDEX. * Again, I will *not* be tagging the ports tree in * order to give those folks a bit more time. It's also not critical * (for me) that ports be tagged since the release builds have never used * tags in extracting ports. Even if I tagged ports now, any subsequent * builds I did after sliding various tags on src forward would simply * grab the -current ports tree and the tag would be essentially ignored. * It's only for reference purposes, I guess. Never did understand the * logic of tagging the ports tree (with a completely different tag, no * less) anyway. :-) No problem, it just means the ports tree will have to remain frozen a little longer until you finally come up with a concoction that makes your grandma proud! * In any case, just FYI! Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 21:06:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA02979 for cvs-all-outgoing; Thu, 15 Oct 1998 21:06:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA02973; Thu, 15 Oct 1998 21:06:24 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA10906; Thu, 15 Oct 1998 21:06:22 -0700 (PDT) Date: Thu, 15 Oct 1998 21:06:22 -0700 (PDT) Message-Id: <199810160406.VAA10906@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/man/man4 Makefile sa.4 sd.4 st.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/15 21:06:22 PDT Modified files: share/man/man4 Makefile sa.4 sd.4 st.4 Log: Update the sa(4) man page for CAM. This was repository-copied from the st(4) man page. Take out most of the sd(4) and st(4) man pages and point to the new da(4) and sa(4) man pages. Add sa.4 to the makefile. Reviewed by: ken Submitted by: gibbs Revision Changes Path 1.46 +1 -1 src/share/man/man4/Makefile 1.12 +57 -260 src/share/man/man4/sa.4 1.12 +5 -241 src/share/man/man4/sd.4 1.12 +6 -367 src/share/man/man4/st.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 21:16:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA04204 for cvs-all-outgoing; Thu, 15 Oct 1998 21:16:04 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA04167; Thu, 15 Oct 1998 21:16:02 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA11244; Thu, 15 Oct 1998 21:15:59 -0700 (PDT) Date: Thu, 15 Oct 1998 21:15:59 -0700 (PDT) Message-Id: <199810160415.VAA11244@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/xklock Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 21:15:59 PDT Modified files: japanese/xklock Makefile Log: Mark BROKEN for ELF: cc -fwritable-strings -O2 -m486 -I/usr/X11R6/include -o xklock xklock.o jnames.o -L/usr/X11R6/lib -lX11 -lXmu -lXpm -lcrypt /usr/libexec/elf/ld: warning: libXt.so.6, needed by /usr/X11R6/lib/libXmu.so, not found (try using --rpath) /usr/libexec/elf/ld: warning: libSM.so.6, needed by /usr/X11R6/lib/libXmu.so, not found (try using --rpath) /usr/libexec/elf/ld: warning: libICE.so.6, needed by /usr/X11R6/lib/libXmu.so, not found (try using --rpath) /usr/libexec/elf/ld: warning: libXext.so.6, needed by /usr/X11R6/lib/libXmu.so, not found (try using --rpath) /usr/X11R6/lib/libXmu.so: undefined reference to `XtDisplayToApplicationContext' /usr/X11R6/lib/libXmu.so: undefined reference to `XtWarningMsg' Revision Changes Path 1.3 +3 -1 ports/japanese/xklock/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 21:26:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA05375 for cvs-all-outgoing; Thu, 15 Oct 1998 21:26:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA05370; Thu, 15 Oct 1998 21:26:02 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA11457; Thu, 15 Oct 1998 21:26:00 -0700 (PDT) Date: Thu, 15 Oct 1998 21:26:00 -0700 (PDT) Message-Id: <199810160426.VAA11457@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall/help relnotes.hlp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/15 21:26:00 PDT Modified files: release/sysinstall/help relnotes.hlp Log: Add acknowledgements. Revision Changes Path 1.100 +9 -1 src/release/sysinstall/help/relnotes.hlp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 21:26:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA05421 for cvs-all-outgoing; Thu, 15 Oct 1998 21:26:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA05398; Thu, 15 Oct 1998 21:26:10 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id VAA11503; Thu, 15 Oct 1998 21:26:15 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: asami@FreeBSD.ORG (Satoshi Asami) cc: committers@FreeBSD.ORG Subject: Re: Tag will go down at 20:30 PDT In-reply-to: Your message of "Thu, 15 Oct 1998 20:56:05 PDT." <199810160356.UAA01755@silvia.hip.berkeley.edu> Date: Thu, 15 Oct 1998 21:26:15 -0700 Message-ID: <11499.908511975@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Don't turn Justin off, he's still workin' on the ports tree. I'm > going to lay down the tag ("cvs rtag TAG ports", right?) when I see > his commit to ports/INDEX. Fair enough - no problem. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 21:28:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA05725 for cvs-all-outgoing; Thu, 15 Oct 1998 21:28:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA05720; Thu, 15 Oct 1998 21:28:07 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA11558; Thu, 15 Oct 1998 21:28:05 -0700 (PDT) Date: Thu, 15 Oct 1998 21:28:05 -0700 (PDT) Message-Id: <199810160428.VAA11558@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/sys param.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/15 21:28:05 PDT Modified files: sys/sys param.h Log: Bump freebsd version #. Revision Changes Path 1.37 +2 -2 src/sys/sys/param.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 21:28:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA05761 for cvs-all-outgoing; Thu, 15 Oct 1998 21:28:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA05744; Thu, 15 Oct 1998 21:28:13 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id VAA11548; Thu, 15 Oct 1998 21:28:18 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: asami@FreeBSD.ORG (Satoshi Asami) cc: committers@FreeBSD.ORG Subject: Re: sys/param.h In-reply-to: Your message of "Thu, 15 Oct 1998 20:40:25 PDT." <199810160340.UAA01717@silvia.hip.berkeley.edu> Date: Thu, 15 Oct 1998 21:28:17 -0700 Message-ID: <11544.908512097@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk OK, done! > * Any parameters people want to tweak in here before RELEASE? > > Bump __FreeBSD_version by one, cut release, and bump one again to > denote post-release. > > Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 21:28:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA05825 for cvs-all-outgoing; Thu, 15 Oct 1998 21:28:54 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA05802; Thu, 15 Oct 1998 21:28:42 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA11608; Thu, 15 Oct 1998 21:28:39 -0700 (PDT) Date: Thu, 15 Oct 1998 21:28:39 -0700 (PDT) Message-Id: <199810160428.VAA11608@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/man/man4 Makefile scsi.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/15 21:28:39 PDT Modified files: share/man/man4 Makefile scsi.4 Log: Update the scsi(4) man page for CAM, and add in links so that it appears as cam(4) as well. This includes a description of all the generic CAM kernel options, as well as a description of some of the CAM debugging printf options. Revision Changes Path 1.47 +1 -0 src/share/man/man4/Makefile 1.12 +185 -95 src/share/man/man4/scsi.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 21:30:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA06168 for cvs-all-outgoing; Thu, 15 Oct 1998 21:30:39 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA06146; Thu, 15 Oct 1998 21:30:27 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA11675; Thu, 15 Oct 1998 21:30:25 -0700 (PDT) Date: Thu, 15 Oct 1998 21:30:25 -0700 (PDT) Message-Id: <199810160430.VAA11675@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/libslang Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 21:30:24 PDT Modified files: japanese/libslang Makefile Log: Mark this BROKEN. Builds a package with WRONG library name. Satoshi, does bsd.port.mk handle converting a library called libslang.1.2.2 to libslang.1? Revision Changes Path 1.2 +4 -1 ports/japanese/libslang/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 21:31:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA06258 for cvs-all-outgoing; Thu, 15 Oct 1998 21:31:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA06226; Thu, 15 Oct 1998 21:30:57 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA12300; Thu, 15 Oct 1998 21:30:52 -0700 (PDT) Date: Thu, 15 Oct 1998 21:30:52 -0700 (PDT) Message-Id: <199810160430.VAA12300@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/modules Makefile src/sys/modules/atapi Makefile src/sys/modules/ccd Makefile src/sys/modules/cd9660 Makefile src/sys/modules/coda Makefile src/sys/modules/coff Makefile coff.c src/sys/modules/fdesc Makefile src/sys/modules/fpu ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/15 21:30:52 PDT Modified files: sys/modules Makefile sys/modules/atapi Makefile sys/modules/ccd Makefile sys/modules/cd9660 Makefile sys/modules/coda Makefile sys/modules/coff Makefile sys/modules/fdesc Makefile sys/modules/fpu Makefile sys/modules/gnufpu Makefile sys/modules/ibcs2 Makefile ibcs2.c sys/modules/if_disc Makefile sys/modules/if_ppp Makefile sys/modules/if_sl Makefile sys/modules/if_tun Makefile sys/modules/ip_mroute_mod Makefile sys/modules/ipfw Makefile sys/modules/joy Makefile sys/modules/kernfs Makefile sys/modules/linux Makefile sys/modules/mfs Makefile sys/modules/msdos Makefile sys/modules/nfs Makefile sys/modules/nullfs Makefile sys/modules/pcic Makefile sys/modules/portal Makefile sys/modules/procfs Makefile sys/modules/syscons/blank Makefile sys/modules/syscons/daemon Makefile sys/modules/syscons/fade Makefile sys/modules/syscons/green Makefile sys/modules/syscons/snake Makefile sys/modules/syscons/star Makefile sys/modules/umapfs Makefile sys/modules/union Makefile sys/modules/vesa Makefile sys/modules/vinum Makefile vinum.c sys/modules/wcd Makefile Added files: sys/modules/syscons Makefile.inc Removed files: sys/modules/coff coff.c sys/modules/linux linux.c Log: Sample initial set of kld-ified modules. Not all have been completely converted yet. These are more of a starting point. This is NOT connected to the parent Makefile. OK'ed by jkh (who is ever so patiently waiting) Revision Changes Path 1.34 +7 -6 src/sys/modules/Makefile 1.12 +3 -3 src/sys/modules/atapi/Makefile 1.7 +3 -4 src/sys/modules/ccd/Makefile 1.6 +4 -4 src/sys/modules/cd9660/Makefile 1.3 +4 -4 src/sys/modules/coda/Makefile 1.7 +5 -5 src/sys/modules/coff/Makefile 1.4 +4 -4 src/sys/modules/fdesc/Makefile 1.5 +3 -5 src/sys/modules/fpu/Makefile 1.6 +3 -5 src/sys/modules/gnufpu/Makefile 1.18 +4 -4 src/sys/modules/ibcs2/Makefile 1.12 +21 -17 src/sys/modules/ibcs2/ibcs2.c 1.6 +3 -4 src/sys/modules/if_disc/Makefile 1.15 +3 -4 src/sys/modules/if_ppp/Makefile 1.7 +3 -4 src/sys/modules/if_sl/Makefile 1.7 +3 -4 src/sys/modules/if_tun/Makefile 1.4 +3 -3 src/sys/modules/ip_mroute_mod/Makefile 1.9 +3 -3 src/sys/modules/ipfw/Makefile 1.8 +3 -3 src/sys/modules/joy/Makefile 1.4 +4 -4 src/sys/modules/kernfs/Makefile 1.19 +5 -5 src/sys/modules/linux/Makefile 1.4 +8 -5 src/sys/modules/mfs/Makefile 1.7 +4 -4 src/sys/modules/msdos/Makefile 1.11 +6 -6 src/sys/modules/nfs/Makefile 1.7 +4 -4 src/sys/modules/nullfs/Makefile 1.7 +3 -4 src/sys/modules/pcic/Makefile 1.4 +4 -4 src/sys/modules/portal/Makefile 1.13 +4 -4 src/sys/modules/procfs/Makefile 1.8 +2 -2 src/sys/modules/syscons/blank/Makefile 1.5 +2 -2 src/sys/modules/syscons/daemon/Makefile 1.8 +2 -2 src/sys/modules/syscons/fade/Makefile 1.8 +2 -2 src/sys/modules/syscons/green/Makefile 1.8 +2 -2 src/sys/modules/syscons/snake/Makefile 1.8 +2 -2 src/sys/modules/syscons/star/Makefile 1.4 +4 -4 src/sys/modules/umapfs/Makefile 1.4 +4 -4 src/sys/modules/union/Makefile 1.3 +3 -3 src/sys/modules/vesa/Makefile 1.3 +3 -4 src/sys/modules/vinum/Makefile 1.2 +35 -4 src/sys/modules/vinum/vinum.c 1.12 +3 -3 src/sys/modules/wcd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 21:31:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA06337 for cvs-all-outgoing; Thu, 15 Oct 1998 21:31:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA06317; Thu, 15 Oct 1998 21:31:38 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA12344; Thu, 15 Oct 1998 21:31:36 -0700 (PDT) Date: Thu, 15 Oct 1998 21:31:36 -0700 (PDT) Message-Id: <199810160431.VAA12344@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/modules Makefile.inc Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/15 21:31:36 PDT Added files: sys/modules Makefile.inc Log: Missed this file. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 21:33:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA06625 for cvs-all-outgoing; Thu, 15 Oct 1998 21:33:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA06599; Thu, 15 Oct 1998 21:32:59 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA12393; Thu, 15 Oct 1998 21:32:51 -0700 (PDT) Date: Thu, 15 Oct 1998 21:32:51 -0700 (PDT) Message-Id: <199810160432.VAA12393@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/ndtpd Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 21:32:51 PDT Modified files: japanese/ndtpd Makefile Log: Mark BROKEN for ELF: ===> Building package for ja-ndtpd-2.0.3 Creating package /usr/ports/packages/All/ja-ndtpd-2.0.3.tgz Registering depends:. Creating gzip'd tar ball in '/usr/ports/packages/All/ja-ndtpd-2.0.3.tgz' tar: can't add file lib/libeb.so.1 : No such file or directory /usr/sbin/pkg_create: tar command failed with code 256 *** Error code 1 Revision Changes Path 1.5 +3 -1 ports/japanese/ndtpd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 21:34:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA06700 for cvs-all-outgoing; Thu, 15 Oct 1998 21:34:01 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA06581; Thu, 15 Oct 1998 21:32:45 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id VAA11651; Thu, 15 Oct 1998 21:32:49 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Peter Wemm cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/alpha/alpha elf_machdep.c src/sys/gnu/i386/fpemul fpu_entry.c src/sys/i386/i386 elf_machdep.c math_emulate.c src/sys/i386/ibcs2 imgact_coff.c src/sys/i386/linux imgact_linux.c linux_sysvec.c src/sys/kern imgact_aout.c imgact_elf.c ... In-reply-to: Your message of "Thu, 15 Oct 1998 20:55:02 PDT." <199810160355.UAA10455@freefall.freebsd.org> Date: Thu, 15 Oct 1998 21:32:49 -0700 Message-ID: <11646.908512369@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > *gulp*. Jordan specifically OK'ed this.. Yep, I did. The time to get the infrastructure support in is now, and if we have to play tag sliding for the next couple of days because of it (not that I expect we will), it's no more or less time than I'd already budgeted for this kind of thing. :-) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 21:41:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA07564 for cvs-all-outgoing; Thu, 15 Oct 1998 21:41:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA07552; Thu, 15 Oct 1998 21:41:43 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA12807; Thu, 15 Oct 1998 21:41:39 -0700 (PDT) Date: Thu, 15 Oct 1998 21:41:39 -0700 (PDT) Message-Id: <199810160441.VAA12807@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/man/man4/man4.i386 aha.4 ahb.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/15 21:41:39 PDT Modified files: share/man/man4/man4.i386 aha.4 ahb.4 Log: Update the aha(4) and ahb(4) man pages for CAM. Reviewed by: ken Submitted by: gibbs Revision Changes Path 1.7 +24 -19 src/share/man/man4/man4.i386/aha.4 1.9 +14 -49 src/share/man/man4/man4.i386/ahb.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 21:44:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA07853 for cvs-all-outgoing; Thu, 15 Oct 1998 21:44:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA07848; Thu, 15 Oct 1998 21:44:08 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA12947; Thu, 15 Oct 1998 21:44:06 -0700 (PDT) Date: Thu, 15 Oct 1998 21:44:06 -0700 (PDT) Message-Id: <199810160444.VAA12947@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/conf SMP-GENERIC Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/15 21:44:05 PDT Modified files: sys/i386/conf SMP-GENERIC Log: Update SMP-GENERIC to something a bit more recent based on GENERIC. Approved by: jkh Revision Changes Path 1.17 +25 -16 src/sys/i386/conf/SMP-GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 21:47:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA08362 for cvs-all-outgoing; Thu, 15 Oct 1998 21:47:16 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA08357; Thu, 15 Oct 1998 21:47:14 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA13091; Thu, 15 Oct 1998 21:47:12 -0700 (PDT) Date: Thu, 15 Oct 1998 21:47:12 -0700 (PDT) Message-Id: <199810160447.VAA13091@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release/sysinstall/help trouble.hlp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/15 21:47:12 PDT Modified files: release/sysinstall/help trouble.hlp Log: add note about CD-220E drives. Revision Changes Path 1.6 +8 -0 src/release/sysinstall/help/trouble.hlp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 21:55:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA09049 for cvs-all-outgoing; Thu, 15 Oct 1998 21:55:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA09044; Thu, 15 Oct 1998 21:55:16 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA13371; Thu, 15 Oct 1998 21:55:14 -0700 (PDT) Date: Thu, 15 Oct 1998 21:55:14 -0700 (PDT) Message-Id: <199810160455.VAA13371@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/pine Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 21:55:14 PDT Modified files: japanese/pine Makefile Log: Mark BROKEN for ELF: ===> Installing for ja-pine-3.95 ===> ja-pine-3.95 depends on shared library: canna.1 - found install -c -s -o root -g wheel -m 555 /usr/ports/japanese/pine/work/pine3.95/bin/pico /usr/local/bin install: /usr/ports/japanese/pine/work/pine3.95/bin/pico: No such file or directory *** Error code 71 Revision Changes Path 1.14 +3 -1 ports/japanese/pine/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 22:06:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA10798 for cvs-all-outgoing; Thu, 15 Oct 1998 22:06:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA10787; Thu, 15 Oct 1998 22:06:48 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA13634; Thu, 15 Oct 1998 22:06:46 -0700 (PDT) Date: Thu, 15 Oct 1998 22:06:46 -0700 (PDT) Message-Id: <199810160506.WAA13634@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/slrn Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 22:06:45 PDT Modified files: japanese/slrn Makefile Log: Mark BROKEN for ELF: cd /usr/ports/japanese/slrn/work/slrn/src/objs; cc art.o chmap.o editscore.o group.o grplens.o hash.o help.o interp.o khenkan.o menu.o mime.o misc.o post.o score.o server.o sortdate.o slrn.o startup.o ttymsg.o util.o uudecode.o xover.o slrndir.o version.o print.o -o slrn -L/usr/local/lib -lslang -ltermcap -lm art.o: In function `wrap_article': art.o(.text+0xc78): undefined reference to `kanji_pos' Revision Changes Path 1.3 +3 -1 ports/japanese/slrn/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 22:19:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA12330 for cvs-all-outgoing; Thu, 15 Oct 1998 22:19:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA12324; Thu, 15 Oct 1998 22:19:17 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA14129; Thu, 15 Oct 1998 22:19:15 -0700 (PDT) Date: Thu, 15 Oct 1998 22:19:15 -0700 (PDT) Message-Id: <199810160519.WAA14129@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/vfghostscript Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 22:19:15 PDT Modified files: japanese/vfghostscript Makefile Log: Mark BROKEN for ELF: ./echogs -n - gcc -L/usr/local/lib -L/usr/X11R6/lib -o gs gs.o gsmain.o ialloc.o idebug.o idict.o idparam.o iinit.o iname.o interp.o isave.o iscan.o iutil.o sfilter.o stream.o zarith.o zarray.o zcontrol.o zdict.o zfile.o zfiledev.o zfileio.o zfilter.o zgeneric.o zmath.o zmisc.o zpacked.o zprops.o zrelbit.o zstack.o zstring.o ztype.o zvmem.o zchar.o zcolor.o zfont.o zfont1.o zfont2.o zdevice.o zgstate.o zht.o zmatrix.o zpaint.o zpath.o zpath2.o gschar.o gscolor.o gscoord.o gsdevice.o gsfile.o gsfont.o gsht.o gsimage.o gsimage1.o gsimage2.o gsimpath.o gsline.o gsmatrix.o gsmisc.o gspaint.o gspath.o gspath2.o gsstate.o gstdev.o gstype1.o gsutil.o gxccache.o gxccman.o gxclist.o gxclread.o gxcmap.o gxcpath.o gxdither.o gxdraw.o gxfill.o gxhint1.o gxhint2.o gxht.o gxpath.o gxpath2.o gxpcopy.o gxstroke.o gdevmem1.o gdevmem2.o gdevmem3.o gconfig.o >_temp_ ./echogs -x 205c >>_temp_ cat ld.tr >>_temp_ ./echogs - -lm >>_temp_ /bin/sh <_temp_ /usr/libexec/elf/ld: warning: libSM.so.6, needed by /usr/X11R6/lib/libXt.so, not found (try using --rpath) /usr/libexec/elf/ld: warning: libICE.so.6, needed by /usr/X11R6/lib/libXt.so, not found (try using --rpath) /usr/X11R6/lib/libXt.so: undefined reference to `SmcSaveYourselfDone' Revision Changes Path 1.14 +3 -1 ports/japanese/vfghostscript/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 22:27:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA12945 for cvs-all-outgoing; Thu, 15 Oct 1998 22:27:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA12931; Thu, 15 Oct 1998 22:27:20 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA14384; Thu, 15 Oct 1998 22:27:17 -0700 (PDT) Date: Thu, 15 Oct 1998 22:27:17 -0700 (PDT) Message-Id: <199810160527.WAA14384@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports/japanese/vfghostscript5 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 22:27:16 PDT Modified files: japanese/vfghostscript5 Makefile Log: Mark BROKEn ELF: standard libICe and Sm breakage Revision Changes Path 1.24 +3 -1 ports/japanese/vfghostscript5/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 23:00:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA16253 for cvs-all-outgoing; Thu, 15 Oct 1998 23:00:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA16242; Thu, 15 Oct 1998 23:00:53 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA15078; Thu, 15 Oct 1998 23:00:51 -0700 (PDT) Date: Thu, 15 Oct 1998 23:00:51 -0700 (PDT) Message-Id: <199810160600.XAA15078@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: ports INDEX Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jseger 1998/10/15 23:00:50 PDT Modified files: . INDEX Log: This is the official INDEX for 3.0-RELEASE. There are 1,749 ports. You can get the 3.0R ports tree by doing a "cvs co -rRELEASE_3_0_0 ports" Revision Changes Path 1.190 +260 -250 ports/INDEX To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 23:07:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA17128 for cvs-all-outgoing; Thu, 15 Oct 1998 23:07:06 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA17122; Thu, 15 Oct 1998 23:07:04 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-197.ix.netcom.com [209.109.234.197]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id XAA06617; Thu, 15 Oct 1998 23:06:41 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id XAA02086; Thu, 15 Oct 1998 23:06:38 -0700 (PDT) Date: Thu, 15 Oct 1998 23:06:38 -0700 (PDT) Message-Id: <199810160606.XAA02086@silvia.hip.berkeley.edu> To: jseger@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199810160600.XAA15078@freefall.freebsd.org> (jseger@FreeBSD.ORG) Subject: Re: cvs commit: ports INDEX From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * jseger 1998/10/15 23:00:50 PDT * This is the official INDEX for 3.0-RELEASE. There are 1,749 ports. * You can get the 3.0R ports tree by doing a "cvs co -rRELEASE_3_0_0 ports" And all hail Justin for a job well done! :) By the way, the ports freeze is not over yet. As Jordan mentioned, the release may take a few iterations. Please wait until I get confirmation from him that the release is set to stone. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 23:55:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA21820 for cvs-all-outgoing; Thu, 15 Oct 1998 23:55:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA21815; Thu, 15 Oct 1998 23:55:12 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from root@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA16719; Thu, 15 Oct 1998 23:55:10 -0700 (PDT) Date: Thu, 15 Oct 1998 23:55:10 -0700 (PDT) Message-Id: <199810160655.XAA16719@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/sys param.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/15 23:55:09 PDT Modified files: sys/sys param.h Log: post-tag version bump. We're now back at 3.0-current! Revision Changes Path 1.38 +2 -2 src/sys/sys/param.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 23:55:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA21905 for cvs-all-outgoing; Thu, 15 Oct 1998 23:55:42 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA21895; Thu, 15 Oct 1998 23:55:39 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from root@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA16763; Thu, 15 Oct 1998 23:55:37 -0700 (PDT) Date: Thu, 15 Oct 1998 23:55:37 -0700 (PDT) Message-Id: <199810160655.XAA16763@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/conf newvers.sh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/15 23:55:37 PDT Modified files: sys/conf newvers.sh Log: Back to -current again. Revision Changes Path 1.40 +2 -2 src/sys/conf/newvers.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Oct 15 23:58:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA22180 for cvs-all-outgoing; Thu, 15 Oct 1998 23:58:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA22172; Thu, 15 Oct 1998 23:58:24 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-197.ix.netcom.com [209.109.234.197]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id XAA06655; Thu, 15 Oct 1998 23:58:05 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id XAA02170; Thu, 15 Oct 1998 23:57:58 -0700 (PDT) Date: Thu, 15 Oct 1998 23:57:58 -0700 (PDT) Message-Id: <199810160657.XAA02170@silvia.hip.berkeley.edu> To: jseger@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199810160430.VAA11675@freefall.freebsd.org> (jseger@FreeBSD.ORG) Subject: Re: cvs commit: ports/japanese/libslang Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk * Satoshi, does bsd.port.mk handle converting a library called * libslang.1.2.2 to libslang.1? It might, but it's a wrong name anyway. It should be libslang.1.3 for a.out and libslang.1 for ELF. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 02:14:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA02375 for cvs-all-outgoing; Fri, 16 Oct 1998 02:14:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.15.68.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA02295; Fri, 16 Oct 1998 02:13:53 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id TAA00578; Fri, 16 Oct 1998 19:13:32 +1000 Date: Fri, 16 Oct 1998 19:13:32 +1000 From: Bruce Evans Message-Id: <199810160913.TAA00578@godzilla.zeta.org.au> To: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, des@FreeBSD.ORG Subject: Re: cvs commit: src/sbin/mount mount.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Modified files: > sbin/mount mount.8 > Log: > Warn about "mount -u" bug. FUD. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 03:13:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA08152 for cvs-all-outgoing; Fri, 16 Oct 1998 03:13:13 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA08147; Fri, 16 Oct 1998 03:13:12 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA23944; Fri, 16 Oct 1998 03:13:10 -0700 (PDT) Date: Fri, 16 Oct 1998 03:13:10 -0700 (PDT) Message-Id: <199810161013.DAA23944@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/alpha/alpha diskslice_machdep.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/16 03:13:10 PDT Modified files: sys/alpha/alpha diskslice_machdep.c Log: fixup for the alpha. tag slid forward, since it's benign for the x86. Revision Changes Path 1.5 +14 -1 src/sys/alpha/alpha/diskslice_machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 03:14:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA08362 for cvs-all-outgoing; Fri, 16 Oct 1998 03:14:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA08357; Fri, 16 Oct 1998 03:14:23 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA23992; Fri, 16 Oct 1998 03:14:21 -0700 (PDT) Date: Fri, 16 Oct 1998 03:14:21 -0700 (PDT) Message-Id: <199810161014.DAA23992@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/ufs/ufs ufs_disksubr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/16 03:14:21 PDT Modified files: sys/ufs/ufs ufs_disksubr.c Log: fixup for alpha. Revision Changes Path 1.37 +4 -1 src/sys/ufs/ufs/ufs_disksubr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 03:17:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA08648 for cvs-all-outgoing; Fri, 16 Oct 1998 03:17:34 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA08643; Fri, 16 Oct 1998 03:17:33 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA24132; Fri, 16 Oct 1998 03:17:31 -0700 (PDT) Date: Fri, 16 Oct 1998 03:17:31 -0700 (PDT) Message-Id: <199810161017.DAA24132@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/release Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/16 03:17:30 PDT Modified files: release Makefile Log: Use the same boot.conf file for alpha, now that it works. Revision Changes Path 1.421 +2 -2 src/release/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 05:25:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA19089 for cvs-all-outgoing; Fri, 16 Oct 1998 05:25:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from titanium.yy.ics.keio.ac.jp (titanium.yy.ics.keio.ac.jp [131.113.47.73]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA19076; Fri, 16 Oct 1998 05:25:46 -0700 (PDT) (envelope-from sanpei@sanpei.org) Received: from lavender.sanpei.org (u4168.seaple.icc.ne.jp [203.140.32.168]) by titanium.yy.ics.keio.ac.jp (8.8.8+3.0Wbeta13/3.7W) with ESMTP id VAA08210; Fri, 16 Oct 1998 21:25:18 +0900 (JST) Received: (from sanpei@localhost) by lavender.sanpei.org (8.8.8/3.6W) id VAA01091; Fri, 16 Oct 1998 21:25:14 +0900 (JST) Message-Id: <199810161225.VAA01091@lavender.sanpei.org> To: jseger@FreeBSD.ORG Cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/japanese/iv Makefile In-Reply-To: Your message of "Thu, 15 Oct 1998 20:10:46 -0700 (PDT)" References: <199810160310.UAA08393@freefall.freebsd.org> X-Mailer: Mew version 1.70 on Emacs 19.28.1 / Mule 2.3 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Fri, 16 Oct 1998 21:25:14 +0900 From: MIHIRA "Sanpei" Yoshiro Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Modified files: > japanese/iv Makefile > Log: > Mark BROKEN for ELF: > ===> Compressing manual pages for ja-iv-3.1 > ===> Registering installation for ja-iv-3.1 > ===> Building package for ja-iv-3.1 > Creating package /usr/ports/packages/All/ja-iv-3.1.tgz I'm maintainer of ja-iv. I already created patch on ports/8240. ---------- Yoshiro MIHIRA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 06:04:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA23743 for cvs-all-outgoing; Fri, 16 Oct 1998 06:04:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: (from root@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA23739 for cvs-all; Fri, 16 Oct 1998 06:04:53 -0700 (PDT) (envelope-from jmb) Date: Fri, 16 Oct 1998 06:04:53 -0700 (PDT) From: "Jonathan M. Bresler" Message-Id: <199810161304.GAA23739@hub.freebsd.org> To: cvs-all Subject: commit messages getting lost Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk i have just converted cvs-all to vmailer. its the same mailer we are using for -current, -hackers, and -chat. we may have been losing messages if majordomo's resend script fails to run for one reason or another. please let me know if the problem recurs. i will be converting cvs-committers shortly. jmb To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 06:06:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA23998 for cvs-all-outgoing; Fri, 16 Oct 1998 06:06:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: (from root@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA23994 for cvs-all; Fri, 16 Oct 1998 06:06:27 -0700 (PDT) (envelope-from jmb) Date: Fri, 16 Oct 1998 06:06:27 -0700 (PDT) From: "Jonathan M. Bresler" Message-Id: <199810161306.GAA23994@hub.freebsd.org> To: cvs-all Subject: commit messages getting lost Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk i have just converted cvs-all to vmailer. its the same mailer we are using for -current, -hackers, and -chat. we may have been losing messages if majordomo's resend script fails to run for one reason or another. please let me know if the problem recurs. i will be converting cvs-committers shortly. jmb To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 06:12:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA24765 for cvs-all-outgoing; Fri, 16 Oct 1998 06:12:48 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: (from root@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA24761 for cvs-all; Fri, 16 Oct 1998 06:12:47 -0700 (PDT) (envelope-from jmb) Date: Fri, 16 Oct 1998 06:12:47 -0700 (PDT) From: "Jonathan M. Bresler" Message-Id: <199810161312.GAA24761@hub.freebsd.org> To: cvs-all Subject: commit messages getting lost Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk i have just converted cvs-all to vmailer. its the same mailer we are using for -current, -hackers, and -chat. we may have been losing messages if majordomo's resend script fails to run for one reason or another. please let me know if the problem recurs. i will be converting cvs-committers shortly. jmb To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 06:22:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA26228 for cvs-all-outgoing; Fri, 16 Oct 1998 06:22:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (VMailer, from userid 1) id AA79E9CA6; Fri, 16 Oct 1998 06:21:47 -0700 (PDT) Received: (from root@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA26112 for cvs-test; Fri, 16 Oct 1998 06:21:47 -0700 (PDT) (envelope-from jmb) Date: Fri, 16 Oct 1998 06:21:47 -0700 (PDT) From: "Jonathan M. Bresler" Message-Id: <199810161321.GAA26112@hub.freebsd.org> To: cvs-test@FreeBSD.ORG Subject: test message using vmailer Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk i will be converting cvs-committers to vmailer everyone is used to vmailer from -current, right. good. let's have a test message here. jmb To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 07:22:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA03183 for cvs-all-outgoing; Fri, 16 Oct 1998 07:22:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA03176; Fri, 16 Oct 1998 07:22:56 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA02738; Fri, 16 Oct 1998 07:22:54 -0700 (PDT) Date: Fri, 16 Oct 1998 07:22:54 -0700 (PDT) Message-Id: <199810161422.HAA02738@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src Makefile.inc1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/16 07:22:54 PDT Modified files: . Makefile.inc1 Log: Fixed missing directories in the libraries target: - in the elf case, csu must be built and installed before any shared libraries. It wasn't, but we usually used a stale version that happened to work. E.g., in the !NOTOOLS case we used the version built and installed by the bootstrap-libraries target. Only cross building was completely broken. - the shared libmd must be built and installed before any shared libraries that link to it. It wasn't, but we sometimes used a stale version that happened to work, as above. For elf, this caused bogus linkage of the target shared libatm and libopie with the host static libmd. It isn't clear what this actually breaks, except for cross compiling. For aout, the shared libmd is not built at all, so all shared libraries linked to libmd may be broken. The linker reports them by spewing RRS warnings. Note that building src/lib early and building subdirs of src/lib in the correct order in src/lib/Makefile doesn't help, since the subdirs are all built before any are installed. Fixed bitrot in the comments about the ordering requirements. Revision Changes Path 1.35 +7 -6 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 07:51:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA07268 for cvs-all-outgoing; Fri, 16 Oct 1998 07:51:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA07220; Fri, 16 Oct 1998 07:51:10 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from gullveig.ifi.uio.no (2602@gullveig.ifi.uio.no [129.240.65.147]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with ESMTP id QAA21712; Fri, 16 Oct 1998 16:50:47 +0200 (MET DST) Received: (from dag-erli@localhost) by gullveig.ifi.uio.no ; Fri, 16 Oct 1998 16:50:46 +0200 (MET DST) Mime-Version: 1.0 To: Bruce Evans Cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, des@FreeBSD.ORG Subject: Re: cvs commit: src/sbin/mount mount.8 References: <199810160913.TAA00578@godzilla.zeta.org.au> Organization: University of Oslo, Department of Informatics X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-other-addresses: 'finger dag-erli@ifi.uio.no' for a list X-disclaimer-1: The views expressed in this article are mine alone, and do X-disclaimer-2: not necessarily coincide with those of any organisation or X-disclaimer-3: company with which I am or have been affiliated. X-Stop-Spam: http://www.cauce.org/ From: dag-erli@ifi.uio.no (Dag-Erling C. =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 16 Oct 1998 16:50:46 +0200 In-Reply-To: Bruce Evans's message of "Fri, 16 Oct 1998 19:13:32 +1000" Message-ID: Lines: 10 X-Mailer: Gnus v5.5/Emacs 19.34 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by hub.freebsd.org id HAB07224 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Bruce Evans writes: > > Log: > > Warn about "mount -u" bug. > FUD. I'm afraid it's very, very real, and 100% reproducable. DES -- Dag-Erling Smørgrav - dag-erli@ifi.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 08:00:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA08274 for cvs-all-outgoing; Fri, 16 Oct 1998 08:00:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA08263; Fri, 16 Oct 1998 08:00:19 -0700 (PDT) (envelope-from luigi@FreeBSD.org) From: Luigi Rizzo Received: (from luigi@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA04158; Fri, 16 Oct 1998 08:00:16 -0700 (PDT) Date: Fri, 16 Oct 1998 08:00:16 -0700 (PDT) Message-Id: <199810161500.IAA04158@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/netinet ip_dummynet.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk luigi 1998/10/16 08:00:16 PDT Modified files: (Branch: RELENG_2_2) sys/netinet ip_dummynet.c Log: Make dummynet use m_pkthdr.len, not ip_len, for computing bandwidths. This is necessary for correct operation at the bridging level. Problem reported by Richard B. Ernst Revision Changes Path 1.1.2.1 +9 -8 src/sys/netinet/ip_dummynet.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 08:00:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA08283 for cvs-all-outgoing; Fri, 16 Oct 1998 08:00:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA08266; Fri, 16 Oct 1998 08:00:21 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA04183; Fri, 16 Oct 1998 08:00:19 -0700 (PDT) Date: Fri, 16 Oct 1998 08:00:19 -0700 (PDT) Message-Id: <199810161500.IAA04183@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/config mkioconf.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/16 08:00:18 PDT Modified files: usr.sbin/config mkioconf.c Log: Don't generate unused file ioconf.h. Didn't bump CONFIGVERS, since ioconf.h was already unused when CONFIGVERS was last bumped (although essentially the same (CAM) commit batch that bumped CONFIGVERS also added bogus includes of ioconf.h). Revision Changes Path 1.43 +6 -39 src/usr.sbin/config/mkioconf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 08:06:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA08777 for cvs-all-outgoing; Fri, 16 Oct 1998 08:06:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA08772; Fri, 16 Oct 1998 08:06:29 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) From: "Justin T. Gibbs" Received: (from gibbs@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA04409; Fri, 16 Oct 1998 08:06:27 -0700 (PDT) Date: Fri, 16 Oct 1998 08:06:27 -0700 (PDT) Message-Id: <199810161506.IAA04409@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/man/man4/man4.i386 ahc.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk gibbs 1998/10/16 08:06:27 PDT Modified files: share/man/man4/man4.i386 ahc.4 Log: Update to include all supported chips. Add a table comparing the features of all aic7xxx chips. Clean up the discussion of SCB paging. Reviewed by: Kenneth Merry Revision Changes Path 1.13 +132 -68 src/share/man/man4/man4.i386/ahc.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 08:08:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA08923 for cvs-all-outgoing; Fri, 16 Oct 1998 08:08:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA08918; Fri, 16 Oct 1998 08:08:32 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA04501; Fri, 16 Oct 1998 08:08:31 -0700 (PDT) Date: Fri, 16 Oct 1998 08:08:31 -0700 (PDT) Message-Id: <199810161508.IAA04501@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/config lang.l Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/16 08:08:30 PDT Modified files: usr.sbin/config lang.l Log: Removed unused/unusable "ha" keyword. Device classes should never have been visible here. Fixed disordering of keyword table by "cam". Revision Changes Path 1.16 +4 -2 src/usr.sbin/config/lang.l To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 08:32:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA11866 for cvs-all-outgoing; Fri, 16 Oct 1998 08:32:40 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ns1.yes.no (ns1.yes.no [195.204.136.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA11682; Fri, 16 Oct 1998 08:32:05 -0700 (PDT) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [195.204.143.218]) by ns1.yes.no (8.9.1a/8.9.1) with ESMTP id RAA24015; Fri, 16 Oct 1998 17:31:42 +0200 (CEST) Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id RAA14787; Fri, 16 Oct 1998 17:31:41 +0200 (MET DST) Message-ID: <19981016173141.23240@follo.net> Date: Fri, 16 Oct 1998 17:31:41 +0200 From: Eivind Eklund To: =?iso-8859-1?Q?Dag-Erling_C=2E_Sm=F8rgrav_?= , Bruce Evans Cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, des@FreeBSD.ORG Subject: Re: cvs commit: src/sbin/mount mount.8 References: <199810160913.TAA00578@godzilla.zeta.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Mutt 0.89.1i In-Reply-To: =?iso-8859-1?Q?=3Cxzp4st4v9vd=2Efsf=40gullveig=2Eifi=2Euio=2Eno=3E=3B_fr?= =?iso-8859-1?Q?om_Dag-Erling_C=2E_Sm=F8rgrav__on_Fri=2C_Oct_16=2C_1998_a?= =?iso-8859-1?Q?t_04=3A50=3A46PM_+0200?= Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Fri, Oct 16, 1998 at 04:50:46PM +0200, Dag-Erling C. Smørgrav wrote: > Bruce Evans writes: > > > Log: > > > Warn about "mount -u" bug. > > FUD. > > I'm afraid it's very, very real, and 100% reproducable. I'll chip in and say I've seen it as well (fortunately only minor corruption). It is not something that is easily reproducable here, but I have twice had filesystems become corrupted when switching normal/async/normal. Not easily reproducable here, however. Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 08:33:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA11967 for cvs-all-outgoing; Fri, 16 Oct 1998 08:33:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA11953; Fri, 16 Oct 1998 08:33:21 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA05452; Fri, 16 Oct 1998 08:33:19 -0700 (PDT) Date: Fri, 16 Oct 1998 08:33:19 -0700 (PDT) Message-Id: <199810161533.IAA05452@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/kdump mkioctls Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/16 08:33:18 PDT Modified files: usr.bin/kdump mkioctls Log: Generate code to interpret ioctl numbers for all ioctls defined in headers under /usr/include, not just for the ones in . The generated file includes all headers that seem to define ioctls, so build errors will probably occur if headers become less self- sufficient than they are already. This is a feature. Build errors shall not be fixed by adding more includes here. Optionally generate a case statement instead of a list of if statements. This source must be edited to change this. The case statement should be non-optional. It currently can't be, because many ioctl numbers are not unique. Revision Changes Path 1.6 +50 -12 src/usr.bin/kdump/mkioctls To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 09:01:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA15350 for cvs-all-outgoing; Fri, 16 Oct 1998 09:01:03 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from smtp3.erols.com (smtp3.erols.com [207.172.3.236]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA15332; Fri, 16 Oct 1998 09:00:52 -0700 (PDT) (envelope-from shmit@natasya.noc.erols.net) Received: from natasya.noc.erols.net (natasya.noc.erols.net [207.172.25.236]) by smtp3.erols.com (8.8.8/8.8.5) with ESMTP id MAA06550; Fri, 16 Oct 1998 12:00:33 -0400 (EDT) Received: (from shmit@localhost) by natasya.noc.erols.net (8.9.1/8.9.1) id MAA29608; Fri, 16 Oct 1998 12:00:24 -0400 (EDT) Message-ID: <19981016120023.V529@kublai.com> Date: Fri, 16 Oct 1998 12:00:23 -0400 From: Brian Cully To: Peter Wemm , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/pci if_de.c Reply-To: shmit@kublai.com References: <199810100244.TAA12392@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199810100244.TAA12392@freefall.freebsd.org>; from Peter Wemm on Fri, Oct 09, 1998 at 07:44:55PM -0700 X-Sender: If your mailer pays attention to this, it's broken. X-PGP-Info: finger shmit@kublai.com for my public key. Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Fri, Oct 09, 1998 at 07:44:55PM -0700, Peter Wemm wrote: > peter 1998/10/09 19:44:55 PDT > > Modified files: > sys/pci if_de.c > Log: > Attempt to work around the page fault in tulip_txput(). I've been running > this myself for ages, but wasn't able to get any feedback from the people > that I sent it to for testing. > > Guy Helmer has given it a shot (before getting on > a plane, thanks!) and it appears to stop his reproducable page fault panic > in the testing he was able to do. This is the same bug as kern/8221, so you can close that. -- Brian Cully They Might Be Giant's Dial-a-Song service: (718) 387-6962. ``Free when you call from work!'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 09:01:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA15409 for cvs-all-outgoing; Fri, 16 Oct 1998 09:01:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.15.68.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA15398; Fri, 16 Oct 1998 09:01:41 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id CAA26409; Sat, 17 Oct 1998 02:01:19 +1000 Date: Sat, 17 Oct 1998 02:01:19 +1000 From: Bruce Evans Message-Id: <199810161601.CAA26409@godzilla.zeta.org.au> To: bde@zeta.org.au, dag-erli@ifi.uio.no Subject: Re: cvs commit: src/sbin/mount mount.8 Cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, des@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >> > Log: >> > Warn about "mount -u" bug. >> FUD. > >I'm afraid it's very, very real, and 100% reproducable. Please give details. Which file system? (-u is supposed to apply to all file systems). Did recent -u fixes (ffs_vfsops.c rev.1.84 and 1.88) affect it? Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 09:22:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA19064 for cvs-all-outgoing; Fri, 16 Oct 1998 09:22:46 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA19043; Fri, 16 Oct 1998 09:22:38 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA07028; Fri, 16 Oct 1998 09:22:35 -0700 (PDT) Date: Fri, 16 Oct 1998 09:22:35 -0700 (PDT) Message-Id: <199810161622.JAA07028@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf GENERIC98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk kato 1998/10/16 09:22:35 PDT Modified files: sys/pc98/conf GENERIC98 Log: Commented out bs driver. Revision Changes Path 1.51 +2 -2 src/sys/pc98/conf/GENERIC98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 09:26:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA19667 for cvs-all-outgoing; Fri, 16 Oct 1998 09:26:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from resnet.uoregon.edu (resnet.uoregon.edu [128.223.144.32]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA19630; Fri, 16 Oct 1998 09:26:05 -0700 (PDT) (envelope-from dwhite@resnet.uoregon.edu) Received: from localhost (dwhite@localhost) by resnet.uoregon.edu (8.8.8/8.8.8) with ESMTP id JAA26174; Fri, 16 Oct 1998 09:25:46 -0700 (PDT) (envelope-from dwhite@resnet.uoregon.edu) Date: Fri, 16 Oct 1998 09:25:44 -0700 (PDT) From: Doug White To: "David E. O'Brien" cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/i386/conf GENERIC In-Reply-To: <199810160130.SAA03659@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, 15 Oct 1998, David E. O'Brien wrote: > obrien 1998/10/15 18:30:11 PDT > > Modified files: > sys/i386/conf GENERIC > Log: > Add commented out bpf entry. (DHCP is popular here, and this is required). Yay!! Curious question: Why isn't pbf a default? Security concerns? It'd make it much easier for building DHCP-out-of-boxen with it in there. Isn't dhclient support to come into the base system soon? Doug White Internet: dwhite@resnet.uoregon.edu | FreeBSD: The Power to Serve http://gladstone.uoregon.edu/~dwhite | 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 Fri Oct 16 09:40:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA21704 for cvs-all-outgoing; Fri, 16 Oct 1998 09:40:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA21696; Fri, 16 Oct 1998 09:40:44 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.1/8.9.1) id MAA22271; Fri, 16 Oct 1998 12:40:08 -0400 (EDT) (envelope-from wollman) Date: Fri, 16 Oct 1998 12:40:08 -0400 (EDT) From: Garrett Wollman Message-Id: <199810161640.MAA22271@khavrinen.lcs.mit.edu> To: Doug White Cc: "David E. O'Brien" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/i386/conf GENERIC In-Reply-To: References: <199810160130.SAA03659@freefall.freebsd.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk < said: > Curious question: Why isn't pbf a default? Security concerns? Just ask anyone with a big network of Linux machines why this is a bad idea... > It'd make it much easier for building DHCP-out-of-boxen with it in > there. The fact that DHCP requires BPF represents a bug in the network stack which we will hopefully be able to fix. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 09:53:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA22676 for cvs-all-outgoing; Fri, 16 Oct 1998 09:53:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA22671; Fri, 16 Oct 1998 09:53:18 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA08074; Fri, 16 Oct 1998 09:53:16 -0700 (PDT) Date: Fri, 16 Oct 1998 09:53:16 -0700 (PDT) Message-Id: <199810161653.JAA08074@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/cc/cc_tools Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/16 09:53:16 PDT Modified files: gnu/usr.bin/cc/cc_tools Makefile Log: Split up rule for ${COMMONHDRS} so that `make -j N' doesn't create the 6 headers up to 6 times concurrently. Debugged by Don Lewis (Don.Lewis@tsc.tdk.com). Fixed some disorder. Revision Changes Path 1.14 +12 -12 src/gnu/usr.bin/cc/cc_tools/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 11:15:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA08356 for cvs-all-outgoing; Fri, 16 Oct 1998 11:15:23 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA08260; Fri, 16 Oct 1998 11:15:06 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from skejdbrimir.ifi.uio.no (2602@skejdbrimir.ifi.uio.no [129.240.65.2]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with SMTP id UAA22489; Fri, 16 Oct 1998 20:14:35 +0200 (MET DST) Received: from localhost (dag-erli@localhost) by skejdbrimir.ifi.uio.no ; Fri, 16 Oct 1998 18:14:26 GMT Mime-Version: 1.0 To: Bruce Evans Cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, des@FreeBSD.ORG Subject: Re: cvs commit: src/sbin/mount mount.8 References: <199810161601.CAA26409@godzilla.zeta.org.au> Organization: University of Oslo, Department of Informatics X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-other-addresses: 'finger dag-erli@ifi.uio.no' for a list X-disclaimer-1: The views expressed in this article are mine alone, and do X-disclaimer-2: not necessarily coincide with those of any organisation or X-disclaimer-3: company with which I am or have been affiliated. X-Stop-Spam: http://www.cauce.org/ From: dag-erli@ifi.uio.no (Dag-Erling C. =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 16 Oct 1998 20:14:21 +0200 In-Reply-To: Bruce Evans's message of "Sat, 17 Oct 1998 02:01:19 +1000" Message-ID: Lines: 16 X-Mailer: Gnus v5.5/Emacs 19.34 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by hub.freebsd.org id LAB08284 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Bruce Evans writes: > > > > Log: > > > > Warn about "mount -u" bug. > > > FUD. > > I'm afraid it's very, very real, and 100% reproducable. > Please give details. Which file system? (-u is supposed to apply to > all file systems). Did recent -u fixes (ffs_vfsops.c rev.1.84 and 1.88) > affect it? FFS, and no, I've experienced corruption on a file system that was newfs'd in the beginning of October (and I've been making world and building kernels every other day for a month) DES -- Dag-Erling Smørgrav - dag-erli@ifi.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 12:23:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA20924 for cvs-all-outgoing; Fri, 16 Oct 1998 12:23:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA20911; Fri, 16 Oct 1998 12:23:40 -0700 (PDT) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA13302; Fri, 16 Oct 1998 12:23:38 -0700 (PDT) Date: Fri, 16 Oct 1998 12:23:38 -0700 (PDT) Message-Id: <199810161923.MAA13302@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libstand zalloc_defs.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/10/16 12:23:37 PDT Modified files: lib/libstand zalloc_defs.h Log: Reduce the sbrk() increment from 64K to 4K. There's not much room on the Alpha, and wasting potentially 64K-4 bytes of RAM just isn't an option. Revision Changes Path 1.4 +2 -2 src/lib/libstand/zalloc_defs.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 12:26:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA21666 for cvs-all-outgoing; Fri, 16 Oct 1998 12:26:35 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA21576; Fri, 16 Oct 1998 12:26:16 -0700 (PDT) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA13433; Fri, 16 Oct 1998 12:26:12 -0700 (PDT) Date: Fri, 16 Oct 1998 12:26:12 -0700 (PDT) Message-Id: <199810161926.MAA13433@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/alpha/libalpha Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/10/16 12:26:12 PDT Modified files: sys/boot/alpha/libalpha Makefile Log: Turn of disk debugging by default (suppress annoying "partition marked as unused" diagnostic on floppies). Revision Changes Path 1.6 +2 -2 src/sys/boot/alpha/libalpha/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 14:12:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA16801 for cvs-all-outgoing; Fri, 16 Oct 1998 14:12:55 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA16666; Fri, 16 Oct 1998 14:12:13 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA17166; Fri, 16 Oct 1998 14:12:08 -0700 (PDT) Date: Fri, 16 Oct 1998 14:12:08 -0700 (PDT) Message-Id: <199810162112.OAA17166@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/man/man4/man4.i386 adv.4 adw.4 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/16 14:12:07 PDT Modified files: share/man/man4/man4.i386 Makefile Added files: share/man/man4/man4.i386 adv.4 adw.4 Log: Add in the adv(4) and adw(4) man pages for the AdvanSys narrow and wide SCSI controllers, respectively. Once these drivers are tested on the alpha, these man pages can probably be moved up a directory to reflect the fact that they're architecture independent. An mdoc guru should probably look at the AUTHORS sections in both of these pages -- the .An macro seems to cause strange spacing problems. Reviewed by: ken Submitted by: gibbs Revision Changes Path 1.82 +6 -4 src/share/man/man4/man4.i386/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 14:34:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA22085 for cvs-all-outgoing; Fri, 16 Oct 1998 14:34:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA21959; Fri, 16 Oct 1998 14:33:39 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA17812; Fri, 16 Oct 1998 14:33:35 -0700 (PDT) Date: Fri, 16 Oct 1998 14:33:35 -0700 (PDT) Message-Id: <199810162133.OAA17812@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/man/man4/man4.i386 bt.4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/16 14:33:34 PDT Modified files: share/man/man4/man4.i386 bt.4 Log: Update the bt(4) man page for CAM. Reviewed by: ken Submitted by: gibbs Revision Changes Path 1.6 +92 -24 src/share/man/man4/man4.i386/bt.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 15:02:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA26769 for cvs-all-outgoing; Fri, 16 Oct 1998 15:02:21 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA26578; Fri, 16 Oct 1998 15:01:07 -0700 (PDT) (envelope-from ken@FreeBSD.org) From: Kenneth Merry Received: (from ken@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA18924; Fri, 16 Oct 1998 15:00:55 -0700 (PDT) Date: Fri, 16 Oct 1998 15:00:55 -0700 (PDT) Message-Id: <199810162200.PAA18924@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/share/man/man4/man4.i386 dpt.4 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk ken 1998/10/16 15:00:55 PDT Modified files: share/man/man4/man4.i386 Makefile Added files: share/man/man4/man4.i386 dpt.4 Log: Add the dpt(4) man page. Reviewed by: ken Submitted by: gibbs Revision Changes Path 1.83 +5 -4 src/share/man/man4/man4.i386/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 15:26:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA01536 for cvs-all-outgoing; Fri, 16 Oct 1998 15:26:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA01527; Fri, 16 Oct 1998 15:26:22 -0700 (PDT) (envelope-from alex@FreeBSD.org) From: Alex Nash Received: (from alex@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA19907; Fri, 16 Oct 1998 15:26:20 -0700 (PDT) Date: Fri, 16 Oct 1998 15:26:20 -0700 (PDT) Message-Id: <199810162226.PAA19907@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/conf LINT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk alex 1998/10/16 15:26:20 PDT Modified files: sys/i386/conf LINT Log: Complete the description of sio flag 0x40. Reviewed by: bde Revision Changes Path 1.488 +2 -1 src/sys/i386/conf/LINT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 16:47:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA17198 for cvs-all-outgoing; Fri, 16 Oct 1998 16:47:28 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA17181; Fri, 16 Oct 1998 16:47:18 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA22152; Fri, 16 Oct 1998 16:47:15 -0700 (PDT) Date: Fri, 16 Oct 1998 16:47:15 -0700 (PDT) Message-Id: <199810162347.QAA22152@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/releases/3.0R Makefile announce.sgml errata.sgml notes.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/16 16:47:14 PDT Added files: en/releases/3.0R Makefile announce.sgml errata.sgml notes.sgml Log: Add 3.0 announcement text. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 16:47:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA17233 for cvs-all-outgoing; Fri, 16 Oct 1998 16:47:48 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA17223; Fri, 16 Oct 1998 16:47:39 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA22183; Fri, 16 Oct 1998 16:47:36 -0700 (PDT) Date: Fri, 16 Oct 1998 16:47:36 -0700 (PDT) Message-Id: <199810162347.QAA22183@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/releases Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/16 16:47:36 PDT Modified files: en/releases Makefile Log: Add 3.0R to build list. Revision Changes Path 1.14 +2 -2 www/en/releases/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 16:50:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA17577 for cvs-all-outgoing; Fri, 16 Oct 1998 16:50:01 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA17529; Fri, 16 Oct 1998 16:49:26 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA22259; Fri, 16 Oct 1998 16:49:21 -0700 (PDT) Date: Fri, 16 Oct 1998 16:49:21 -0700 (PDT) Message-Id: <199810162349.QAA22259@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/releases index.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/16 16:49:20 PDT Modified files: en/releases index.sgml Log: Note 3.0R. Revision Changes Path 1.24 +11 -6 www/en/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 Fri Oct 16 16:59:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA19574 for cvs-all-outgoing; Fri, 16 Oct 1998 16:59:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA19503; Fri, 16 Oct 1998 16:58:41 -0700 (PDT) (envelope-from nik@FreeBSD.org) From: Nik Clayton Received: (from nik@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA22506; Fri, 16 Oct 1998 16:58:36 -0700 (PDT) Date: Fri, 16 Oct 1998 16:58:36 -0700 (PDT) Message-Id: <199810162358.QAA22506@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/en/handbook README handbook.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk nik 1998/10/16 16:58:36 PDT Modified files: en/handbook README handbook.sgml Log: Continuing on from the previous commit -- this takes it up to the beginning of chapter 16. . . Revision Changes Path 1.33 +2 -0 doc/en/handbook/README 1.32 +3452 -1732doc/en/handbook/handbook.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 18:21:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA03884 for cvs-all-outgoing; Fri, 16 Oct 1998 18:21:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA03878; Fri, 16 Oct 1998 18:21:42 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA24602; Fri, 16 Oct 1998 18:21:37 -0700 (PDT) Date: Fri, 16 Oct 1998 18:21:37 -0700 (PDT) Message-Id: <199810170121.SAA24602@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/etc/mtree BSD.root.dist Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/16 18:21:36 PDT Modified files: etc/mtree BSD.root.dist Log: Some directories would like to install things into /modules Revision Changes Path 1.32 +3 -1 src/etc/mtree/BSD.root.dist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 18:31:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA05823 for cvs-all-outgoing; Fri, 16 Oct 1998 18:31:01 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA05806; Fri, 16 Oct 1998 18:30:50 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.9.1/8.9.0) with ESMTP id LAA13367; Sat, 17 Oct 1998 11:00:24 +0930 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.9.1/8.9.0) id LAA01348; Sat, 17 Oct 1998 11:00:24 +0930 (CST) Message-ID: <19981017110023.N469@freebie.lemis.com> Date: Sat, 17 Oct 1998 11:00:23 +0930 From: Greg Lehey To: Michael Smith , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libstand zalloc_defs.h References: <199810161923.MAA13302@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199810161923.MAA13302@freefall.freebsd.org>; from Michael Smith on Fri, Oct 16, 1998 at 12:23:38PM -0700 WWW-Home-Page: http://www.lemis.com/~grog Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Friday, 16 October 1998 at 12:23:38 -0700, Michael Smith wrote: > msmith 1998/10/16 12:23:37 PDT > > Modified files: > lib/libstand zalloc_defs.h > Log: > Reduce the sbrk() increment from 64K to 4K. There's not much room on the > Alpha, and wasting potentially 64K-4 bytes of RAM just isn't an option. Am I misunderstanding the context here? This space is all virtual, isn't it? Why should an Alpha have less room than an i386? Greg -- See complete headers for address, home page and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 19:06:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA10567 for cvs-all-outgoing; Fri, 16 Oct 1998 19:06:37 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from dingo.cdrom.com (dingo.cdrom.com [204.216.28.145]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA10560; Fri, 16 Oct 1998 19:06:35 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost.cdrom.com [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id TAA03581; Fri, 16 Oct 1998 19:10:33 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Message-Id: <199810170210.TAA03581@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Greg Lehey cc: Michael Smith , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libstand zalloc_defs.h In-reply-to: Your message of "Sat, 17 Oct 1998 11:00:23 +0930." <19981017110023.N469@freebie.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 16 Oct 1998 19:10:33 -0700 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > On Friday, 16 October 1998 at 12:23:38 -0700, Michael Smith wrote: > > msmith 1998/10/16 12:23:37 PDT > > > > Modified files: > > lib/libstand zalloc_defs.h > > Log: > > Reduce the sbrk() increment from 64K to 4K. There's not much room on the > > Alpha, and wasting potentially 64K-4 bytes of RAM just isn't an option. > > Am I misunderstanding the context here? This space is all virtual, > isn't it? Why should an Alpha have less room than an i386? The bootstrap is given a 256K mapping by the firmware; to add more requires extra work which I'm not up to doing yet. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 20:06:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA18820 for cvs-all-outgoing; Fri, 16 Oct 1998 20:06:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA18812; Fri, 16 Oct 1998 20:06:42 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA27058; Fri, 16 Oct 1998 20:06:39 -0700 (PDT) Date: Fri, 16 Oct 1998 20:06:39 -0700 (PDT) Message-Id: <199810170306.UAA27058@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/common load_elf.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/16 20:06:39 PDT Modified files: sys/boot/common load_elf.c Log: Load the first page of the file and use the headers in it. This should avoid the need to seek back to offset zero which is causing trouble on the Alpha with a gzipped kernel. Revision Changes Path 1.9 +49 -53 src/sys/boot/common/load_elf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 21:13:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA24769 for cvs-all-outgoing; Fri, 16 Oct 1998 21:13:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.15.68.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA24764; Fri, 16 Oct 1998 21:12:59 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id OAA31312; Sat, 17 Oct 1998 14:12:38 +1000 Date: Sat, 17 Oct 1998 14:12:38 +1000 From: Bruce Evans Message-Id: <199810170412.OAA31312@godzilla.zeta.org.au> To: bde@zeta.org.au, dag-erli@ifi.uio.no Subject: Re: cvs commit: src/sbin/mount mount.8 Cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, des@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk >> > > > Warn about "mount -u" bug. >> > > FUD. >> > I'm afraid it's very, very real, and 100% reproducable. >> Please give details. Which file system? (-u is supposed to apply to >> all file systems). Did recent -u fixes (ffs_vfsops.c rev.1.84 and 1.88) >> affect it? > >FFS, and no, I've experienced corruption on a file system that was >newfs'd in the beginning of October (and I've been making world and >building kernels every other day for a month) By details, I meant complete details. How to reproduce the problem, and whether rev.1.84 and 1.88 caused the problem. Does it happen on other file systems? ext2fs uses essentially the same mount -u code as ffs, but is slightly simpler and closer to the CSRG version (for mount -u), so it might be easier to debug and less broken. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 21:19:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA25559 for cvs-all-outgoing; Fri, 16 Oct 1998 21:19:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA25554; Fri, 16 Oct 1998 21:19:32 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA29156; Fri, 16 Oct 1998 21:19:30 -0700 (PDT) Date: Fri, 16 Oct 1998 21:19:30 -0700 (PDT) Message-Id: <199810170419.VAA29156@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sbin/newfs newfs.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/16 21:19:30 PDT Modified files: sbin/newfs newfs.c Log: Don't rewrite the disk label. The type field is already set correctly and we don't use the frags info, so why bother? More to the point, it seems to result in an EXDEV error when the label is written out and we lose because of it (don't know why though). This is a work-around and is marked as such. Revision Changes Path 1.26 +3 -1 src/sbin/newfs/newfs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 22:39:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA01352 for cvs-all-outgoing; Fri, 16 Oct 1998 22:39:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.15.68.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA01327; Fri, 16 Oct 1998 22:39:38 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id PAA02786; Sat, 17 Oct 1998 15:39:17 +1000 Date: Sat, 17 Oct 1998 15:39:17 +1000 From: Bruce Evans Message-Id: <199810170539.PAA02786@godzilla.zeta.org.au> To: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, jkh@FreeBSD.ORG Subject: Re: cvs commit: src/sbin/newfs newfs.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Modified files: > sbin/newfs newfs.c > Log: > Don't rewrite the disk label. The type field is already set correctly > and we don't use the frags info, so why bother? Wrong. The type field isn't already set correctly (any previous setting according to disktab, etc., is wrong until newfs actually writes a partition. The frags info is used by fsck(8) to recover alternate superblocks. You just broke fsck again. See rev.1.9 for previous breakage, PR2537 for problems related to this breakage, and rev.1.22 for the previous fix. > More to the point, it > seems to result in an EXDEV error when the label is written out and we > lose because of it (don't know why though). This is a work-around and > is marked as such. EXDEV is overloaded. disklabel(8) translates it to "labeled partition or `a' partition must start at beginning of disk" but newfs(8) is too primitive to do this translation. It probably doesn't expect any errors after it makes minor changes to a known-good partition table. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 22:40:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA01496 for cvs-all-outgoing; Fri, 16 Oct 1998 22:40:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA01491; Fri, 16 Oct 1998 22:40:49 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA01207; Fri, 16 Oct 1998 22:40:46 -0700 (PDT) Date: Fri, 16 Oct 1998 22:40:46 -0700 (PDT) Message-Id: <199810170540.WAA01207@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src Makefile.upgrade src/tools/tools/upgrade getosreldate.sh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/16 22:40:46 PDT Modified files: . Makefile.upgrade Added files: tools/tools/upgrade getosreldate.sh Log: 3.0-RELEASE and now the post-release 3.0-CURRENT were being declared 'too old' to run ELF. Check the kernel version properly. Revision Changes Path 1.7 +8 -7 src/Makefile.upgrade To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Oct 16 23:28:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA03622 for cvs-all-outgoing; Fri, 16 Oct 1998 23:28:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from mailhost.rmci.net (rmci.net [205.162.184.16] (may be forged)) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id XAA03615 for ; Fri, 16 Oct 1998 23:28:53 -0700 (PDT) (envelope-from bcbent@az.rmci.net) Received: (qmail 8701 invoked from network); 17 Oct 1998 00:01:52 -0600 Received: from usr-az-15.rmci.net (HELO inficad.inficad.com) (209.210.32.15) by mail.rmci.net with SMTP; 17 Oct 1998 00:01:52 -0600 From: "Brian Jones" To: Subject: LIVE ENTERTAINMENT !!!!!!!!!!!!!!!! Date: Fri, 16 Oct 1998 22:44:54 -0700 Message-ID: <01bdf991$44bc30c0$7520d2d1@inficad.inficad.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_028F_01BDF956.EE1B1D60" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.71.1712.3 X-MimeOLE: Produced By Microsoft MimeOLE V4.71.1712.3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk This is a multi-part message in MIME format. ------=_NextPart_000_028F_01BDF956.EE1B1D60 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Come visit the next generation in adult entertainment. Where 35 of the = Internets most beautiful women are ready and willing to fulfill all of = your fantasies and desires. You can visit us 24 hours a day, 7 days a = week at; http://www.xoticfantasies.com IF YOU HAVE ANY COMPLAINTS REGARDING THIS SERVICE, OR YOU WOULD LIKE US = TO REMOVE YOUR NAME FROM OUR E-MAIL LIST, PLEASE CONTACT US IMMEDIATELY = AT 1-888-747-9191, OR YOU CAN E-MAIL US AT BCBENT@AZ.RMCI.NET=20 YOUR NAME WILL BE REMOVED IMMEDIATELY UPON CORRESPONDENCE! ------=_NextPart_000_028F_01BDF956.EE1B1D60 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable

Come visit the next generation in adult entertainment. = Where 35=20 of the Internets most beautiful women are ready and willing to fulfill = all of=20 your fantasies and desires. You can visit us 24 hours a day, 7 days a = week at;=20 http://www.xoticfantasies.com

IF YOU HAVE ANY COMPLAINTS REGARDING THIS SERVICE, OR = YOU WOULD=20 LIKE US TO REMOVE YOUR NAME FROM OUR E-MAIL LIST, PLEASE CONTACT US = IMMEDIATELY=20 AT 1-888-747-9191, OR YOU CAN E-MAIL US AT = BCBENT@AZ.RMCI.NET

YOUR NAME WILL BE REMOVED IMMEDIATELY UPON=20 CORRESPONDENCE!

------=_NextPart_000_028F_01BDF956.EE1B1D60-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 00:10:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA06508 for cvs-all-outgoing; Sat, 17 Oct 1998 00:10:51 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA06497; Sat, 17 Oct 1998 00:10:46 -0700 (PDT) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA03282; Sat, 17 Oct 1998 00:10:44 -0700 (PDT) Date: Sat, 17 Oct 1998 00:10:44 -0700 (PDT) Message-Id: <199810170710.AAA03282@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/perl/libperl config.SH-aout.i386 config.SH-elf.alpha config.SH-elf.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk markm 1998/10/17 00:10:44 PDT Modified files: gnu/usr.bin/perl/libperl config.SH-aout.i386 config.SH-elf.alpha config.SH-elf.i386 Log: Fix paths. This sorts out the remaining p5-* port-creation hassles. Revision Changes Path 1.7 +11 -11 src/gnu/usr.bin/perl/libperl/config.SH-aout.i386 1.8 +11 -11 src/gnu/usr.bin/perl/libperl/config.SH-elf.alpha 1.7 +11 -11 src/gnu/usr.bin/perl/libperl/config.SH-elf.i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 00:49:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA10309 for cvs-all-outgoing; Sat, 17 Oct 1998 00:49:07 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA10304; Sat, 17 Oct 1998 00:49:06 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA04052; Sat, 17 Oct 1998 00:49:04 -0700 (PDT) Date: Sat, 17 Oct 1998 00:49:04 -0700 (PDT) Message-Id: <199810170749.AAA04052@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/ufs/ufs ufs_disksubr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/17 00:49:04 PDT Modified files: sys/ufs/ufs ufs_disksubr.c Log: Use only the correct raw partition for writing labels. Don't use the partition that the label ioctl is being done on just because it has offset 0, since there is no guarantee that such a partition is large enough to contain the label. Don't use the wrong raw partition (0 instead of RAW_PART). This fixes problems rewriting bizarre labels (with a nonzero offset for the 'a' partition) in newfs(8). Such labels shouldn't normally be used, but creating them was allowed if the ioctl was done on the raw partition, and sysinstall creates them if the root partition isn't allocated first. Note that allowing write access to a partition other than the one that has been checked for write access doesn't increase security holes significantly, since write access to any partition already allows changing the in-core label. This fix should be in 3.0R. Rev.1.26 of newfs/newfs.c shouldn't be in 3.0R. Revision Changes Path 1.38 +4 -9 src/sys/ufs/ufs/ufs_disksubr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 01:03:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA12177 for cvs-all-outgoing; Sat, 17 Oct 1998 01:03:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA12170; Sat, 17 Oct 1998 01:03:54 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA04388; Sat, 17 Oct 1998 01:03:52 -0700 (PDT) Date: Sat, 17 Oct 1998 01:03:52 -0700 (PDT) Message-Id: <199810170803.BAA04388@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sbin/newfs newfs.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/17 01:03:52 PDT Modified files: sbin/newfs newfs.c Log: Backed out previous commit. It broke fsck again. See rev.1.22 and the references there, and rev.1.38 of sys/ufs/ufs/ufs_disksubr.c. Revision Changes Path 1.27 +1 -3 src/sbin/newfs/newfs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 02:01:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA16106 for cvs-all-outgoing; Sat, 17 Oct 1998 02:01:19 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA16098; Sat, 17 Oct 1998 02:01:16 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA05687; Sat, 17 Oct 1998 02:01:13 -0700 (PDT) Date: Sat, 17 Oct 1998 02:01:13 -0700 (PDT) Message-Id: <199810170901.CAA05687@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/boot2 boot2.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/17 02:01:13 PDT Modified files: sys/boot/i386/boot2 boot2.c Log: biosboot compatibility fix: Read boot.help before parsing boot.config. We were parsing boot.config first, which could result in boot.help being read from a different location (or not found), which would probably just cause surprise, without being useful. Revision Changes Path 1.8 +2 -2 src/sys/boot/i386/boot2/boot2.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 02:16:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA16907 for cvs-all-outgoing; Sat, 17 Oct 1998 02:16:09 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA16902; Sat, 17 Oct 1998 02:16:05 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA06163; Sat, 17 Oct 1998 02:16:03 -0700 (PDT) Date: Sat, 17 Oct 1998 02:16:03 -0700 (PDT) Message-Id: <199810170916.CAA06163@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/boot2 boot2.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/17 02:16:02 PDT Modified files: sys/boot/i386/boot2 boot2.c Log: biosboot compatibility fix: If we have a boot.config command, display it. Revision Changes Path 1.9 +7 -4 src/sys/boot/i386/boot2/boot2.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 02:38:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA18666 for cvs-all-outgoing; Sat, 17 Oct 1998 02:38:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA18660; Sat, 17 Oct 1998 02:38:19 -0700 (PDT) (envelope-from motoyuki@FreeBSD.org) From: Motoyuki Konno Received: (from motoyuki@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA07008; Sat, 17 Oct 1998 02:38:16 -0700 (PDT) Date: Sat, 17 Oct 1998 02:38:16 -0700 (PDT) Message-Id: <199810170938.CAA07008@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: doc/ja/handbook handbook.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk motoyuki 1998/10/17 02:38:15 PDT Modified files: ja/handbook handbook.sgml Log: Update "Original revision:" Revision Changes Path 1.35 +2 -2 doc/ja/handbook/handbook.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 02:46:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA19330 for cvs-all-outgoing; Sat, 17 Oct 1998 02:46:47 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA19322; Sat, 17 Oct 1998 02:46:44 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA08095; Sat, 17 Oct 1998 02:46:42 -0700 (PDT) Date: Sat, 17 Oct 1998 02:46:42 -0700 (PDT) Message-Id: <199810170946.CAA08095@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern subr_diskslice.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/17 02:46:42 PDT Modified files: sys/kern subr_diskslice.c Log: Overload the correct errno for attempts to set an in-core label with a raw partition at a nonzero offset (EINVAL should have been EXDEV; DIOCSDINFO was broken, and DIOCWDINFO was broken because it depended on DIOCSDINFO). A zero offset for the raw partition should probably be enforced in setdisklabel(), and DIOCWDINFO should probably always be handled by first calling setdisklabel() so that writedisklabel() doesn't need to enforce it, but this has never been done; dsioctl() has a special check. Changes in this commit are limited to dsioctl() to preserve bug for bug compatibility in drivers that don't use the slice code (notably the ccd driver, which allows setting a bogus label in DIOCWDINFO and doesn't undo the setting when writedisklabel() fails). Revision Changes Path 1.59 +2 -2 src/sys/kern/subr_diskslice.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 02:50:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA19830 for cvs-all-outgoing; Sat, 17 Oct 1998 02:50:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA19817; Sat, 17 Oct 1998 02:50:12 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA08179; Sat, 17 Oct 1998 02:50:09 -0700 (PDT) Date: Sat, 17 Oct 1998 02:50:09 -0700 (PDT) Message-Id: <199810170950.CAA08179@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/boot2 boot2.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/17 02:50:09 PDT Modified files: sys/boot/i386/boot2 boot2.c Log: Treat all options as toggles (ie. -c -c is the same no -c). Since the boot.config settings are persistent, this seems to provide a useful override capability, and should break only on broken boot.config's. Output a cosmetic newline if booting with no input. Revision Changes Path 1.10 +4 -6 src/sys/boot/i386/boot2/boot2.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 02:53:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA20105 for cvs-all-outgoing; Sat, 17 Oct 1998 02:53:08 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au (spinner.netplex.com.au [202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA20084 for ; Sat, 17 Oct 1998 02:52:29 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.9.1/8.9.1/Spinner) with ESMTP id RAA11289 for ; Sat, 17 Oct 1998 17:48:47 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199810170948.RAA11289@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: committers@FreeBSD.ORG Subject: OOPS! Bug reports coming your way... Date: Sat, 17 Oct 1998 17:48:46 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk I had a little accident while trying to revive the gnatsreport script that got lost with freefall's disk a month or so ago. Anyway, I accidently ran it a few times one of the mailouts not properly disabled, so I've spammed everybody's mailbox a few times. Sorry. :-] Cheers, -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 02:56:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA20763 for cvs-all-outgoing; Sat, 17 Oct 1998 02:56:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA20737; Sat, 17 Oct 1998 02:56:35 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA08510; Sat, 17 Oct 1998 02:56:32 -0700 (PDT) Date: Sat, 17 Oct 1998 02:56:32 -0700 (PDT) Message-Id: <199810170956.CAA08510@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sbin/disklabel disklabel.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/17 02:56:32 PDT Modified files: sbin/disklabel disklabel.c Log: Updated the error message for EXDEV to match recent kernel fixes. Fixed nearby indentation. Use RAW_PART instead of RAWPARTITION. Revision Changes Path 1.22 +5 -11 src/sbin/disklabel/disklabel.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 03:35:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA24759 for cvs-all-outgoing; Sat, 17 Oct 1998 03:35:31 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA24741; Sat, 17 Oct 1998 03:35:19 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA09735; Sat, 17 Oct 1998 03:35:16 -0700 (PDT) Date: Sat, 17 Oct 1998 03:35:16 -0700 (PDT) Message-Id: <199810171035.DAA09735@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/boot2 boot2.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/17 03:35:15 PDT Modified files: sys/boot/i386/boot2 boot2.c Log: Having probed the keyboard, turn off the -P flag. Revision Changes Path 1.11 +2 -1 src/sys/boot/i386/boot2/boot2.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 03:37:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA25000 for cvs-all-outgoing; Sat, 17 Oct 1998 03:37:29 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from dana.clari.net.au (dana.clari.net.au [203.27.85.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA24994; Sat, 17 Oct 1998 03:37:21 -0700 (PDT) (envelope-from thepish@freebsd.org) Received: from localhost (thepish@localhost) by dana.clari.net.au (8.8.8/8.8.7) with ESMTP id UAA15913; Sat, 17 Oct 1998 20:36:55 +1000 (EST) (envelope-from thepish@freebsd.org) X-Authentication-Warning: dana.clari.net.au: thepish owned process doing -bs Date: Sat, 17 Oct 1998 20:36:54 +1000 (EST) From: Peter Hawkins X-Sender: thepish@dana.clari.net.au To: obrien@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: netscape-45 broken Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk The new netscape-45 PR2 won't build. The new 128 bit stuff relies on an old distfile that is no longer available and (as I predicted on -committers) netscape removed the (buggy) 4.5-PR2 distfile and released the corrected communicator-45 about the time of the PR1 timeout anyway. Unfortunately I didn't notice the patches had been added until after the freeze so I'm afraid the netscape-45 on the 3.0 release CD is going to be broken. I have rewritten it so it will build but will have to wait until after the freeze. In the meantime, anyone with a timed out PR1 who can't get PR2 to fly need not resort to netscape-4 and is welcome to email me and for an advance copy of netscape-45 that works (it uses the binary released after PR2). Peter Hilink Internet Peter Hawkins 381 Swan St Richmond, Vic, Australia Ph: +61-3-9421 2006 Fax: +61-3-9421 2007 http://www.hilink.com.au Peter@hilink.com.au FreeBSD Project: thepish@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 04:17:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA02500 for cvs-all-outgoing; Sat, 17 Oct 1998 04:17:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA02493; Sat, 17 Oct 1998 04:17:23 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id EAA22325; Sat, 17 Oct 1998 04:17:26 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Bruce Evans cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, jkh@FreeBSD.ORG Subject: Re: cvs commit: src/sbin/newfs newfs.c In-reply-to: Your message of "Sat, 17 Oct 1998 15:39:17 +1000." <199810170539.PAA02786@godzilla.zeta.org.au> Date: Sat, 17 Oct 1998 04:17:26 -0700 Message-ID: <22321.908623046@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Wrong. The type field isn't already set correctly (any previous setting > according to disktab, etc., is wrong until newfs actually writes a partition. > The frags info is used by fsck(8) to recover alternate superblocks. You > just broke fsck again. See rev.1.9 for previous breakage, PR2537 for > problems related to this breakage, and rev.1.22 for the previous fix. As I already noted, that wasn't a "fix" judging by all the subsequent failure reports. It doesn't do much good for fsck to work if the user can't even install the OS in the first place. rev 1.22 was a pessimisation from a functionality standpoint and a most unwelcome discovery just 4 hours after the release went out. Bah. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 04:17:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA02559 for cvs-all-outgoing; Sat, 17 Oct 1998 04:17:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA02551; Sat, 17 Oct 1998 04:17:46 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id EAA22338; Sat, 17 Oct 1998 04:17:54 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Bruce Evans cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sbin/newfs newfs.c In-reply-to: Your message of "Sat, 17 Oct 1998 01:03:52 PDT." <199810170803.BAA04388@freefall.freebsd.org> Date: Sat, 17 Oct 1998 04:17:54 -0700 Message-ID: <22335.908623074@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Dammit Bruce, either fix the problem that this causes in turn or forget about making this change. > bde 1998/10/17 01:03:52 PDT > > Modified files: > sbin/newfs newfs.c > Log: > Backed out previous commit. It broke fsck again. See rev.1.22 and the > references there, and rev.1.38 of sys/ufs/ufs/ufs_disksubr.c. > > Revision Changes Path > 1.27 +1 -3 src/sbin/newfs/newfs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 04:25:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA03298 for cvs-all-outgoing; Sat, 17 Oct 1998 04:25:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA03293; Sat, 17 Oct 1998 04:25:08 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA14110; Sat, 17 Oct 1998 04:25:05 -0700 (PDT) Date: Sat, 17 Oct 1998 04:25:05 -0700 (PDT) Message-Id: <199810171125.EAA14110@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/boot2 boot2.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/17 04:25:05 PDT Modified files: sys/boot/i386/boot2 boot2.c Log: Fix some glitches in the input routine: Don't display a \b if not acting on it. Don't process binary zero chars (which result from pressing function keys, etc. on the PC). Revision Changes Path 1.12 +7 -2 src/sys/boot/i386/boot2/boot2.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 04:28:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA03607 for cvs-all-outgoing; Sat, 17 Oct 1998 04:28:03 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA03524; Sat, 17 Oct 1998 04:27:56 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id EAA22395; Sat, 17 Oct 1998 04:28:04 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Bruce Evans cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/ufs/ufs ufs_disksubr.c In-reply-to: Your message of "Sat, 17 Oct 1998 00:49:04 PDT." <199810170749.AAA04052@freefall.freebsd.org> Date: Sat, 17 Oct 1998 04:28:04 -0700 Message-ID: <22391.908623684@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > This fixes problems rewriting bizarre labels (with a nonzero offset > for the 'a' partition) in newfs(8). Such labels shouldn't normally > be used, but creating them was allowed if the ioctl was done on the > raw partition, and sysinstall creates them if the root partition isn't > allocated first. Grumble, OK. I guess I won't kill you then. :) Disgregard my previous "dammit" on this one. I went ballistic because I thought you were getting into another one of your purist moods and were going to give me broken releases while we played tug-of-war over your change - not a very heartening scenario, to say the least. > This fix should be in 3.0R. Rev.1.26 of newfs/newfs.c shouldn't be > in 3.0R. Well, I guess I can interrupt the re-release build in progress. It's only 98% done. :) I've slid the tags for both and will re-roll. I sure hope this fixes the reported problems since we've pretty much run out of testing time for the CD and if this turns out not to work, we're going to have a raft of bug reports in about 6 weeks. :( - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 04:44:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA04750 for cvs-all-outgoing; Sat, 17 Oct 1998 04:44:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA04745; Sat, 17 Oct 1998 04:44:31 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA14498; Sat, 17 Oct 1998 04:44:29 -0700 (PDT) Date: Sat, 17 Oct 1998 04:44:29 -0700 (PDT) Message-Id: <199810171144.EAA14498@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/games/fortune/datfiles Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/17 04:44:29 PDT Modified files: games/fortune/datfiles Makefile Log: Fixed building without /usr/games in $PATH. Just add /usr/games to the _end_ of $PATH before using tools that are normally in /usr/games. I broke this in rev.1.9 by assuming that these tools are in $PATH (as they are for `make world' unless NOTOOLS is set). Revs.1.10-1.13 of this file had various wrong fixes. Rev.1.18 of src/Makefile.inc1 has an incomplete fix. PR: 7936 Fixed comments about what to comment out to [not] install the potentially offensive fortunes. This should be configured using an ifdef. Fixed missing dependencies of fortunes.dat on fortunes, etc. Removed bogus dependency of `all' on source files. Fixed some style bugs. Revision Changes Path 1.14 +13 -11 src/games/fortune/datfiles/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 04:56:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA05326 for cvs-all-outgoing; Sat, 17 Oct 1998 04:56:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA05321; Sat, 17 Oct 1998 04:56:23 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA14675; Sat, 17 Oct 1998 04:56:21 -0700 (PDT) Date: Sat, 17 Oct 1998 04:56:21 -0700 (PDT) Message-Id: <199810171156.EAA14675@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src Makefile.inc1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/17 04:56:20 PDT Modified files: . Makefile.inc1 Log: Don't add /usr/games to $PATH. Adding it here can only work for the `make world' case, and only made a difference for the evil NOTOOLS case of `make world' since games tools are installed in ${TOOLROOT}/usr/bin if they are built, but the PR was for normal builds. This is fixed in rev.1.14 of src/games/fortune/datfiles/Makefile. PR: 7936 Revision Changes Path 1.36 +4 -4 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 05:26:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA06501 for cvs-all-outgoing; Sat, 17 Oct 1998 05:26:58 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (VMailer, from userid 1) id 145BA9D1D; Sat, 17 Oct 1998 05:25:37 -0700 (PDT) Received: from awfulhak.org (awfulhak.force9.co.uk [195.166.136.63]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA06374; Sat, 17 Oct 1998 05:25:26 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from woof.lan.awfulhak.org (root@woof.lan.awfulhak.org [172.16.0.7]) by awfulhak.org (8.8.8/8.8.8) with ESMTP id NAA28952; Sat, 17 Oct 1998 13:07:06 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from woof.lan.awfulhak.org (brian@localhost [127.0.0.1]) by woof.lan.awfulhak.org (8.9.1/8.9.1) with ESMTP id NAA10008; Sat, 17 Oct 1998 13:05:37 +0100 (BST) (envelope-from brian@woof.lan.awfulhak.org) Message-Id: <199810171205.NAA10008@woof.lan.awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: "Jonathan M. Bresler" Cc: cvs-test@FreeBSD.ORG Subject: Re: test message using vmailer In-reply-to: Your message of "Fri, 16 Oct 1998 06:21:47 PDT." <199810161321.GAA26112@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 17 Oct 1998 13:05:35 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > i will be converting cvs-committers to vmailer > everyone is used to vmailer from -current, right. > > good. > > let's have a test message here. This hit my spam bucket - the Sender: is wrong. But I suppose that'll be fixed for *real* messages ;-) > jmb > -- Brian , , Don't _EVER_ lose your sense of humour.... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 05:28:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA06587 for cvs-all-outgoing; Sat, 17 Oct 1998 05:28:11 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA06568; Sat, 17 Oct 1998 05:28:05 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA15183; Sat, 17 Oct 1998 05:28:02 -0700 (PDT) Date: Sat, 17 Oct 1998 05:28:02 -0700 (PDT) Message-Id: <199810171228.FAA15183@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp lcp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/10/17 05:28:02 PDT Modified files: usr.sbin/ppp lcp.c Log: Warn that the specific chap protocol isn't supported when rejecting CHAP because of byte 5. Suggested by: Daniel O'Callaghan Revision Changes Path 1.65 +19 -8 src/usr.sbin/ppp/lcp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 05:28:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA06604 for cvs-all-outgoing; Sat, 17 Oct 1998 05:28:15 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA06574; Sat, 17 Oct 1998 05:28:06 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA15209; Sat, 17 Oct 1998 05:28:03 -0700 (PDT) Date: Sat, 17 Oct 1998 05:28:03 -0700 (PDT) Message-Id: <199810171228.FAA15209@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp systems.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/10/17 05:28:03 PDT Modified files: usr.sbin/ppp systems.c Log: Warn if we encounter an unindented line that isn't terminated with a ``:''. Revision Changes Path 1.39 +7 -2 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 Sat Oct 17 05:28:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA06624 for cvs-all-outgoing; Sat, 17 Oct 1998 05:28:20 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA06579; Sat, 17 Oct 1998 05:28:08 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA15236; Sat, 17 Oct 1998 05:28:05 -0700 (PDT) Date: Sat, 17 Oct 1998 05:28:05 -0700 (PDT) Message-Id: <199810171228.FAA15236@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp command.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/10/17 05:28:05 PDT Modified files: usr.sbin/ppp command.c Log: Move help displays left one column to avoid problems with broken terminals that can't handle 80 columns followed by a linefeed. Pointed out by: bde@FreeBSD.org Revision Changes Path 1.167 +5 -3 src/usr.sbin/ppp/command.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 05:28:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA06635 for cvs-all-outgoing; Sat, 17 Oct 1998 05:28:22 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA06582; Sat, 17 Oct 1998 05:28:09 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA15262; Sat, 17 Oct 1998 05:28:07 -0700 (PDT) Date: Sat, 17 Oct 1998 05:28:07 -0700 (PDT) Message-Id: <199810171228.FAA15262@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp datalink.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/10/17 05:28:07 PDT Modified files: usr.sbin/ppp datalink.c Log: Explain what the ``*'' means for a CBCP phone number in ``show link''. Revision Changes Path 1.20 +9 -3 src/usr.sbin/ppp/datalink.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 05:28:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA06651 for cvs-all-outgoing; Sat, 17 Oct 1998 05:28:25 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA06589; Sat, 17 Oct 1998 05:28:11 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA15290; Sat, 17 Oct 1998 05:28:08 -0700 (PDT) Date: Sat, 17 Oct 1998 05:28:08 -0700 (PDT) Message-Id: <199810171228.FAA15290@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp cbcp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/10/17 05:28:08 PDT Modified files: usr.sbin/ppp cbcp.c Log: If the client asks for CBCP, then replies with CBCP_NONUM to our REQ, allow no dialback - but only if we've ``set cbcp *''.. Suggested by: Andrzej Tobola Revision Changes Path 1.3 +8 -1 src/usr.sbin/ppp/cbcp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 05:28:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA06660 for cvs-all-outgoing; Sat, 17 Oct 1998 05:28:26 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA06593; Sat, 17 Oct 1998 05:28:12 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA15316; Sat, 17 Oct 1998 05:28:09 -0700 (PDT) Date: Sat, 17 Oct 1998 05:28:09 -0700 (PDT) Message-Id: <199810171228.FAA15316@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp cbcp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/10/17 05:28:09 PDT Modified files: usr.sbin/ppp cbcp.c Log: Adjust our CBCP RESP id so that it's the same as the REQ. Submitted by: Tom Revision Changes Path 1.4 +2 -1 src/usr.sbin/ppp/cbcp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 05:28:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA06675 for cvs-all-outgoing; Sat, 17 Oct 1998 05:28:29 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA06602; Sat, 17 Oct 1998 05:28:14 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA15342; Sat, 17 Oct 1998 05:28:11 -0700 (PDT) Date: Sat, 17 Oct 1998 05:28:11 -0700 (PDT) Message-Id: <199810171228.FAA15342@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp cbcp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk brian 1998/10/17 05:28:11 PDT Modified files: usr.sbin/ppp cbcp.c Log: Warn about (but process anyway) CBCP messages with an incorrect id. Revision Changes Path 1.5 +11 -1 src/usr.sbin/ppp/cbcp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 05:44:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA07745 for cvs-all-outgoing; Sat, 17 Oct 1998 05:44:59 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA07739; Sat, 17 Oct 1998 05:44:58 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA16328; Sat, 17 Oct 1998 05:44:56 -0700 (PDT) Date: Sat, 17 Oct 1998 05:44:56 -0700 (PDT) Message-Id: <199810171244.FAA16328@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sbin/newfs_msdos newfs_msdos.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/17 05:44:56 PDT Modified files: sbin/newfs_msdos newfs_msdos.c Log: Don't assume that time_t is long. Revision Changes Path 1.5 +4 -2 src/sbin/newfs_msdos/newfs_msdos.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 06:02:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA08849 for cvs-all-outgoing; Sat, 17 Oct 1998 06:02:50 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA08843; Sat, 17 Oct 1998 06:02:49 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA16640; Sat, 17 Oct 1998 06:02:47 -0700 (PDT) Date: Sat, 17 Oct 1998 06:02:47 -0700 (PDT) Message-Id: <199810171302.GAA16640@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sbin/vinum list.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/17 06:02:47 PDT Modified files: sbin/vinum list.c Log: Don't assume that time_t is long. Revision Changes Path 1.2 +7 -3 src/sbin/vinum/list.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 06:48:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA13852 for cvs-all-outgoing; Sat, 17 Oct 1998 06:48:43 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA13845; Sat, 17 Oct 1998 06:48:40 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA22577; Sat, 17 Oct 1998 06:48:38 -0700 (PDT) Date: Sat, 17 Oct 1998 06:48:38 -0700 (PDT) Message-Id: <199810171348.GAA22577@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sbin/vinum Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/17 06:48:38 PDT Modified files: sbin/vinum Makefile Log: Honour the default CFLAGS. This fixes a spew of warnings for compiling unused static inlines in headers without -O. Fixed missing libraries in DPADD. Use .PATH instead of a symlink farm. Removed bogus dependency of util.c on statetext.h (only util.o depends on it). Removed rule for building statetext.h. The dependency was used to get statetext.h built, but statetext.h is a non-generated source file so it doesn't need building. This fixes an annoying message for the null build and use of `make' instead of ${MAKE} to do the null build. Fixed some style bugs. Revision Changes Path 1.2 +6 -14 src/sbin/vinum/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 06:55:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA14601 for cvs-all-outgoing; Sat, 17 Oct 1998 06:55:29 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA14586; Sat, 17 Oct 1998 06:55:27 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA22733; Sat, 17 Oct 1998 06:55:22 -0700 (PDT) Date: Sat, 17 Oct 1998 06:55:22 -0700 (PDT) Message-Id: <199810171355.GAA22733@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/amd/amd Makefile src/usr.sbin/amd/fixmount Makefile src/usr.sbin/amd/hlfsd Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/17 06:55:22 PDT Modified files: usr.sbin/amd/amd Makefile usr.sbin/amd/fixmount Makefile usr.sbin/amd/hlfsd Makefile Log: Fixed missing libraries in DPADD. Revision Changes Path 1.16 +3 -3 src/usr.sbin/amd/amd/Makefile 1.3 +3 -3 src/usr.sbin/amd/fixmount/Makefile 1.3 +3 -3 src/usr.sbin/amd/hlfsd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 07:06:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA15479 for cvs-all-outgoing; Sat, 17 Oct 1998 07:06:27 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA15474; Sat, 17 Oct 1998 07:06:23 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA23231; Sat, 17 Oct 1998 07:06:20 -0700 (PDT) Date: Sat, 17 Oct 1998 07:06:20 -0700 (PDT) Message-Id: <199810171406.HAA23231@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/chpass pw_copy.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/17 07:06:20 PDT Modified files: usr.bin/chpass pw_copy.c Log: Fixed printf format errors. Assume that time_t's are representable as longs. Revision Changes Path 1.6 +2 -2 src/usr.bin/chpass/pw_copy.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 07:08:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA15670 for cvs-all-outgoing; Sat, 17 Oct 1998 07:08:17 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA15663; Sat, 17 Oct 1998 07:08:15 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA23309; Sat, 17 Oct 1998 07:08:13 -0700 (PDT) Date: Sat, 17 Oct 1998 07:08:13 -0700 (PDT) Message-Id: <199810171408.HAA23309@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/chpass pw_yp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/17 07:08:12 PDT Modified files: usr.bin/chpass pw_yp.c Log: Fixed printf format errors. Assume that uid_t's are representable as unsigned longs. Revision Changes Path 1.13 +2 -2 src/usr.bin/chpass/pw_yp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 07:20:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA16849 for cvs-all-outgoing; Sat, 17 Oct 1998 07:20:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA16844; Sat, 17 Oct 1998 07:20:28 -0700 (PDT) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA23579; Sat, 17 Oct 1998 07:20:26 -0700 (PDT) Date: Sat, 17 Oct 1998 07:20:26 -0700 (PDT) Message-Id: <199810171420.HAA23579@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/i386/boot0 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk rnordier 1998/10/17 07:20:26 PDT Modified files: sys/boot/i386/boot0 Makefile Log: Set BINMODE to 444. Revision Changes Path 1.5 +2 -1 src/sys/boot/i386/boot0/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 07:47:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA18232 for cvs-all-outgoing; Sat, 17 Oct 1998 07:47:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA18227; Sat, 17 Oct 1998 07:47:03 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA24121; Sat, 17 Oct 1998 07:47:01 -0700 (PDT) Date: Sat, 17 Oct 1998 07:47:01 -0700 (PDT) Message-Id: <199810171447.HAA24121@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/contrib/ipfilter ipmon.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/17 07:47:01 PDT Modified files: contrib/ipfilter ipmon.c Log: Fixed the type of a signal handler. Revision Changes Path 1.4 +3 -2 src/contrib/ipfilter/ipmon.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 08:25:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA22110 for cvs-all-outgoing; Sat, 17 Oct 1998 08:25:33 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA22105; Sat, 17 Oct 1998 08:25:29 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA24738; Sat, 17 Oct 1998 08:25:26 -0700 (PDT) Date: Sat, 17 Oct 1998 08:25:26 -0700 (PDT) Message-Id: <199810171525.IAA24738@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src Makefile Makefile.inc0 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/17 08:25:26 PDT Modified files: . Makefile Makefile.inc0 Log: Restored all lost user targets that are supported by bsd.subdir.mk: checkdpadd, lint, maninstall, objlink, regress and tags. Removed bogus user target cleanobj. It is the non-recursive base of the cleandir target, so it is not useful (or usable) here. Revision Changes Path 1.221 +5 -4 src/Makefile 1.11 +5 -4 src/Makefile.inc0 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 08:52:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA25960 for cvs-all-outgoing; Sat, 17 Oct 1998 08:52:53 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA25953; Sat, 17 Oct 1998 08:52:50 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA25400; Sat, 17 Oct 1998 08:52:48 -0700 (PDT) Date: Sat, 17 Oct 1998 08:52:48 -0700 (PDT) Message-Id: <199810171552.IAA25400@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/include Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/17 08:52:48 PDT Modified files: include Makefile Log: Don't even think about using a sysctl to build osreldate.h, since this breaks cross-builds. Just depend on ${.CURDIR}/../sys/conf/newvers.sh existing. Don't override the (correct) defaults for the depend, lint or tags target. In LDIRS: fixed order-rot. Don't comment out dead networking directories; remove them. Revision Changes Path 1.87 +4 -17 src/include/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 09:04:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA26760 for cvs-all-outgoing; Sat, 17 Oct 1998 09:04:32 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA26755; Sat, 17 Oct 1998 09:04:31 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA25797; Sat, 17 Oct 1998 09:04:29 -0700 (PDT) Date: Sat, 17 Oct 1998 09:04:29 -0700 (PDT) Message-Id: <199810171604.JAA25797@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/contrib/sendmail/src conf.c err.c headers.c savemail.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/17 09:04:29 PDT Modified files: contrib/sendmail/src conf.c err.c headers.c savemail.c Log: Fixed printf format errors. Revision Changes Path 1.2 +1 -1 src/contrib/sendmail/src/conf.c 1.2 +1 -1 src/contrib/sendmail/src/err.c 1.2 +1 -1 src/contrib/sendmail/src/headers.c 1.2 +3 -3 src/contrib/sendmail/src/savemail.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 09:14:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA28013 for cvs-all-outgoing; Sat, 17 Oct 1998 09:14:05 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA28004; Sat, 17 Oct 1998 09:14:03 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA26115; Sat, 17 Oct 1998 09:14:00 -0700 (PDT) Date: Sat, 17 Oct 1998 09:14:00 -0700 (PDT) Message-Id: <199810171614.JAA26115@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/contrib/sendmail/src mci.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk bde 1998/10/17 09:14:00 PDT Modified files: contrib/sendmail/src mci.c Log: "Fixed" a printf format error. Use bogus casts to avoid using %p so that the output doesn't change (unless the old format caused runtime errors). Revision Changes Path 1.2 +3 -1 src/contrib/sendmail/src/mci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 15:20:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA02894 for cvs-all-outgoing; Sat, 17 Oct 1998 15:20:12 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA02888; Sat, 17 Oct 1998 15:20:09 -0700 (PDT) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA04628; Sat, 17 Oct 1998 15:20:06 -0700 (PDT) Date: Sat, 17 Oct 1998 15:20:06 -0700 (PDT) Message-Id: <199810172220.PAA04628@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libstand zalloc_defs.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/10/17 15:20:06 PDT Modified files: lib/libstand zalloc_defs.h Log: To clarify last commit, msmith says: The reason the Alpha has less room than the i386 is because the bootstrap is given a 256K mapping by the firmware; to add more requires extra work. Revision Changes Path 1.5 +1 -1 src/lib/libstand/zalloc_defs.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 17:51:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA12547 for cvs-all-outgoing; Sat, 17 Oct 1998 17:51:52 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA12542; Sat, 17 Oct 1998 17:51:49 -0700 (PDT) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA07975; Sat, 17 Oct 1998 17:51:47 -0700 (PDT) Date: Sat, 17 Oct 1998 17:51:47 -0700 (PDT) Message-Id: <199810180051.RAA07975@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/make main.c make.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk obrien 1998/10/17 17:51:47 PDT Modified files: usr.bin/make main.c make.1 Log: Only process the ``PWD'' environmental var if built with "WANT_ENV_PWD" defined. Bash v2 sets PWD and it creates major problems for those of us with /usr/src being a symlink. See the lists for examples of the problems. Revision Changes Path 1.27 +11 -3 src/usr.bin/make/main.c 1.13 +3 -2 src/usr.bin/make/make.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 19:38:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA23351 for cvs-all-outgoing; Sat, 17 Oct 1998 19:38:56 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA23332; Sat, 17 Oct 1998 19:38:49 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA10058; Sat, 17 Oct 1998 19:38:46 -0700 (PDT) Date: Sat, 17 Oct 1998 19:38:46 -0700 (PDT) Message-Id: <199810180238.TAA10058@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/releases/3.0R notes.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk jkh 1998/10/17 19:38:46 PDT Modified files: en/releases/3.0R notes.sgml Log: Fix release notes. Revision Changes Path 1.2 +3 -5 www/en/releases/3.0R/notes.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 20:59:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA02722 for cvs-all-outgoing; Sat, 17 Oct 1998 20:59:14 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.15.68.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA02715; Sat, 17 Oct 1998 20:59:11 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id NAA30093; Sun, 18 Oct 1998 13:58:28 +1000 Date: Sun, 18 Oct 1998 13:58:28 +1000 From: Bruce Evans Message-Id: <199810180358.NAA30093@godzilla.zeta.org.au> To: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, obrien@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/make main.c make.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk > Modified files: > usr.bin/make main.c make.1 > Log: > Only process the ``PWD'' environmental var if built with "WANT_ENV_PWD" > defined. Bash v2 sets PWD and it creates major problems for those of us > with /usr/src being a symlink. See the lists for examples of the problems. Most shells set it, but bash v2 uncovers major problems in the separate obj tree support by exporting it. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 21:37:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA05950 for cvs-all-outgoing; Sat, 17 Oct 1998 21:37:03 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA05941; Sat, 17 Oct 1998 21:37:02 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA12563; Sat, 17 Oct 1998 21:36:59 -0700 (PDT) Date: Sat, 17 Oct 1998 21:36:59 -0700 (PDT) Message-Id: <199810180436.VAA12563@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/gnu/i386/fpemul fpu_entry.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 1998/10/17 21:36:58 PDT Modified files: sys/gnu/i386/fpemul fpu_entry.c Log: OOPS! Supply the moduledata handle rather than the event dispatcher function. This should explain the panic on boot problem that's been discussed in -current at the moment. Both machines had GNU_MATH_EMULATE. Revision Changes Path 1.16 +2 -2 src/sys/gnu/i386/fpemul/fpu_entry.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 21:46:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA06907 for cvs-all-outgoing; Sat, 17 Oct 1998 21:46:29 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA06900; Sat, 17 Oct 1998 21:46:28 -0700 (PDT) (envelope-from thepish@FreeBSD.org) From: Peter Hawkins Received: (from thepish@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA12796; Sat, 17 Oct 1998 21:46:25 -0700 (PDT) Date: Sat, 17 Oct 1998 21:46:25 -0700 (PDT) Message-Id: <199810180446.VAA12796@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.bin/indent indent.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk thepish 1998/10/17 21:46:25 PDT Modified files: usr.bin/indent indent.c Log: PR: 7583 Submitted by: Dave Glowacki Support input via stdin if no input file name specified explicitly Revision Changes Path 1.3 +4 -4 src/usr.bin/indent/indent.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 22:24:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA09816 for cvs-all-outgoing; Sat, 17 Oct 1998 22:24:10 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA09811; Sat, 17 Oct 1998 22:24:09 -0700 (PDT) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA13989; Sat, 17 Oct 1998 22:24:07 -0700 (PDT) Date: Sat, 17 Oct 1998 22:24:07 -0700 (PDT) Message-Id: <199810180524.WAA13989@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: www/en/releases/3.0R errata.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk msmith 1998/10/17 22:24:06 PDT Modified files: en/releases/3.0R errata.sgml Log: Add mention of the broken GPL_MATH_EMULATE option in the 3.0 release. Revision Changes Path 1.2 +12 -2 www/en/releases/3.0R/errata.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Oct 17 23:11:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA12835 for cvs-all-outgoing; Sat, 17 Oct 1998 23:11:45 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from silverback.gorilla.net (silverback.gorilla.net [208.128.8.1]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id XAA12830; Sat, 17 Oct 1998 23:11:38 -0700 (PDT) (envelope-from tom@gorilla.net) Received: from peeper.TOJ.org [208.143.84.24] by silverback.gorilla.net with ESMTP (SMTPD32-4.07) id A57E15000C4; Sun, 18 Oct 1998 01:06:54 CDT Received: (from tom@localhost) by peeper.TOJ.org (8.9.1/8.8.8) id BAA02751; Sun, 18 Oct 1998 01:11:19 -0500 (CDT) (envelope-from tom) Message-ID: <19981018011048.D1263@TOJ.org> Date: Sun, 18 Oct 1998 01:10:48 -0500 From: Tom Jackson To: "Dag-Erling C. Smf8rgrav" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/window wwspawn.c wwterminfo.c References: <199810131514.IAA13889@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199810131514.IAA13889@freefall.freebsd.org>; from Dag-Erling C. Smf8rgrav on Tue, Oct 13, 1998 at 08:14:37AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Tue, Oct 13, 1998 at 08:14:37AM -0700, Dag-Erling C. Smf8rgrav wrote: > des 1998/10/13 08:14:37 PDT > > Modified files: > usr.bin/window wwspawn.c wwterminfo.c > Log: > One vfork() changed to fork(); one execl() changed to execv(). The > latter isn't actually called as far as I can see since FreeBSD uses > termcap and not terminfo. > > Revision Changes Path > 1.3 +2 -2 src/usr.bin/window/wwspawn.c > 1.3 +6 -2 src/usr.bin/window/wwterminfo.c > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe cvs-all" in the body of the message > Don't know. Mine seems broke. -- Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message