diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2007-10-31 00:05:53 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2007-10-31 00:05:53 (GMT) |
commit | 9484ae1c4377c8645247fd5111fa156755e7ea22 (patch) | |
tree | 725411d7c5a0246b447ff0f328f6cdfd86acf997 /generic/tkTrig.c | |
parent | 267146b4985c6b6dfedbfa2373ec57a92b6307e5 (diff) | |
download | tk-9484ae1c4377c8645247fd5111fa156755e7ea22.zip tk-9484ae1c4377c8645247fd5111fa156755e7ea22.tar.gz tk-9484ae1c4377c8645247fd5111fa156755e7ea22.tar.bz2 |
Use -fp:strict with msvc8 as -fp:precise fails on amd64 builds. Fix
the two places in Tk that generate errors with msvc8 when using this
flag.
Diffstat (limited to 'generic/tkTrig.c')
-rw-r--r-- | generic/tkTrig.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/generic/tkTrig.c b/generic/tkTrig.c index 9c8d077..f9bdfe5 100644 --- a/generic/tkTrig.c +++ b/generic/tkTrig.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkTrig.c,v 1.8 2007/09/07 00:34:54 dgp Exp $ + * RCS: @(#) $Id: tkTrig.c,v 1.9 2007/10/31 00:05:53 patthoyts Exp $ */ #include <stdio.h> @@ -1599,7 +1599,11 @@ TkGetMiterPoints( double deltaX, deltaY; /* X and y offsets cooresponding to dist * (fudge factors for bounding box). */ double p1x, p1y, p2x, p2y, p3x, p3y; - static double elevenDegrees = (11.0*2.0*PI)/360.0; +#ifndef _MSC_VER + static const double elevenDegrees = (11.0*2.0*PI)/360.0; +#else /* msvc8 with -fp:strict requires it this way */ + static const double elevenDegrees = 0.19198621771937624; +#endif /* * Round the coordinates to integers to mimic what happens when the line |