> Has anyone successfully built DQS 2.1.5 with the PSC AFS extensions?
> Everything compiles sweetly *except* token.c, as below. Since the same code
> compiles fine on Ultrix 4.3a / AFS 3.2, am I to assume a bug in the AFS 3.3
> headers?
We are using the version of AFS ported by the CMU CS department with DQS 2.1.X.
The original extensions to DQS for AFS capability were done here. The change
should be quite minor.
Change the definition lines in token.c to get the Alpha in the correct place:
#if defined(CRAY) || defined(__STDC__) || defined(_IBMR2) || defined(vax) || def
ined(__mips) || defined(__alpha)
#define _VICEIOCTL(id) ((unsigned int) _IOW('V', id, struct ViceIoctl))
#else /*CRAY || __STDC__*/
#define _VICEIOCTL(id) ((unsigned int) _IOW(V, id, struct ViceIoctl))
#endif /*CRAY || __STDC__*/
Rob Pennington
Pittsburgh Supercomputing Center