diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1998-02-20 15:50:23 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1998-02-20 15:50:23 (GMT) |
commit | 64da169f43a3338d90a24e8a1b6042e7cfa75d65 (patch) | |
tree | 9acc62c525877420281255d75574e9eabb40c974 /Mac | |
parent | dee6d02736b59a29c1e267fb3cd34e8ceedf338e (diff) | |
download | cpython-64da169f43a3338d90a24e8a1b6042e7cfa75d65.zip cpython-64da169f43a3338d90a24e8a1b6042e7cfa75d65.tar.gz cpython-64da169f43a3338d90a24e8a1b6042e7cfa75d65.tar.bz2 |
Added CHECK_IMPORT_CASE
Added HAVE_HYPOT, except for 68k (where you get 10-byte-float hypot,
sigh...)
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Include/config.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Mac/Include/config.h b/Mac/Include/config.h index 454b9aa..fd10a04 100644 --- a/Mac/Include/config.h +++ b/Mac/Include/config.h @@ -48,8 +48,16 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #ifdef __MWERKS__ #define HAVE_STRFTIME +#ifndef __MC68K__ +/* 68K hypot definition (and implementation) are unuseable +** because they use 10-byte floats. +*/ +#define HAVE_HYPOT +#endif #endif +#define CHECK_IMPORT_CASE + #ifdef USE_GUSI /* GUSI provides a lot of unixisms */ #define HAVE_SELECT |