wasm-demo/demo/ermis-f/python_m/cur/0750

24 lines
650 B
Plaintext

From: jon at rdt.monash.edu.au (Jonathan Giddy)
Date: 16 Apr 1999 06:26:41 GMT
Subject: Change for compiling 1.5.2 on Windows NT Alpha
References: <Y5yR2.96$y3.15860@typhoon.austin.rr.com>
Message-ID: <7f6l71$20e$1@towncrier.cc.monash.edu.au>
X-UID: 750
"Scott C" <scothrell at austin.rr.com> writes:
>There needs to be the following change in file fpectlmodule.c, line 163:
>Line currently reads: #elif defined(__alpha)
>line should read: #elif defined(__alpha) && !defined(_MSC_VER)
Or to follow the comments more obviously, change it to
#elif defined(__alpha) && defined(__osf__)
Jon.