From owner-freebsd-multimedia Tue Jan 6 17:34:31 1998 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id RAA18262 for multimedia-outgoing; Tue, 6 Jan 1998 17:34:31 -0800 (PST) (envelope-from owner-freebsd-multimedia) Received: from whqvax.picker.com (whqvax.picker.com [144.54.1.1]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id RAA18256 for ; Tue, 6 Jan 1998 17:34:27 -0800 (PST) (envelope-from rhh@ct.picker.com) Received: from ct.picker.com by whqvax.picker.com with SMTP; Tue, 6 Jan 1998 20:33:32 -0500 (EST) Received: from elmer.ct.picker.com by ct.picker.com (4.1/SMI-4.1) id AA04001; Tue, 6 Jan 98 20:33:30 EST Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id UAA21228; Tue, 6 Jan 1998 20:32:36 -0500 Message-Id: <19980106203235.56862@ct.picker.com> Date: Tue, 6 Jan 1998 20:32:35 -0500 From: Randall Hopper To: mcdougall@ameritech.net Cc: multimedia@freebsd.org Subject: Re: AWE driver ready for -current check-in References: <349D8700.B4584D3F@no.org> <19971221170505.26804@ct.picker.com> <34B1FC46.BA45BB54@ameritech.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81 In-Reply-To: <34B1FC46.BA45BB54@ameritech.net>; from Adam McDougall on Tue, Jan 06, 1998 at 04:41:27AM -0500 Sender: owner-freebsd-multimedia@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Adam McDougall: | Hello, I got the awedrv and applied the patches successfully I think... |make depend said missing osreldate.h included from |/usr/src/sys/gnu/i386/isa/sound/awe_config.h ... |And I cant find osreldate.h anywhere; what to do now? :) |thanks if you can help (Back from the break and filtering through my inbox...) John-Mark brought this to my attention over the break as well. (Ccing multimedia for any other 3.0-current users that might try/have tried the AWE driver recently). The one patch needed to "make depend" a 3.0-current kernel after the AWE driver patches are applied is to remove this #ifdef block from the top of /usr/src/sys/gnu/i386/isa/sound/awe_config.h: #ifdef __FreeBSD__ # define AWE_OBSOLETE_VOXWARE # if __FreeBSD__ >= 2 # include # if __FreeBSD_version >= 300000 # undef AWE_OBSOLETE_VOXWARE # endif #endif #endif It apparently isn't considered kosher to include some /usr/include files in kernel source. I don't know the full story on this yet. Anyway, for 3.0-current, removing this whole block achieves the desired result (AWE_OBSOLETE_VOXWARE is undefined). Randall