diff options
author | Karl Schultz <kschultz@freedesktop.org> | 2001-12-20 18:59:39 +0000 |
---|---|---|
committer | Karl Schultz <kschultz@freedesktop.org> | 2001-12-20 18:59:39 +0000 |
commit | 2391f4cec627def55119738413592d8a1fbfc50f (patch) | |
tree | 958227665a1a05d71442a2dcf7c347d750b3d185 /src/mesa | |
parent | fc00cbe8d1ac48faf345e41a13757a8a1e2e5ebe (diff) |
Define finite as _finite for Windows.
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/glheader.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/glheader.h b/src/mesa/main/glheader.h index ed3f76ba6b..e530cb62a0 100644 --- a/src/mesa/main/glheader.h +++ b/src/mesa/main/glheader.h @@ -1,4 +1,4 @@ -/* $Id: glheader.h,v 1.23 2001/10/17 13:31:07 brianp Exp $ */ +/* $Id: glheader.h,v 1.24 2001/12/20 18:59:39 kschultz Exp $ */ /* * Mesa 3-D graphics library @@ -76,6 +76,7 @@ #if defined(_WIN32) && !defined(__WIN32__) && !defined(__CYGWIN__) # define __WIN32__ +# define finite _finite #endif #if !defined(OPENSTEP) && (defined(__WIN32__) && !defined(__CYGWIN__)) |