[OpenAFS] Trouble setting up first server on FreeBSD 6.0

Tony Shadwick - OSS Solutions tshadwick@oss-solutions.com
Sat, 10 Dec 2005 10:50:20 -0600 (CST)


Huh.  So ./configure isn't getting the script run as expected, or is this 
something where if I've installed sources but have not actually built the 
kernel locally the script hasn't been run?

On Sat, 10 Dec 2005, Horst Birthelmer wrote:

>
> On Dec 10, 2005, at 4:25 PM, Tony Shadwick - OSS Solutions wrote:
>
>> My trouble is right now is that the thing refuses to compile.  I sent a 
>> message a while back (hate to go duplicating it) as such.  For some reason 
>> these posts came in our of order:
>> 
>> https://lists.openafs.org/pipermail/openafs-info/2005-December/020554.html
>
> If you're refering to this two errors:
> ./vnode_if.h:9:30: vnode_if_typedef.h: No such file or directory
> ./vnode_if.h:10:31: vnode_if_newproto.h: No such file or directory
>
> those files are created by an awk script.
> You can work around that by calling it yourself.
>
> awk -f $SYS/tools/vnode_if.awk $SYS/kern/vnode_if.src -h
>
> where $SYS is usually /usr/src/sys/
>
> The other two files are created by the same script with options -q, -p.
>
> Horst