Newsgroups: comp.parallel.pvm
From: "Kirk D. Haines" <khaines@oshconsulting.com>
Reply-To: khaines@oshconsulting.com
Subject: Re: Compiling PVM on Linux
Organization: OSH Consulting
Date: Tue, 07 Jul 1998 09:36:03 -0600
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Message-ID: <6ntf3p$lnq$1@news-2.news.gte.net>

Hazem Nassef wrote:
> 
> Hello everybody
> 
>  I was trying to compile PVM on Linux but somehow
> it cann't compile because of something called fd_set.
> There is a file under src named hoster.c that defines
> a variable rdfs of type fd_set and it can't find the include file.
> Any help with that?

The offending line is

struct fd_set rfds;

Change it to:

fd_set rfds;

(i.e. delete the 'struct' portion)

PVM will now compile and work under Linux.


Kirk Haines

