Path: utzoo!attcan!uunet!mcvax!enea!tut!santra!tml
From: tml@santra.HUT.FI (Tor Lillqvist)
Newsgroups: comp.sources.games.bugs
Subject: xconq5 on hp9000s800
Message-ID: <14361@santra.UUCP>
Date: 7 Jul 88 21:22:04 GMT
Sender: tml@santra.UUCP
Reply-To: tml@hemuli.UUCP
Organization: Technical Research Centre of Finland
Lines: 12

I have compiled and run xconq5, recently posted to comp.sources.games,
on our HP9000/840.  Only one small fix was necessary: In the file
period.c, the use of the macros OFFSET and VOFFSET in function call
arguments must be changed to assignments to a dummy variable like
this:

Change all the
	ff(..., OFFSET(xx, yy))
to
	ff(..., i = OFFSET(xx, yy))

Unless this change is made, per2c won't work.