Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 Nov 2002 23:18:25 -0800
From:      Terry Lambert <tlambert2@mindspring.com>
To:        suken woo <wsk@mail.gddsn.org.cn>
Cc:        freebsd-current <freebsd-current@FreeBSD.ORG>, freebsd-java <freebsd-java@freebsd.org>
Subject:   Re: -current make jdk13 with native_threads error
Message-ID:  <3DD1FCC1.5E2CDFE6@mindspring.com>
References:  <3DD1BDA8.7080106@mail.gddsn.org.cn>

next in thread | previous in thread | raw e-mail | index | archive | help
suken woo wrote:
> In file included from
> ../../../../src/solaris/hpi/native_threads/src/threads_md.c:27:
> /usr/include/sys/resource.h:61: field `ru_utime' has incomplete type
> /usr/include/sys/resource.h:62: field `ru_stime' has incomplete type

"struct timeval" is not in scope.

Modify the file:

../../../../src/solaris/hpi/native_threads/src/threads_md.c

and add

#include <sys/time.h>

before the #include on line # 27.

-- Terry

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3DD1FCC1.5E2CDFE6>