diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-01-13 19:22:29 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-01-13 19:22:29 +0000 |
commit | 434165295a4c512c64f12f0e4b6f84d352e4159f (patch) | |
tree | 4f6761938a66e16a2292f7cd2b7b1229a137c2f3 /src/backend | |
parent | 06356b897829bd2686a70ddb62b0c7b774c7113e (diff) | |
download | postgresql-434165295a4c512c64f12f0e4b6f84d352e4159f.tar.gz postgresql-434165295a4c512c64f12f0e4b6f84d352e4159f.zip |
isinf() doesn't exist under i386_solaris, so code it such that
it is (!isnan() && !finite()) instead
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/port/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/port/Makefile.in b/src/backend/port/Makefile.in index 149f1ed34df..3dd6b63e3de 100644 --- a/src/backend/port/Makefile.in +++ b/src/backend/port/Makefile.in @@ -13,7 +13,7 @@ # be converted to Method 2. # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.13 1998/01/13 15:31:09 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.14 1998/01/13 19:21:40 scrappy Exp $ # #------------------------------------------------------------------------- @@ -25,7 +25,7 @@ INCLUDE_OPT = -I.. CFLAGS+= ${INCLUDE_OPT} OBJS = dynloader.o @INET_ATON@ @STRERROR@ @MISSING_RANDOM@ @SRANDOM@ -OBJS+= @GETHOSTNAME@ @GETRUSAGE@ @STRCASECMP@ @STRDUP@ @TAS@ +OBJS+= @GETHOSTNAME@ @GETRUSAGE@ @STRCASECMP@ @STRDUP@ @TAS@ @ISINF@ all: SUBSYS.o |