diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-04-12 02:58:22 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-04-12 02:58:22 +0000 |
commit | 07e3fb08bea02b5fa84b8a55865c2f5c859acc0d (patch) | |
tree | b54d2f62ceca9e4eb4bb60e24607fe55954a5f9a | |
parent | 5da68b98cbd7b8ed55a8260d591143b82565d7be (diff) | |
download | postgresql-07e3fb08bea02b5fa84b8a55865c2f5c859acc0d.tar.gz postgresql-07e3fb08bea02b5fa84b8a55865c2f5c859acc0d.zip |
More work in the right direction on linux/alpha
From: Ryan Kirkpatrick <rkirkpat@nag.cs.colorado.edu>
-rw-r--r-- | src/backend/utils/adt/float.c | 4 | ||||
-rw-r--r-- | src/include/utils/memutils.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/utils/adt/float.c b/src/backend/utils/adt/float.c index 532e0dc30b9..6f27e14c398 100644 --- a/src/backend/utils/adt/float.c +++ b/src/backend/utils/adt/float.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/float.c,v 1.29 1998/02/26 04:37:07 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/float.c,v 1.30 1998/04/12 02:58:17 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -132,7 +132,7 @@ extern int isinf(double x); * until the distributions are updated. * --djm 12/16/96 */ -#if defined(linuxalpha) && !defined(UNSAFE_FLOATS) +#if ( defined(linux) && defined(alpha) ) && !defined(UNSAFE_FLOATS) #define UNSAFE_FLOATS #endif diff --git a/src/include/utils/memutils.h b/src/include/utils/memutils.h index fdfde10ffe8..aaec736914e 100644 --- a/src/include/utils/memutils.h +++ b/src/include/utils/memutils.h @@ -15,7 +15,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: memutils.h,v 1.14 1998/02/26 04:44:08 momjian Exp $ + * $Id: memutils.h,v 1.15 1998/04/12 02:58:22 scrappy Exp $ * * NOTES * some of the information in this file will be moved to @@ -67,7 +67,7 @@ s...) */ #if defined(sun) && ! defined(sparc) #define LONGALIGN(LEN) SHORTALIGN(LEN) -#elif defined (alpha) || defined(linuxalpha) +#elif defined (alpha) /* * even though "long alignment" should really be on 8-byte boundaries for |