Newsgroups: comp.parallel.pvm
From: eddemain@neumann.uwaterloo.ca (Erik Demaine)
Subject: Re: PVM PovRay
Organization: University of Waterloo
Date: Tue, 14 Nov 1995 19:16:29 GMT
Message-ID: <DI1s7I.K7p@undergrad.math.uwaterloo.ca>

Ian P Mccullough (ipm+@andrew.cmu.edu) wrote:
: Well I admit that I shouldnt have been so quick to post but now I have
: narrowed down the problem to the two undefined macro-like things. 
: PATH_MAX and SEEK_SET.  Both of these appear to be in the PVM portion of
: the code.  I hope this helps any potential assisters in assisting m
: problem....  I guess I could just plug in random values but that might
: be bad.

On every system I know of, SEEK_SET is 0.  Put

#define SEEK_SET 0

in the front of pvm.c.  On most systems, PATH_MAX is 255 (this is POSIX
standard).  If you're worried, give 1024.  PATH_MAX represents the largest
filename size when directories are included.

Erik
--
Erik Demaine                 \/  e-mail: eddemain@neumann.uwaterloo.ca
Dept. of Computer Science    /\  URL   : http://barrow.uwaterloo.ca/~eddemain/
University of Waterloo       \/  Most jugglers do poorly while drunk, especially
Waterloo, ON Canada N2L 3G1  /\  in a large wavelength gravity field.

