From 40e0fa4c1ef0e9715ffb366d6c2a829948b8ff64 Mon Sep 17 00:00:00 2001 From: akr Date: Sun, 1 Jan 2006 06:34:48 +0000 Subject: [PATCH] * missing.h (isnan): avoid macro expantion "extern int isinf(double);" to "extern int ((sizeof(double)==sizeof(float))?_Isinff(double):_Isinf(double));" on HP-UX. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9783 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 7 +++++++ missing.h | 10 ++++++---- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2f8109c840..c787135999 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Sun Jan 1 15:28:46 2006 Tanaka Akira + + * missing.h (isnan): avoid macro expantion + "extern int isinf(double);" to + "extern int ((sizeof(double)==sizeof(float))?_Isinff(double):_Isinf(double));" on + HP-UX. + Sun Jan 1 14:42:54 2006 Hirokazu Yamamoto * win32/win32.c (rb_w32_seekdir): should not segfault even if passed diff --git a/missing.h b/missing.h index 5b4dcc2747..1b9ca2e20b 100644 --- a/missing.h +++ b/missing.h @@ -62,11 +62,13 @@ extern double erf(double); extern double erfc(double); #endif -#ifndef HAVE_ISINF -# if defined(HAVE_FINITE) && defined(HAVE_ISNAN) -# define isinf(x) (!finite(x) && !isnan(x)) -# else +#ifndef isinf +# ifndef HAVE_ISINF +# if defined(HAVE_FINITE) && defined(HAVE_ISNAN) +# define isinf(x) (!finite(x) && !isnan(x)) +# else extern int isinf(double); +# endif # endif #endif