mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Correct #if statement so it compiles on Solaris. Thanks Keith Parks.
This commit is contained in:
parent
87b48ff032
commit
1e39d14ff3
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/utils/adt/float.c,v 1.4 1996/08/27 07:32:33 scrappy Exp $
|
* $Header: /cvsroot/pgsql/src/backend/utils/adt/float.c,v 1.5 1996/10/26 05:03:24 bryanh Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -1275,9 +1275,7 @@ static int isinf(x)
|
|||||||
}
|
}
|
||||||
#endif /* PORTNAME_alpha */
|
#endif /* PORTNAME_alpha */
|
||||||
|
|
||||||
#if defined(sparc_solaris) ||
|
#if defined(sparc_solaris) || defined(i386_solaris) || defined(PORTNAME_svr4)
|
||||||
defined(i386_solaris) ||
|
|
||||||
defined(PORTNAME_svr4)
|
|
||||||
#include <ieeefp.h>
|
#include <ieeefp.h>
|
||||||
static int
|
static int
|
||||||
isinf(d)
|
isinf(d)
|
||||||
|
Loading…
Reference in New Issue
Block a user