William Atkinson wrote:
> Yes, it is definitely a conflict in header files. I talked with the vms guy
> here and it turns out that we are comitted to keeping them so that we can
> generate product versions that look like they came from older vms releases.
>
> I followed Craig Berry's suggestion and indeed found different stat.h files.
>
> How would I control where the include files are grabbed in the descrip.mms
> file?
>
> Thanks in advance.
>
> Chip
>From the appearance of this portion of the descrip.mms file it would
appear that the logical names SYS, DECC$Library_Include,
DECC$System_Include, and perhaps Sys$Library would help:
.first
@ If F$TrnLnm("Sys").eqs."" .and.
F$TrnLnm("DECC$System_Include").nes.""
Then Define/NoLog SYS DECC$System_Include
.ifdef __AXP__
@ Set Process/Privilege=(NoSYSNAM)
@ If F$TrnLnm("Sys").eqs."" .and.
F$TrnLnm("DECC$System_Include").eqs.""
Then Define/NoLog SYS Sys$Library
.else
@ If F$TrnLnm("Sys").eqs."" .and.
F$TrnLnm("DECC$System_Include").eqs.""
Then Define/NoLog SYS DECC$Library_Include
.endif
Peter Prymmer