Adrian Aichner <aichner(a)ecf.teradyne.com> writes:
On Windows NT, nt/config.h no longer defines CLASH_DETECTION, since
NT
does not support symbolic links, which are the bread and butter of
CLASH_DETECTION today.
However, src\filelock.c causes the build to fail because of this:
#ifndef CLASH_DETECTION
#error CLASH_DETECTION is not defined??
#endif
How about this patch?
1998-12-11 Adrian Aichner <aichner(a)ecf.teradyne.com>
* filelock.c: It is not an error under native WINDOWSNT for
CLASH_DETECTION to be undefined, since NT does not support
symbolic links.
If CLASH_DETECTION is undefined that this file should not be compiled
[this is what this message is all about].
So I think this should be fixed elsewhere.
Jan