[834] in arla-drinkers
Re: FreeBSD 4.0-CURRENT, arla-0.23
daemon@ATHENA.MIT.EDU (assar@stacken.kth.se)
Sun May 16 18:29:32 1999
From owner-arla-drinkers@stacken.kth.se Sun May 16 22:29:31 1999
Return-Path: <owner-arla-drinkers@stacken.kth.se>
Delivered-To: arla-drinkers-mtg@bloom-picayune.mit.edu
Received: (qmail 17716 invoked from network); 16 May 1999 22:29:29 -0000
Received: from unknown (HELO sundance.stacken.kth.se) (130.237.234.41)
by bloom-picayune.mit.edu with SMTP; 16 May 1999 22:29:29 -0000
Received: (from majordom@localhost)
by sundance.stacken.kth.se (8.8.8/8.8.8) id AAA23724
for arla-drinkers-list; Mon, 17 May 1999 00:21:28 +0200 (MET DST)
Received: from assaris.sics.se (assaris.sics.se [193.10.66.108])
by sundance.stacken.kth.se (8.8.8/8.8.8) with ESMTP id AAA23719
for <arla-drinkers@stacken.kth.se>; Mon, 17 May 1999 00:21:23 +0200 (MET DST)
Received: (from assar@localhost) by assaris.sics.se (8.9.3/8.7.3) id AAA00504; Mon, 17 May 1999 00:24:41 +0200 (CEST)
From: assar@stacken.kth.se
To: Robert Watson <robert+freebsd@cyrus.watson.org>
Cc: arla-drinkers@stacken.kth.se
Subject: Re: FreeBSD 4.0-CURRENT, arla-0.23
References: <Pine.BSF.3.96.990516181058.9930B-100000@fledge.watson.org>
Mime-Version: 1.0 (generated by tm-edit 7.68)
Content-Type: text/plain; charset=US-ASCII
Date: 17 May 1999 00:24:38 +0200
In-Reply-To: Robert Watson's message of "Sun, 16 May 1999 18:13:40 -0400 (EDT)"
Message-ID: <5lpv40mz4o.fsf@assaris.sics.se>
Lines: 47
X-Mailer: Gnus v5.5/Emacs 19.34
Sender: owner-arla-drinkers@stacken.kth.se
Precedence: bulk
Robert Watson <robert@cyrus.watson.org> writes:
> I'm using 4.0-CURRENT, and did a ./configure --enable-kld, but on the make
> got:
You shouldn't need to say `--enable-kld' any longer, it will default
to kld for freebsd4*.
> gcc -c -DHAVE_CONFIG_H -I. -I. -I../../include -I./../../include
> -I./../inclu
> de -I/usr/athena/include -DXFS_DEBUG -g -Wall -I. -DKERNEL -D_KERNEL
> -DVFS_KLD
> -DKLD_MODULE -I/sys/arch -I/sys -I. -Wno-unused xfs_message.c
> In file included from xfs_message.c:39:
> xfs/xfs_locl.h:137: sys/lkm.h: No such file or directory
> *** Error code 1
Yeah, the machine where I tried it (of course) still had a <sys/lkm.h>.
/assar
Index: xfs/bsd/xfs/xfs_locl.h
===================================================================
RCS file: /usr/local/cvsroot/arla/xfs/bsd/xfs/xfs_locl.h,v
retrieving revision 1.21
retrieving revision 1.21.8.1
diff -u -w -u -w -r1.21 -r1.21.8.1
--- xfs_locl.h 1999/01/19 19:55:21 1.21
+++ xfs_locl.h 1999/05/16 22:18:44 1.21.8.1
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*/
-/* $Id: xfs_locl.h,v 1.21 1999/01/19 19:55:21 art Exp $ */
+/* $Id: xfs_locl.h,v 1.21.8.1 1999/05/16 22:18:44 assar Exp $ */
#ifdef HAVE_CONFIG_H
#include <config.h>
@@ -134,7 +134,9 @@
#ifdef HAVE_SYS_SYSENT_H
#include <sys/sysent.h>
#endif
+#ifdef HAVE_SYS_LKM_H
#include <sys/lkm.h>
+#endif
#include <sys/errno.h>
#include <sys/file.h>
#include <sys/namei.h>