10/05/31 18:24:34
やっぱ特殊な問題なのか
一応、環境は 8.1-PRERELEASE i386。portsツリーは最新にしてある。VMware Player上で動かしてる
たぶん原因はportsの仕組みに絡んだものだと思う
make中のエラーの原因を表す出力は下記だけ
===> mount_fusefs (all)
Warning: Object directory not changed from original /usr/ports/sysutils/fusefs-kmod/work/fuse4bsd-498acaef33b0/mount_fusefs
cc -O2 -pipe -march=prescott -I/usr/src/sbin/mount -I../include -std=gnu99 -fstack-protector -c mount_fusefs.c
mount_fusefs.c:79: error: 'MNT_NFS4ACLS' undeclared here (not in a function)
MNT_NFS4ACLSはmount_fusefs.cでインクルードしてるsys/mount.hで定義されてる
だけどsys/mount.hが存在するディレクトリ/usr/src/sysが-Iオプションに指定されてないんだ
続く