commit | 2fef93a857c50ec6df129e20055ecd3d4c3edd77 | [log] [tgz] |
---|---|---|
author | Francois Gouget <fgouget@codeweavers.com> | Thu Jun 26 15:59:05 2008 +0200 |
committer | Alexandre Julliard <julliard@winehq.org> | Thu Jun 26 21:08:28 2008 +0200 |
tree | f02f2b3b181453c5a457e34ba4d4918afff1fe2f | |
parent | 86bd0461a543fec95335604f03310a7ad8654e88 [diff] [blame] |
configure: Fix the isinf() detection. Fixes compilation on Solaris.
diff --git a/configure b/configure index 40365dc..2f13aa8 100755 --- a/configure +++ b/configure
@@ -21374,7 +21374,7 @@ int main () { -float f = 0.0; isinf(f) +float f = 0.0; int i=isinf(f) ; return 0; }